From 2732d00825f92ae10e0cfd2c28e5ef44293acd11 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sat, 4 Dec 2021 23:24:21 +1100 Subject: [PATCH] allow menu to run in background via the tray mod --- insert/api | 2 +- insert/repo | 2 +- insert/worker.cjs | 31 +++++++++++++++++++------------ 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/insert/api b/insert/api index 31835e9..f6ba894 160000 --- a/insert/api +++ b/insert/api @@ -1 +1 @@ -Subproject commit 31835e966e93b686c24b5b6c76ea72a87ae987e1 +Subproject commit f6ba894c4ffe737aafd487013a46a589ee09fbac diff --git a/insert/repo b/insert/repo index 4d414da..6ab3013 160000 --- a/insert/repo +++ b/insert/repo @@ -1 +1 @@ -Subproject commit 4d414da3fa577d1581ae0f5cd2f7cf2774589027 +Subproject commit 6ab30139be95bca0d3cffdb8d5127da36624bab4 diff --git a/insert/worker.cjs b/insert/worker.cjs index 1e38ed0..03c8657 100644 --- a/insert/worker.cjs +++ b/insert/worker.cjs @@ -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'),