mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
notion window helpers, pull submodules
This commit is contained in:
parent
57c4d63275
commit
3af07ca21a
@ -1 +1 @@
|
||||
Subproject commit 069a17207a45c6e13af7c884b5ff67fa9f195543
|
||||
Subproject commit f5613ab6b1ca4abffb597a81433a1557fc642533
|
@ -133,5 +133,14 @@ globalThis.__enhancerElectronApi = {
|
||||
return reload();
|
||||
},
|
||||
|
||||
getNotionWindows: () => {
|
||||
const { getNotionWindows } = require('notion-enhancer/worker.cjs');
|
||||
return getNotionWindows();
|
||||
},
|
||||
getFocusedNotionWindow: () => {
|
||||
const { getFocusedNotionWindow } = require('notion-enhancer/worker.cjs');
|
||||
return getFocusedNotionWindow();
|
||||
},
|
||||
|
||||
ipcRenderer,
|
||||
};
|
||||
|
11
insert/env/env.mjs
vendored
11
insert/env/env.mjs
vendored
@ -42,14 +42,3 @@ export const focusNotion = globalThis.__enhancerElectronApi.focusNotion;
|
||||
* @type {function}
|
||||
*/
|
||||
export const reload = globalThis.__enhancerElectronApi.reload;
|
||||
|
||||
/**
|
||||
* require() notion app files
|
||||
* @param {string} path - within notion/resources/app/ e.g. main/createWindow.js
|
||||
*
|
||||
* @env win32
|
||||
* @env linux
|
||||
* @env darwin
|
||||
* @runtime electron
|
||||
*/
|
||||
export const notionRequire = globalThis.__enhancerElectronApi.notionRequire;
|
||||
|
4
insert/env/fs.mjs
vendored
4
insert/env/fs.mjs
vendored
@ -77,10 +77,6 @@ export const isFile = async (path) => {
|
||||
/**
|
||||
* get an absolute path to files within notion
|
||||
* @param {string} path - relative to the root notion/resources/app/ e.g. renderer/search.js
|
||||
*
|
||||
* @env win32
|
||||
* @env linux
|
||||
* @env darwin
|
||||
* @runtime electron
|
||||
*/
|
||||
export const notionPath = globalThis.__enhancerElectronApi.notionPath;
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 0298578df4d088dd4ad847b9311c72c8caa7aee8
|
||||
Subproject commit 2f602a34b3293a7ece50dfa2bc8d22997102e65f
|
@ -69,11 +69,24 @@ module.exports.focusMenu = async () => {
|
||||
});
|
||||
};
|
||||
|
||||
module.exports.getNotionWindows = () => {
|
||||
const { BrowserWindow } = require('electron'),
|
||||
windows = BrowserWindow.getAllWindows();
|
||||
if (enhancerMenu) return windows.filter((win) => win.id !== enhancerMenu.id);
|
||||
return windows;
|
||||
};
|
||||
|
||||
module.exports.getFocusedNotionWindow = () => {
|
||||
const { BrowserWindow } = require('electron'),
|
||||
focusedWindow = BrowserWindow.getFocusedWindow();
|
||||
if (enhancerMenu && focusedWindow && focusedWindow.id === enhancerMenu.id) return null;
|
||||
return focusedWindow;
|
||||
};
|
||||
|
||||
module.exports.focusNotion = () => {
|
||||
const { env } = require('notion-enhancer/api/index.cjs'),
|
||||
{ BrowserWindow } = require('electron'),
|
||||
{ createWindow } = env.notionRequire('main/createWindow.js');
|
||||
let window = BrowserWindow.getAllWindows().find((win) => win.id !== enhancerMenu.id);
|
||||
const api = require('notion-enhancer/api/index.cjs'),
|
||||
{ createWindow } = api.electron.notionRequire('main/createWindow.js');
|
||||
let window = module.exports.getFocusedNotionWindow() || module.exports.getNotionWindows()[0];
|
||||
if (!window) window = createWindow('/');
|
||||
window.show();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user