fs.notionPath, pull submodules

This commit is contained in:
dragonwocky 2021-12-08 22:42:03 +11:00
parent 1f0a738610
commit e1190fe3f8
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
6 changed files with 42 additions and 31 deletions

@ -1 +1 @@
Subproject commit be9864f90b60cc48837efb32bb4bc7f0d1a5acae
Subproject commit 0357dac3b0b23a83b4f33f28a5c44b59496ac599

View File

@ -94,7 +94,7 @@ const ipcRenderer = {
},
onMessage: (channel, callback) => {
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() : {},
webFrame: isRenderer ? require('electron').webFrame : {},
notionRequire: (path) => require(`../../${path}`),
notionPath: (path) => require('path').resolve(`${__dirname}/../../${path}`),
nodeRequire: (path) => require(path),
focusMenu: () => {

7
insert/env/env.mjs vendored
View File

@ -45,6 +45,11 @@ export const reload = globalThis.__enhancerElectronApi.reload;
/**
* 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;

11
insert/env/fs.mjs vendored
View File

@ -73,3 +73,14 @@ export const isFile = async (path) => {
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;

View File

@ -7,36 +7,30 @@
'use strict';
module.exports = async function (target, __exports, __eval) {
try {
require('notion-enhancer/electronApi.cjs');
const api = require('notion-enhancer/api/index.cjs'),
{ registry } = api;
require('notion-enhancer/electronApi.cjs');
const api = require('notion-enhancer/api/index.cjs'),
{ registry } = api;
if (target === 'renderer/preload') {
document.addEventListener('readystatechange', (event) => {
if (document.readyState !== 'complete') return false;
const script = document.createElement('script');
script.type = 'module';
script.src = api.fs.localPath('client.mjs');
document.head.appendChild(script);
});
}
if (target === 'renderer/preload') {
document.addEventListener('readystatechange', (event) => {
if (document.readyState !== 'complete') return false;
const script = document.createElement('script');
script.type = 'module';
script.src = api.fs.localPath('client.mjs');
document.head.appendChild(script);
});
}
if (target === 'main/main') {
const { app } = require('electron');
app.whenReady().then(require('notion-enhancer/worker.cjs').listen);
}
if (target === 'main/main') {
const { app } = require('electron');
app.whenReady().then(require('notion-enhancer/worker.cjs').listen);
}
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
for (const { source, target: scriptTarget } of (mod.js ? mod.js.electron : []) || []) {
if (`${target}.js` !== scriptTarget) continue;
const script = require(`notion-enhancer/repo/${mod._dir}/${source}`);
script(api, await registry.db(mod.id), __exports, __eval);
}
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
for (const { source, target: scriptTarget } of (mod.js ? mod.js.electron : []) || []) {
if (`${target}.js` !== scriptTarget) continue;
const script = require(`notion-enhancer/repo/${mod._dir}/${source}`);
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