mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fs.notionPath, pull submodules
This commit is contained in:
parent
1f0a738610
commit
e1190fe3f8
@ -1 +1 @@
|
|||||||
Subproject commit be9864f90b60cc48837efb32bb4bc7f0d1a5acae
|
Subproject commit 0357dac3b0b23a83b4f33f28a5c44b59496ac599
|
@ -94,7 +94,7 @@ const ipcRenderer = {
|
|||||||
},
|
},
|
||||||
onMessage: (channel, callback) => {
|
onMessage: (channel, callback) => {
|
||||||
const { ipcRenderer } = require('electron');
|
const { ipcRenderer } = require('electron');
|
||||||
ipcRenderer.addListener(`notion-enhancer:${channel}`, callback);
|
ipcRenderer.on(`notion-enhancer:${channel}`, callback);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -106,6 +106,7 @@ globalThis.__enhancerElectronApi = {
|
|||||||
browser: isRenderer ? require('electron').remote.getCurrentWindow() : {},
|
browser: isRenderer ? require('electron').remote.getCurrentWindow() : {},
|
||||||
webFrame: isRenderer ? require('electron').webFrame : {},
|
webFrame: isRenderer ? require('electron').webFrame : {},
|
||||||
notionRequire: (path) => require(`../../${path}`),
|
notionRequire: (path) => require(`../../${path}`),
|
||||||
|
notionPath: (path) => require('path').resolve(`${__dirname}/../../${path}`),
|
||||||
nodeRequire: (path) => require(path),
|
nodeRequire: (path) => require(path),
|
||||||
|
|
||||||
focusMenu: () => {
|
focusMenu: () => {
|
||||||
|
7
insert/env/env.mjs
vendored
7
insert/env/env.mjs
vendored
@ -45,6 +45,11 @@ export const reload = globalThis.__enhancerElectronApi.reload;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* require() notion app files
|
* require() notion app files
|
||||||
* @param {string} path - within notion/resources/app e.g. main/createWindow.js
|
* @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;
|
export const notionRequire = globalThis.__enhancerElectronApi.notionRequire;
|
||||||
|
11
insert/env/fs.mjs
vendored
11
insert/env/fs.mjs
vendored
@ -73,3 +73,14 @@ export const isFile = async (path) => {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
@ -7,36 +7,30 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
module.exports = async function (target, __exports, __eval) {
|
module.exports = async function (target, __exports, __eval) {
|
||||||
try {
|
require('notion-enhancer/electronApi.cjs');
|
||||||
require('notion-enhancer/electronApi.cjs');
|
const api = require('notion-enhancer/api/index.cjs'),
|
||||||
const api = require('notion-enhancer/api/index.cjs'),
|
{ registry } = api;
|
||||||
{ registry } = api;
|
|
||||||
|
|
||||||
if (target === 'renderer/preload') {
|
if (target === 'renderer/preload') {
|
||||||
document.addEventListener('readystatechange', (event) => {
|
document.addEventListener('readystatechange', (event) => {
|
||||||
if (document.readyState !== 'complete') return false;
|
if (document.readyState !== 'complete') return false;
|
||||||
const script = document.createElement('script');
|
const script = document.createElement('script');
|
||||||
script.type = 'module';
|
script.type = 'module';
|
||||||
script.src = api.fs.localPath('client.mjs');
|
script.src = api.fs.localPath('client.mjs');
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (target === 'main/main') {
|
if (target === 'main/main') {
|
||||||
const { app } = require('electron');
|
const { app } = require('electron');
|
||||||
app.whenReady().then(require('notion-enhancer/worker.cjs').listen);
|
app.whenReady().then(require('notion-enhancer/worker.cjs').listen);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
|
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
|
||||||
for (const { source, target: scriptTarget } of (mod.js ? mod.js.electron : []) || []) {
|
for (const { source, target: scriptTarget } of (mod.js ? mod.js.electron : []) || []) {
|
||||||
if (`${target}.js` !== scriptTarget) continue;
|
if (`${target}.js` !== scriptTarget) continue;
|
||||||
const script = require(`notion-enhancer/repo/${mod._dir}/${source}`);
|
const script = require(`notion-enhancer/repo/${mod._dir}/${source}`);
|
||||||
script(api, await registry.db(mod.id), __exports, __eval);
|
script(api, await registry.db(mod.id), __exports, __eval);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} catch (err) {
|
|
||||||
console.log(err);
|
|
||||||
const { app, Notification } = require('electron');
|
|
||||||
app.whenReady().then(() => new Notification({ title: target, body: err.message }).show());
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit d7b78f4836aea7ea0754c3bf10b49488897d90a0
|
Subproject commit 859e3637b763f934d353058317a321327556de81
|
Loading…
Reference in New Issue
Block a user