/* * notion-enhancer * (c) 2020 dragonwocky * (c) 2020 TarasokUA * (https://dragonwocky.me/) under the MIT license */ let tray; module.exports = (defaults) => function (store, __exports) { const electron = require('electron'), path = require('path'), is_mac = process.platform === 'darwin', is_win = process.platform === 'win32', settings = store(defaults); electron.app.on('ready', () => { tray = new electron.Tray( is_win ? path.resolve(`${__dirname}/icons/windows.ico`) : new electron.nativeImage.createFromPath( path.resolve(`${__dirname}/icons/mac+linux.png`) ).resize({ width: 16, height: 16, }) ); const contextMenu = electron.Menu.buildFromTemplate([ { type: 'normal', label: 'Bug Report', click: () => { electron.shell.openExternal( 'https://github.com/dragonwocky/notion-enhancer/issues/new?labels=bug&template=bug-report.md' ); }, }, { type: 'normal', label: 'Feature Request', click: () => { electron.shell.openExternal( 'https://github.com/dragonwocky/notion-enhancer/issues/new?labels=enhancement&template=feature-request.md' ); }, }, { type: 'separator', }, { type: 'normal', label: 'Docs', click: () => { electron.shell.openExternal( 'https://github.com/dragonwocky/notion-enhancer/tree/js' ); }, }, { type: 'normal', label: 'Enhancements', // will open menu }, { type: 'separator', }, { label: 'Quit', role: 'quit', }, ]); tray.setContextMenu(contextMenu); tray.setToolTip('Notion'); function showWindows() { const windows = electron.BrowserWindow.getAllWindows(); if (is_mac) electron.app.show(); if (settings.maximized) windows.forEach((win) => [win.maximize()]); else windows.forEach((win) => win.show()); electron.app.focus({ steal: true }); } function hideWindows() { const windows = electron.BrowserWindow.getAllWindows(); windows.forEach((win) => [win.isFocused() && win.blur(), win.hide()]); if (is_mac) electron.app.hide(); } tray.on('click', () => { const windows = electron.BrowserWindow.getAllWindows(); if (windows.some((win) => win.isVisible())) hideWindows(); else showWindows(); }); electron.globalShortcut.register(settings.hotkey, () => { const windows = electron.BrowserWindow.getAllWindows(); if (windows.some((win) => win.isFocused() && win.isVisible())) hideWindows(); else showWindows(); }); }); };