1.2.0 • Published 2 years ago

@mayahq/panels v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

electron-panel-window

This fork of electron-panel-window. It works on macOS big sur (tested).

There are few caveats.

1. titleBarStyle should have the value 'customButtonsOnHover'

This will show two buttons on top left (to close and maximize the window). You can hide them by setting:

  • closable: false
  • maximizable: false

Beware that you may need some additional logic if you actually need to close the window, as win.close() won't work at this point.

2. setVisibleOnAllWorkspaces(true) cannot be used on these windows

Apparently it causes everything to crash.

3. Crash on quit

There are usually some electron crash when quitting an app with a panel window. Usually they can be fixed by: 1. hiding the panel window 2. make another window as key (use makeKeyWindow on another window) 3. transform the panel in a normal window (use makeWindow) 4. close the window 5. quit the app

We have noticed less/no crashes if steps 2-5 are execture after a setTimout like:

win.hide()
setTimeout(()=>{
    electronPanelWindow.makeKeyWindow(otherWin)
    electronPanelWindow.makeWindow(win)
    win.close()
    app.quit()
})

Other

Removed win and linux support as it was empty in the first place.

You may want to include the package dynamically:

const electronPanelWindow = process.platform === 'darwin' ? require('electron-panel-window') : undefined

Issues

Feel free to open an issue, and report other "workarounds" to keep this working.

Methods

Install

npm install @akiflow/electron-panel-window

require

const electronPanelWindow = process.platform === 'darwin' ? require('@akiflow/electron-panel-window') : undefined
  1. makeKeyWindow(win) focus the window without activating the application
  2. makePanel(win) transform the given window in a panel
  3. makeWindow(win) transform the given panel in a window (useful before quitting)

OLD README of electron-panel-window

Something may be useful, something may be outdated

Enables creating a browser window in Electron that behaves like a Panel. Panels are typically used for auxillary windows and do not activate the application – as such they can appear ontop of other apps in the same way as Spotlight or 1Password, for example.

Usage

Use PanelWindow as you would BrowserWindow. All of the methods exposed in this module must be used on the main process. Using the methods in a renderer process will result in your app crashing.

import { PanelWindow } from 'electron-panel-window';

const win = new PanelWindow({
  width: 800,
  height: 600,
  show: false
})

// the window will show without activating the application
win.show();

You can also access the utility methods directly:

import { remote } from 'electron';
import { makePanel, makeKeyWindow } from 'electron-panel-window';

const currentWindow = remote.getCurrentWindow();

// convert the window to an NSPanel
makePanel(currentWindow);

// focus the window without activating the application
makeKeyWindow(currentWindow);

Development

To compile the extension for the first time, run

$ yarn
$ yarn configure
$ yarn build

All subsequent builds only need yarn build. Tests run in Spectron:

$ yarn test

Contributing

This project is maintained by Abstract. We are very willing to accept contributions, first please ensure there is a relavant issue in the tracker and an approach has been discussed before beginning to write code – this makes it more likely we will be able to accept your contribution and ensure nobody's time (especially yours!) is wasted.

Details

FileContents
NativeExtension.ccRepresents the top level of the module. C++ constructs that are exposed to javascript are exported here
functions.ccThe meat of the extension
index.jsThe main entry point for the node dependency
binding.gypDescribes the node native extension to the build system (node-gyp). If you add source files to the project, you should also add them to the binding file.

License

This project is under MIT. See LICENSE

1.2.0

2 years ago

1.1.0

3 years ago

1.0.0

3 years ago