mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09: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) => {
|
||||
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
7
insert/env/env.mjs
vendored
@ -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
11
insert/env/fs.mjs
vendored
@ -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;
|
||||
|
@ -7,7 +7,6 @@
|
||||
'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;
|
||||
@ -34,9 +33,4 @@ module.exports = async function (target, __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