mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 TarasokUA
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
module.exports = (defaults) =>
|
|
function (store, __exports) {
|
|
const electron = require('electron'),
|
|
allWindows = electron.BrowserWindow.getAllWindows,
|
|
createWindow = __exports.createWindow,
|
|
path = require('path'),
|
|
is_mac = process.platform === 'darwin',
|
|
settings = store(defaults),
|
|
helpers = require('../../pkg/helpers.js'),
|
|
__notion = helpers.getNotion();
|
|
|
|
__exports.createWindow = function (relativeUrl) {
|
|
if (!relativeUrl) relativeUrl = '';
|
|
const window_state = require(`${__notion.replace(
|
|
/\\/g,
|
|
'/'
|
|
)}/app/node_modules/electron-window-state/index.js`)({
|
|
defaultWidth: 1320,
|
|
defaultHeight: 860,
|
|
}),
|
|
rect = {
|
|
x: window_state.x,
|
|
y: window_state.y,
|
|
width: window_state.width,
|
|
height: window_state.height,
|
|
},
|
|
focused_window = electron.BrowserWindow.getFocusedWindow();
|
|
if (focused_window && !focused_window.isMaximized()) {
|
|
rect.x = focused_window.getPosition()[0] + 20;
|
|
rect.y = focused_window.getPosition()[1] + 20;
|
|
rect.width = focused_window.getSize()[0];
|
|
rect.height = focused_window.getSize()[1];
|
|
}
|
|
const window = new electron.BrowserWindow({
|
|
show: false,
|
|
backgroundColor: '#ffffff',
|
|
titleBarStyle: 'hiddenInset',
|
|
frame: !settings.frameless,
|
|
webPreferences: {
|
|
preload: path.resolve(`${__notion}/app/renderer/index.js`),
|
|
webviewTag: true,
|
|
session: electron.session.fromPartition('persist:notion'),
|
|
},
|
|
...rect,
|
|
});
|
|
window.once('ready-to-show', function () {
|
|
if (
|
|
!settings.openhidden ||
|
|
allWindows().some((win) => win.isVisible() && win.id != window.id)
|
|
) {
|
|
window.show();
|
|
if (settings.maximized) window.maximize();
|
|
if (
|
|
(focused_window && focused_window.isFullScreen()) ||
|
|
window_state.isFullScreen
|
|
)
|
|
window.setFullScreen(true);
|
|
}
|
|
});
|
|
let intended_quit = false;
|
|
window.on('close', (e) => {
|
|
if (
|
|
intended_quit ||
|
|
!settings.close_to_tray ||
|
|
allWindows().length > 1
|
|
) {
|
|
window_state.saveState(window);
|
|
window = null;
|
|
} else {
|
|
e.preventDefault();
|
|
window.hide();
|
|
}
|
|
});
|
|
electron.app.on('before-quit', () => (intended_quit = true));
|
|
window.loadURL(__exports.getIndexUrl(relativeUrl));
|
|
return window;
|
|
};
|
|
};
|