mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
menu window creation
This commit is contained in:
parent
aadcc50a11
commit
9f8c70c203
16
mods/core/menu.html
Normal file
16
mods/core/menu.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Notion Enhancements Menu</title>
|
||||||
|
</head>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<body>
|
||||||
|
yayayay it works!
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -16,6 +16,8 @@ module.exports = (defaults) =>
|
|||||||
),
|
),
|
||||||
default_styles = dragarea.getAttribute('style');
|
default_styles = dragarea.getAttribute('style');
|
||||||
|
|
||||||
|
// document.body.innerText = document.body.innerHTML;
|
||||||
|
|
||||||
document
|
document
|
||||||
.getElementById('notion')
|
.getElementById('notion')
|
||||||
.addEventListener('ipc-message', (event) => {
|
.addEventListener('ipc-message', (event) => {
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* (https://dragonwocky.me/) under the MIT license
|
* (https://dragonwocky.me/) under the MIT license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import './variables.css';
|
@import './css/variables.css';
|
||||||
@import './dark.css';
|
@import './css/dark.css';
|
||||||
@import './light.css';
|
@import './css/light.css';
|
||||||
@import './shared.css';
|
@import './css/shared.css';
|
||||||
@import './scrollbars.css';
|
@import './css/scrollbars.css';
|
||||||
@import './titlebar.css';
|
@import './css/titlebar.css';
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* (https://dragonwocky.me/) under the MIT license
|
* (https://dragonwocky.me/) under the MIT license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
let tray;
|
let tray, enhancer_menu;
|
||||||
|
|
||||||
module.exports = (defaults) =>
|
module.exports = (defaults) =>
|
||||||
function (store, __exports) {
|
function (store, __exports) {
|
||||||
@ -13,7 +13,9 @@ module.exports = (defaults) =>
|
|||||||
path = require('path'),
|
path = require('path'),
|
||||||
is_mac = process.platform === 'darwin',
|
is_mac = process.platform === 'darwin',
|
||||||
is_win = process.platform === 'win32',
|
is_win = process.platform === 'win32',
|
||||||
settings = store(defaults);
|
settings = store(defaults),
|
||||||
|
helpers = require('../../pkg/helpers.js'),
|
||||||
|
__notion = helpers.getNotion();
|
||||||
|
|
||||||
electron.app.on('ready', () => {
|
electron.app.on('ready', () => {
|
||||||
tray = new electron.Tray(
|
tray = new electron.Tray(
|
||||||
@ -27,6 +29,41 @@ module.exports = (defaults) =>
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
function calculateWindowPos(width, height) {
|
||||||
|
const screen = electron.screen.getDisplayNearestPoint({
|
||||||
|
x: tray.getBounds().x,
|
||||||
|
y: tray.getBounds().y,
|
||||||
|
});
|
||||||
|
// left
|
||||||
|
if (screen.workArea.x > 0)
|
||||||
|
// The workspace starts more on the right
|
||||||
|
return {
|
||||||
|
x: screen.workArea.x,
|
||||||
|
y: screen.workArea.height - height,
|
||||||
|
};
|
||||||
|
// top
|
||||||
|
if (screen.workArea.y > 0)
|
||||||
|
return {
|
||||||
|
x: Math.round(
|
||||||
|
tray.getBounds().x + tray.getBounds().width / 2 - width / 2
|
||||||
|
),
|
||||||
|
y: screen.workArea.y,
|
||||||
|
};
|
||||||
|
// right
|
||||||
|
if (screen.workArea.width < screen.bounds.width)
|
||||||
|
return {
|
||||||
|
x: screen.workArea.width - width,
|
||||||
|
y: screen.bounds.height - height,
|
||||||
|
};
|
||||||
|
// bottom
|
||||||
|
return {
|
||||||
|
x: Math.round(
|
||||||
|
tray.getBounds().x + tray.getBounds().width / 2 - width / 2
|
||||||
|
),
|
||||||
|
y: screen.workArea.height - height,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const contextMenu = electron.Menu.buildFromTemplate([
|
const contextMenu = electron.Menu.buildFromTemplate([
|
||||||
{
|
{
|
||||||
type: 'normal',
|
type: 'normal',
|
||||||
@ -61,7 +98,34 @@ module.exports = (defaults) =>
|
|||||||
{
|
{
|
||||||
type: 'normal',
|
type: 'normal',
|
||||||
label: 'Enhancements',
|
label: 'Enhancements',
|
||||||
// will open menu
|
click: () => {
|
||||||
|
const window_state = require(`${__notion.replace(
|
||||||
|
/\\/g,
|
||||||
|
'/'
|
||||||
|
)}/app/node_modules/electron-window-state/index.js`)({
|
||||||
|
file: 'menu-windowstate.json',
|
||||||
|
defaultWidth: 275,
|
||||||
|
defaultHeight: 600,
|
||||||
|
});
|
||||||
|
electron.shell.openExternal(JSON.stringify(window_state));
|
||||||
|
enhancer_menu = new electron.BrowserWindow({
|
||||||
|
show: true,
|
||||||
|
frame: false,
|
||||||
|
x:
|
||||||
|
window_state.x ||
|
||||||
|
calculateWindowPos(window_state.width, window_state.height).x,
|
||||||
|
y:
|
||||||
|
window_state.y ||
|
||||||
|
calculateWindowPos(window_state.width, window_state.height).y,
|
||||||
|
width: window_state.width,
|
||||||
|
height: window_state.height,
|
||||||
|
webPreferences: {
|
||||||
|
nodeIntegration: true,
|
||||||
|
session: electron.session.fromPartition('persist:notion'),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
enhancer_menu.loadURL('enhancement://core/menu.html');
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'separator',
|
type: 'separator',
|
||||||
@ -89,25 +153,6 @@ module.exports = (defaults) =>
|
|||||||
|
|
||||||
tray.on('click', () => {
|
tray.on('click', () => {
|
||||||
const windows = electron.BrowserWindow.getAllWindows();
|
const windows = electron.BrowserWindow.getAllWindows();
|
||||||
|
|
||||||
for (let browser of windows) {
|
|
||||||
browser.webContents.sendInputEvent({
|
|
||||||
type: 'keyDown',
|
|
||||||
modifiers: ['control', 'shift'],
|
|
||||||
key: 'L',
|
|
||||||
});
|
|
||||||
browser.webContents.sendInputEvent({
|
|
||||||
type: 'char',
|
|
||||||
modifiers: ['control', 'shift'],
|
|
||||||
key: 'L',
|
|
||||||
});
|
|
||||||
browser.webContents.sendInputEvent({
|
|
||||||
type: 'keyUp',
|
|
||||||
modifiers: ['control', 'shift'],
|
|
||||||
key: 'L',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (windows.some((win) => win.isVisible())) hideWindows();
|
if (windows.some((win) => win.isVisible())) hideWindows();
|
||||||
else showWindows();
|
else showWindows();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user