de-async-ifying stuff = tray fixed!

This commit is contained in:
dragonwocky 2020-07-18 23:50:56 +10:00
parent 48fa62d75d
commit 0621a5710c
2 changed files with 75 additions and 71 deletions

View File

@ -23,7 +23,7 @@ module.exports = {
'https://camo.githubusercontent.com/5c5bca9e987d986b8cc7e51066f90c6f8a84af08/68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3733313634373938343332333931393933332f3733313732373235393239353032333132342f494d475f323137302e6a7067', 'https://camo.githubusercontent.com/5c5bca9e987d986b8cc7e51066f90c6f8a84af08/68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3733313634373938343332333931393933332f3733313732373235393239353032333132342f494d475f323137302e6a7067',
options: [], options: [],
hacks: { hacks: {
// 'main/main.js': require('./tray.js')(defaults), 'main/main.js': require('./tray.js')(defaults),
'renderer/preload.js': function (store) { 'renderer/preload.js': function (store) {
const data = store({ name: 'dragonwocky' }); const data = store({ name: 'dragonwocky' });
console.log(data.name); console.log(data.name);

View File

@ -6,76 +6,80 @@
*/ */
let tray; let tray;
const electron = require('electron'),
path = require('path'),
is_mac = process.platform === 'darwin',
is_win = process.platform === 'win32',
settings = {};
electron.app.on('ready', () => { module.exports = (defaults) =>
tray = new electron.Tray( function (store) {
is_win const electron = require('electron'),
? path.resolve(__dirname, 'windows.ico') path = require('path'),
: new electron.nativeImage.createFromPath( is_mac = process.platform === 'darwin',
path.resolve(__dirname, 'mac+linux.png') is_win = process.platform === 'win32',
).resize({ settings = store(defaults);
width: 16,
height: 16,
})
);
const contextMenu = electron.Menu.buildFromTemplate([ electron.app.on('ready', () => {
{ tray = new electron.Tray(
type: 'normal', is_win
label: 'Bug Report', ? path.normalize(`${__dirname}/windows.ico`)
}, : new electron.nativeImage.createFromPath(
{ path.normalize(`${__dirname}/mac+linux.png`)
type: 'normal', ).resize({
label: 'Feature Request', width: 16,
}, height: 16,
{ })
type: 'separator', );
},
{
type: 'normal',
label: 'Docs',
},
{
type: 'normal',
label: 'Enhancements',
},
{
type: 'separator',
},
{
label: 'Quit',
role: 'quit',
},
]);
tray.setContextMenu(contextMenu);
tray.setToolTip('Notion');
function showWindows() { const contextMenu = electron.Menu.buildFromTemplate([
const windows = electron.BrowserWindow.getAllWindows(); {
if (is_mac) electron.app.show(); type: 'normal',
if (settings.maximized) windows.forEach((win) => [win.maximize()]); label: 'Bug Report',
else windows.forEach((win) => win.show()); },
electron.app.focus({ steal: true }); {
} type: 'normal',
function hideWindows() { label: 'Feature Request',
const windows = electron.BrowserWindow.getAllWindows(); },
windows.forEach((win) => [win.isFocused() && win.blur(), win.hide()]); {
if (is_mac) electron.app.hide(); type: 'separator',
} },
tray.on('click', () => { {
const windows = electron.BrowserWindow.getAllWindows(); type: 'normal',
if (windows.some((win) => win.isVisible())) hideWindows(); label: 'Docs',
else showWindows(); },
}); {
electron.globalShortcut.register(settings.hotkey, () => { type: 'normal',
const windows = electron.BrowserWindow.getAllWindows(); label: 'Enhancements',
if (windows.some((win) => win.isFocused() && win.isVisible())) },
hideWindows(); {
else showWindows(); 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();
});
});
};