mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
imitate notion ipc channels, pull submodules
This commit is contained in:
parent
e1190fe3f8
commit
3e927e75b8
@ -1 +1 @@
|
|||||||
Subproject commit 0357dac3b0b23a83b4f33f28a5c44b59496ac599
|
Subproject commit 4091fcba3fbbe7bb28daa458824107cb4790e8af
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
const errors = await registry.errors();
|
const errors = await registry.errors();
|
||||||
if (errors.length) {
|
if (errors.length) {
|
||||||
console.log('[notion-enhancer] registry errors:');
|
console.error('[notion-enhancer] registry errors:');
|
||||||
console.table(errors);
|
console.table(errors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -84,17 +84,20 @@ const db = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ipcRenderer = {
|
const ipcRenderer = {
|
||||||
sendMessage: (channel, data = undefined) => {
|
sendMessage: (channel, data = undefined, namespace = 'notion-enhancer') => {
|
||||||
const { ipcRenderer } = require('electron');
|
const { ipcRenderer } = require('electron');
|
||||||
ipcRenderer.send(`notion-enhancer:${channel}`, data);
|
channel = namespace ? `${namespace}:${channel}` : channel;
|
||||||
|
ipcRenderer.send(channel, data);
|
||||||
},
|
},
|
||||||
sendMessageToHost: (channel, data = undefined) => {
|
sendMessageToHost: (channel, data = undefined, namespace = 'notion-enhancer') => {
|
||||||
const { ipcRenderer } = require('electron');
|
const { ipcRenderer } = require('electron');
|
||||||
ipcRenderer.sendToHost(`notion-enhancer:${channel}`, data);
|
channel = namespace ? `${namespace}:${channel}` : channel;
|
||||||
|
ipcRenderer.sendToHost(channel, data);
|
||||||
},
|
},
|
||||||
onMessage: (channel, callback) => {
|
onMessage: (channel, callback, namespace = 'notion-enhancer') => {
|
||||||
const { ipcRenderer } = require('electron');
|
const { ipcRenderer } = require('electron');
|
||||||
ipcRenderer.on(`notion-enhancer:${channel}`, callback);
|
channel = namespace ? `${namespace}:${channel}` : channel;
|
||||||
|
ipcRenderer.on(channel, callback);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 859e3637b763f934d353058317a321327556de81
|
Subproject commit 4cd33f48a01dadaf493987296995a01600c926bf
|
Loading…
Reference in New Issue
Block a user