notion window helpers, pull submodules

This commit is contained in:
dragonwocky 2021-12-12 23:13:17 +11:00
parent 57c4d63275
commit 3af07ca21a
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
6 changed files with 28 additions and 21 deletions

@ -1 +1 @@
Subproject commit 069a17207a45c6e13af7c884b5ff67fa9f195543
Subproject commit f5613ab6b1ca4abffb597a81433a1557fc642533

View File

@ -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
View File

@ -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
View File

@ -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

View File

@ -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();
};