tray support improvements for mac/linux (untested)

This commit is contained in:
dragonwocky 2020-07-08 22:58:52 +10:00
parent a5afb72f57
commit 96571f2b31
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D

View File

@ -15,7 +15,8 @@
let tray; let tray;
function enhancements() { function enhancements() {
const { Tray, Menu, nativeImage } = require('electron'), const { Tray, Menu, nativeImage, app } = require('electron'),
isMac = process.platform === 'darwin',
path = require('path'), path = require('path'),
store = require(path.join(__dirname, '..', 'store.js'))({ store = require(path.join(__dirname, '..', 'store.js'))({
config: 'user-preferences', config: 'user-preferences',
@ -42,7 +43,7 @@ function enhancements() {
contextMenu.getMenuItemById('openhidden').checked contextMenu.getMenuItemById('openhidden').checked
? electron_1.app.setLoginItemSettings({ openAtLogin: true }) ? electron_1.app.setLoginItemSettings({ openAtLogin: true })
: electron_1.app.setLoginItemSettings({ openAtLogin: false }); : electron_1.app.setLoginItemSettings({ openAtLogin: false });
// tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -52,7 +53,7 @@ function enhancements() {
checked: store.openhidden, checked: store.openhidden,
click: () => { click: () => {
store.openhidden = contextMenu.getMenuItemById('openhidden').checked; store.openhidden = contextMenu.getMenuItemById('openhidden').checked;
// tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -62,7 +63,7 @@ function enhancements() {
checked: store.maximized, checked: store.maximized,
click: () => { click: () => {
store.maximized = contextMenu.getMenuItemById('maximized').checked; store.maximized = contextMenu.getMenuItemById('maximized').checked;
// tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -72,7 +73,7 @@ function enhancements() {
checked: store.tray, checked: store.tray,
click: () => { click: () => {
store.tray = contextMenu.getMenuItemById('tray').checked; store.tray = contextMenu.getMenuItemById('tray').checked;
// tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -83,7 +84,7 @@ function enhancements() {
click: () => { click: () => {
store.theme = contextMenu.getMenuItemById('theme').checked; store.theme = contextMenu.getMenuItemById('theme').checked;
electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload()); electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload());
// tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -97,22 +98,28 @@ function enhancements() {
tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
tray.setToolTip('notion enhancements'); tray.setToolTip('notion enhancements');
function showWindows(windows) { function showWindows() {
if (store.maximized) const windows = electron_1.BrowserWindow.getAllWindows();
windows.forEach((win) => [win.maximize(), win.focus()]); if (isMac) app.show();
if (store.maximized) windows.forEach((win) => [win.maximize()]);
else windows.forEach((win) => win.show()); else windows.forEach((win) => win.show());
app.focus({ steal: true });
}
function hideWindows() {
const windows = electron_1.BrowserWindow.getAllWindows();
windows.forEach((win) => [win.isFocused() && win.blur(), win.hide()]);
if (isMac) app.hide();
} }
tray.on('click', () => { tray.on('click', () => {
const windows = electron_1.BrowserWindow.getAllWindows(); const windows = electron_1.BrowserWindow.getAllWindows();
if (windows.some((win) => win.isVisible())) if (windows.some((win) => win.isVisible())) hideWindows();
windows.forEach((win) => win.hide()); else showWindows();
else showWindows(windows);
}); });
// hotkey will be set by python script // hotkey will be set by python script
electron_1.globalShortcut.register('☃☃☃hotkey☃☃☃', () => { electron_1.globalShortcut.register('CmdOrCtrl+Shift+A', () => {
const windows = electron_1.BrowserWindow.getAllWindows(); const windows = electron_1.BrowserWindow.getAllWindows();
if (windows.some((win) => win.isFocused() && win.isVisible())) if (windows.some((win) => win.isFocused() && win.isVisible()))
windows.forEach((win) => [win.blur(), win.hide()]); hideWindows();
else showWindows(windows); else showWindows();
}); });
} }