imitate notion ipc channels, pull submodules

This commit is contained in:
dragonwocky 2021-12-10 00:06:09 +11:00
parent e1190fe3f8
commit 3e927e75b8
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
4 changed files with 12 additions and 9 deletions

@ -1 +1 @@
Subproject commit 0357dac3b0b23a83b4f33f28a5c44b59496ac599 Subproject commit 4091fcba3fbbe7bb28daa458824107cb4790e8af

View File

@ -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);
} }
} }

View File

@ -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