mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
allow menu to run in background via the tray mod
This commit is contained in:
parent
d3b4461b49
commit
2732d00825
@ -1 +1 @@
|
|||||||
Subproject commit 31835e966e93b686c24b5b6c76ea72a87ae987e1
|
Subproject commit f6ba894c4ffe737aafd487013a46a589ee09fbac
|
@ -1 +1 @@
|
|||||||
Subproject commit 4d414da3fa577d1581ae0f5cd2f7cf2774589027
|
Subproject commit 6ab30139be95bca0d3cffdb8d5127da36624bab4
|
@ -7,21 +7,17 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
module.exports = {};
|
module.exports = {};
|
||||||
|
|
||||||
const sendMessage = (id, data) => {
|
const onMessage = (id, callback) => {
|
||||||
const { ipcMain } = require('electron');
|
const { ipcMain } = require('electron');
|
||||||
ipcMain.send(`notion-enhancer:${id}`, data);
|
ipcMain.on(`notion-enhancer:${id}`, callback);
|
||||||
},
|
};
|
||||||
onMessage = (id, callback) => {
|
|
||||||
const { ipcMain } = require('electron');
|
|
||||||
ipcMain.on(`notion-enhancer:${id}`, callback);
|
|
||||||
};
|
|
||||||
|
|
||||||
let enhancerMenu;
|
let enhancerMenu;
|
||||||
module.exports.focusMenu = async () => {
|
module.exports.focusMenu = async () => {
|
||||||
if (enhancerMenu) return enhancerMenu.show();
|
if (enhancerMenu) return enhancerMenu.show();
|
||||||
|
|
||||||
const { fs } = require('notion-enhancer/api/index.cjs'),
|
const { fs } = require('notion-enhancer/api/index.cjs'),
|
||||||
{ session, BrowserWindow } = require('electron'),
|
{ app, session, BrowserWindow } = require('electron'),
|
||||||
windowState = require('electron-window-state')({
|
windowState = require('electron-window-state')({
|
||||||
file: 'enhancer-menu-window-state.json',
|
file: 'enhancer-menu-window-state.json',
|
||||||
defaultWidth: 1250,
|
defaultWidth: 1250,
|
||||||
@ -48,13 +44,24 @@ module.exports.focusMenu = async () => {
|
|||||||
enhancerMenu.loadURL(fs.localPath('repo/menu/menu.html'));
|
enhancerMenu.loadURL(fs.localPath('repo/menu/menu.html'));
|
||||||
windowState.manage(enhancerMenu);
|
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.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 = () => {
|
module.exports.focusNotion = () => {
|
||||||
const { env } = require('notion-enhancer/api/index.cjs'),
|
const { env } = require('notion-enhancer/api/index.cjs'),
|
||||||
{ BrowserWindow } = require('electron'),
|
{ BrowserWindow } = require('electron'),
|
||||||
|
Loading…
Reference in New Issue
Block a user