allow modification of parent file globals via __eval

This commit is contained in:
dragonwocky 2021-12-02 17:59:44 +11:00
parent 507731cefa
commit da70a3ed4f
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
7 changed files with 20 additions and 12 deletions

View File

@ -16,6 +16,7 @@ a complete rework of the enhancer, with new features and a port to the browser a
- a rainbow indentation lines style.
- border & background style options for the code line numbers extension.
- an icon sets option to encode images to data urls to prevent quality reduction.
- customisation of integrated titlebar window buttons
#### improved

@ -1 +1 @@
Subproject commit 32e51cfe45c90f9757ef3427cf60bb54aa95427a
Subproject commit 31835e966e93b686c24b5b6c76ea72a87ae987e1

View File

@ -17,12 +17,17 @@ window.__enhancerElectronApi = {
addChangeListener: api.storage.addChangeListener,
removeChangeListener: api.storage.removeChangeListener,
},
sendMessage: (id, data = undefined) => {
browser: require('electron').remote.getCurrentWindow(),
sendMessage: (channel, data = undefined) => {
const { ipcRenderer } = require('electron');
ipcRenderer.send(`notion-enhancer:${id}`, data);
ipcRenderer.send(`notion-enhancer:${channel}`, data);
},
onMessage: (id, callback) => {
sendMessageToHost: (channel, data = undefined) => {
const { ipcRenderer } = require('electron');
ipcRenderer.on(`notion-enhancer:${id}`, callback);
ipcRenderer.sendToHost(`notion-enhancer:${channel}`, data);
},
onMessage: (channel, callback) => {
const { ipcRenderer } = require('electron');
ipcRenderer.on(`notion-enhancer:${channel}`, callback);
},
};

View File

@ -6,7 +6,7 @@
'use strict';
module.exports = async function (target, __exports) {
module.exports = async function (target, __exports, __eval) {
if (target === 'renderer/preload') {
require('notion-enhancer/electronApi.cjs');
document.addEventListener('readystatechange', (event) => {
@ -29,7 +29,7 @@ module.exports = async function (target, __exports) {
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);
script(api, await registry.db(mod.id), __exports, __eval);
}
}
};

@ -1 +1 @@
Subproject commit 7707136dfecd1d2b69bcb1db6d56dca35ea2b329
Subproject commit 4bba5136828cb36ff8d6a8b38779b9e5537fae9a

View File

@ -17,7 +17,7 @@ const sendMessage = (id, data) => {
};
let enhancerMenu;
module.exports.focusMenu = () => {
module.exports.focusMenu = async () => {
if (enhancerMenu) return enhancerMenu.show();
const { fs } = require('notion-enhancer/api/index.cjs'),
@ -26,11 +26,13 @@ module.exports.focusMenu = () => {
file: 'enhancer-menu-window-state.json',
defaultWidth: 1250,
defaultHeight: 850,
});
}),
{ registry } = require('notion-enhancer/api/index.cjs'),
integratedTitlebar = await registry.enabled('a5658d03-21c6-4088-bade-fa4780459133');
enhancerMenu = new BrowserWindow({
show: true,
// frame: !store().frameless,
frame: !integratedTitlebar,
titleBarStyle: 'hiddenInset',
x: windowState.x,
y: windowState.y,

View File

@ -75,7 +75,7 @@ export default async function (
}
await fsp.appendFile(
file,
`\n\n//notion-enhancer\nrequire('notion-enhancer')('${target}', exports)`
`\n\n//notion-enhancer\nrequire('notion-enhancer')('${target}', exports, (js) => eval(js))`
);
}
}