summaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/main.js59
-rw-r--r--app/window-controller.js6
2 files changed, 36 insertions, 29 deletions
diff --git a/app/main.js b/app/main.js
index 6199b0517c..e52ff07df7 100644
--- a/app/main.js
+++ b/app/main.js
@@ -3,7 +3,7 @@ import path from 'path';
import { execFile } from 'child_process';
import mkdirp from 'mkdirp';
import uuid from 'uuid';
-import { app, BrowserWindow, ipcMain, Tray, Menu, nativeImage } from 'electron';
+import { app, screen, BrowserWindow, ipcMain, Tray, Menu, nativeImage } from 'electron';
import TrayIconController from './tray-icon-controller';
import WindowController from './window-controller';
import { RpcAddressFile } from './lib/rpc-address-file';
@@ -101,8 +101,6 @@ const ApplicationMain = {
const windowController = new WindowController(window, tray);
const trayIconController = new TrayIconController(tray, 'unsecured');
- tray.on('click', () => windowController.toggle());
-
this._registerIpcListeners();
this._setAppMenu();
this._addContextMenu(window);
@@ -117,10 +115,19 @@ const ApplicationMain = {
window.openDevTools({ mode: 'detach' });
}
- if (this._isMenubarApp()) {
- this._installMenubarAppEventHandlers(windowController);
- } else {
- windowController.show();
+ switch (process.platform) {
+ case 'win32':
+ this._installWindowsMenubarAppWindowHandlers(tray, windowController);
+ break;
+ case 'darwin':
+ this._installMacOsMenubarAppWindowHandlers(tray, windowController);
+ break;
+ default:
+ tray.on('click', () => {
+ windowController.toggle();
+ });
+ windowController.show();
+ break;
}
window.loadFile('build/index.html');
@@ -307,6 +314,7 @@ const ApplicationMain = {
return new BrowserWindow({
...options,
transparent: true,
+ skipTaskbar: true,
});
default:
@@ -387,30 +395,28 @@ const ApplicationMain = {
return tray;
},
- _isMenubarApp() {
- const platform = process.platform;
-
- return platform === 'windows' || platform === 'darwin';
- },
-
- _installMenubarAppEventHandlers(windowController: WindowController) {
- switch (process.platform) {
- case 'windows':
- windowController.window.on('blur', () => windowController.hide());
- break;
-
- case 'darwin':
- this._installMacOsMenubarAppWindowHandlers(windowController);
- break;
+ _installWindowsMenubarAppWindowHandlers(tray: Tray, windowController: WindowController) {
+ tray.on('click', () => windowController.toggle());
+ tray.on('right-click', () => windowController.hide());
- default:
- break;
- }
+ windowController.window.on('blur', () => {
+ // Detect if blur happened when user had a cursor above the tray icon.
+ const trayBounds = tray.getBounds();
+ const cursorPos = screen.getCursorScreenPoint();
+ const isCursorInside =
+ cursorPos.x >= trayBounds.x &&
+ cursorPos.y >= trayBounds.y &&
+ cursorPos.x <= trayBounds.x + trayBounds.width &&
+ cursorPos.y <= trayBounds.y + trayBounds.height;
+ if (!isCursorInside) {
+ windowController.hide();
+ }
+ });
},
// setup NSEvent monitor to fix inconsistent window.blur on macOS
// see https://github.com/electron/electron/issues/8689
- _installMacOsMenubarAppWindowHandlers(windowController: WindowController) {
+ _installMacOsMenubarAppWindowHandlers(tray: Tray, windowController: WindowController) {
// $FlowFixMe: this module is only available on macOS
const { NSEventMonitor, NSEventMask } = require('nseventmonitor');
const macEventMonitor = new NSEventMonitor();
@@ -419,6 +425,7 @@ const ApplicationMain = {
window.on('show', () => macEventMonitor.start(eventMask, () => windowController.hide()));
window.on('hide', () => macEventMonitor.stop());
+ tray.on('click', () => windowController.toggle());
},
};
diff --git a/app/window-controller.js b/app/window-controller.js
index 849da007cf..b27d04d621 100644
--- a/app/window-controller.js
+++ b/app/window-controller.js
@@ -1,6 +1,6 @@
// @flow
-import electron, { screen } from 'electron';
+import { screen } from 'electron';
import type { BrowserWindow, Tray, Display } from 'electron';
export default class WindowController {
@@ -62,7 +62,7 @@ export default class WindowController {
case 'win32': {
// taskbar occupies some part of the screen excluded from work area
- const primaryDisplay = electron.screen.getPrimaryDisplay();
+ const primaryDisplay = screen.getPrimaryDisplay();
const displaySize = primaryDisplay.size;
const workArea = primaryDisplay.workArea;
@@ -84,7 +84,7 @@ export default class WindowController {
const windowBounds = this._window.getBounds();
const trayBounds = this._tray.getBounds();
- const primaryDisplay = electron.screen.getPrimaryDisplay();
+ const primaryDisplay = screen.getPrimaryDisplay();
const workArea = primaryDisplay.workArea;
const placement = this._getTrayPlacement();
const maxX = workArea.x + workArea.width - windowBounds.width;