allow menu to run in background via the tray mod

This commit is contained in:
dragonwocky 2021-12-04 23:24:21 +11:00
parent d3b4461b49
commit 2732d00825
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
3 changed files with 21 additions and 14 deletions

@ -1 +1 @@
Subproject commit 31835e966e93b686c24b5b6c76ea72a87ae987e1
Subproject commit f6ba894c4ffe737aafd487013a46a589ee09fbac

@ -1 +1 @@
Subproject commit 4d414da3fa577d1581ae0f5cd2f7cf2774589027
Subproject commit 6ab30139be95bca0d3cffdb8d5127da36624bab4

View File

@ -7,21 +7,17 @@
'use strict';
module.exports = {};
const sendMessage = (id, data) => {
const { ipcMain } = require('electron');
ipcMain.send(`notion-enhancer:${id}`, data);
},
onMessage = (id, callback) => {
const { ipcMain } = require('electron');
ipcMain.on(`notion-enhancer:${id}`, callback);
};
const onMessage = (id, callback) => {
const { ipcMain } = require('electron');
ipcMain.on(`notion-enhancer:${id}`, callback);
};
let enhancerMenu;
module.exports.focusMenu = async () => {
if (enhancerMenu) return enhancerMenu.show();
const { fs } = require('notion-enhancer/api/index.cjs'),
{ session, BrowserWindow } = require('electron'),
{ app, session, BrowserWindow } = require('electron'),
windowState = require('electron-window-state')({
file: 'enhancer-menu-window-state.json',
defaultWidth: 1250,
@ -48,13 +44,24 @@ module.exports.focusMenu = async () => {
enhancerMenu.loadURL(fs.localPath('repo/menu/menu.html'));
windowState.manage(enhancerMenu);
let appQuit = false;
app.once('before-quit', () => {
appQuit = true;
});
const trayID = 'f96f4a73-21af-4e3f-a68f-ab4976b020da',
runInBackground =
(await registry.enabled(trayID)) &&
(await (await registry.db(trayID)).get(['run_in_background']));
enhancerMenu.on('close', (e) => {
enhancerMenu = null;
const isLastWindow = BrowserWindow.getAllWindows().length === 1;
if (!appQuit && isLastWindow && runInBackground) {
enhancerMenu.hide();
e.preventDefault();
} else enhancerMenu = null;
});
};
module.exports.isMenuOpen = () => !!enhancerMenu;
module.exports.focusNotion = () => {
const { env } = require('notion-enhancer/api/index.cjs'),
{ BrowserWindow } = require('electron'),