mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
tabs: intercept ctrl+click & 'open in desktop app'
create a new tab instead of a new window
This commit is contained in:
parent
01ae8d67a2
commit
fc4cd900cf
22
repo/tabs/createWindow.cjs
Normal file
22
repo/tabs/createWindow.cjs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* notion-enhancer: tabs
|
||||||
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
|
* (https://notion-enhancer.github.io/) under the MIT license
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = async function ({ env }, db, __exports, __eval) {
|
||||||
|
const { BrowserWindow } = require('electron'),
|
||||||
|
notionCreateWindow = __exports.createWindow;
|
||||||
|
__exports.createWindow = (relativeUrl = '', args) => {
|
||||||
|
const windows = BrowserWindow.getAllWindows();
|
||||||
|
if (relativeUrl && windows.length) {
|
||||||
|
windows[0].webContents.send('notion-enhancer:open-tab', {
|
||||||
|
notionUrl: `notion://www.notion.so${relativeUrl}`,
|
||||||
|
});
|
||||||
|
return windows[0];
|
||||||
|
}
|
||||||
|
return notionCreateWindow(relativeUrl, args);
|
||||||
|
};
|
||||||
|
};
|
@ -11,4 +11,21 @@ module.exports = async function ({}, db, __exports, __eval) {
|
|||||||
electron.ipcMain.on('notion-enhancer:close-tab', (event, { window, id }) => {
|
electron.ipcMain.on('notion-enhancer:close-tab', (event, { window, id }) => {
|
||||||
electron.webContents.fromId(window).send('notion-enhancer:close-tab', id);
|
electron.webContents.fromId(window).send('notion-enhancer:close-tab', id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
__eval(`
|
||||||
|
const notionHandleActivate = handleActivate;
|
||||||
|
handleActivate = (relativeUrl) => {
|
||||||
|
const { BrowserWindow } = require('electron'),
|
||||||
|
windows = BrowserWindow.getAllWindows(),
|
||||||
|
focusedWindow = BrowserWindow.getFocusedWindow();
|
||||||
|
if (relativeUrl && windows.length) {
|
||||||
|
const win = focusedWindow || windows[0];
|
||||||
|
win.webContents.send('notion-enhancer:open-tab', {
|
||||||
|
notionUrl: \`notion://www.notion.so\$\{relativeUrl\}\`,
|
||||||
|
});
|
||||||
|
win.show();
|
||||||
|
win.focus();
|
||||||
|
} else notionHandleActivate(relativeUrl);
|
||||||
|
};
|
||||||
|
`);
|
||||||
};
|
};
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
"electron": [
|
"electron": [
|
||||||
{ "source": "main.cjs", "target": "main/main.js" },
|
{ "source": "main.cjs", "target": "main/main.js" },
|
||||||
{ "source": "systemMenu.cjs", "target": "main/systemMenu.js" },
|
{ "source": "systemMenu.cjs", "target": "main/systemMenu.js" },
|
||||||
|
{ "source": "createWindow.cjs", "target": "main/createWindow.js" },
|
||||||
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" }
|
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -48,6 +48,7 @@ module.exports = async function ({ env }, db, __exports, __eval) {
|
|||||||
windows[0].focus();
|
windows[0].focus();
|
||||||
if (relativeUrl) {
|
if (relativeUrl) {
|
||||||
// handle requests passed via the notion:// protocol
|
// handle requests passed via the notion:// protocol
|
||||||
|
// or ctrl+click
|
||||||
windows[0].loadURL(urlHelpers.getIndexUrl(relativeUrl));
|
windows[0].loadURL(urlHelpers.getIndexUrl(relativeUrl));
|
||||||
}
|
}
|
||||||
return windows[0];
|
return windows[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user