mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
119 lines
3.3 KiB
JavaScript
119 lines
3.3 KiB
JavaScript
/* === INJECTION MARKER === */
|
|
|
|
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 TarasokUA
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
// adds: tray support (inc. context menu with settings), window toggle hotkey
|
|
|
|
// DO NOT REMOVE THE MARKERS ABOVE.
|
|
// DO NOT CHANGE THE NAME OF THE 'enhancements()' FUNCTION.
|
|
|
|
let tray;
|
|
|
|
function enhancements() {
|
|
const { Tray, Menu, nativeImage } = require('electron'),
|
|
path = require('path'),
|
|
store = require(path.join(__dirname, '..', 'store.js'))({
|
|
config: 'user-preferences',
|
|
defaults: {
|
|
openhidden: false,
|
|
maximized: false,
|
|
tray: false,
|
|
theme: false,
|
|
},
|
|
});
|
|
tray = new Tray(
|
|
new nativeImage.createFromPath(path.join(__dirname, 'logo.png')).resize({
|
|
width: 16,
|
|
height: 16,
|
|
})
|
|
);
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
{
|
|
id: 'startup',
|
|
label: 'run on startup',
|
|
type: 'checkbox',
|
|
checked: electron_1.app.getLoginItemSettings().openAtLogin,
|
|
click: () => {
|
|
contextMenu.getMenuItemById('openhidden').checked
|
|
? electron_1.app.setLoginItemSettings({ openAtLogin: true })
|
|
: electron_1.app.setLoginItemSettings({ openAtLogin: false });
|
|
// tray.setContextMenu(contextMenu);
|
|
},
|
|
},
|
|
{
|
|
id: 'openhidden',
|
|
label: 'hide on open',
|
|
type: 'checkbox',
|
|
checked: store.openhidden,
|
|
click: () => {
|
|
store.openhidden = contextMenu.getMenuItemById('openhidden').checked;
|
|
// tray.setContextMenu(contextMenu);
|
|
},
|
|
},
|
|
{
|
|
id: 'maximized',
|
|
label: 'open maximised',
|
|
type: 'checkbox',
|
|
checked: store.maximized,
|
|
click: () => {
|
|
store.maximized = contextMenu.getMenuItemById('maximized').checked;
|
|
// tray.setContextMenu(contextMenu);
|
|
},
|
|
},
|
|
{
|
|
id: 'tray',
|
|
label: 'close to tray',
|
|
type: 'checkbox',
|
|
checked: store.tray,
|
|
click: () => {
|
|
store.tray = contextMenu.getMenuItemById('tray').checked;
|
|
// tray.setContextMenu(contextMenu);
|
|
},
|
|
},
|
|
{
|
|
id: 'theme',
|
|
label: 'load theme.css',
|
|
type: 'checkbox',
|
|
checked: store.theme,
|
|
click: () => {
|
|
store.theme = contextMenu.getMenuItemById('theme').checked;
|
|
electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload());
|
|
// tray.setContextMenu(contextMenu);
|
|
},
|
|
},
|
|
{
|
|
type: 'separator',
|
|
},
|
|
{
|
|
label: '(x) quit',
|
|
role: 'quit',
|
|
},
|
|
]);
|
|
tray.setContextMenu(contextMenu);
|
|
tray.setToolTip('notion enhancements');
|
|
|
|
function showWindows(windows) {
|
|
if (store.maximized)
|
|
windows.forEach((win) => [win.maximize(), win.focus()]);
|
|
else windows.forEach((win) => win.show());
|
|
}
|
|
tray.on('click', () => {
|
|
const windows = electron_1.BrowserWindow.getAllWindows();
|
|
if (windows.some((win) => win.isVisible()))
|
|
windows.forEach((win) => win.hide());
|
|
else showWindows(windows);
|
|
});
|
|
// hotkey will be set by python script
|
|
electron_1.globalShortcut.register('☃☃☃hotkey☃☃☃', () => {
|
|
const windows = electron_1.BrowserWindow.getAllWindows();
|
|
if (windows.some((win) => win.isFocused() && win.isVisible()))
|
|
windows.forEach((win) => [win.blur(), win.hide()]);
|
|
else showWindows(windows);
|
|
});
|
|
}
|