-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreload.js
23 lines (22 loc) · 955 Bytes
/
preload.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const {contextBridge, ipcMain, ipcRenderer} = require('electron');
// Expose protected methods that allow the renderer process to use
// the ipcRenderer without exposing the entire object
contextBridge.exposeInMainWorld(
"api", {
send: (channel, data) => {
// whitelist channels
let validChannels = ["requestPoints","addRank","deletePoint","requestEtabs","addEtab","delEtab","changeEtabName"];
if (validChannels.includes(channel)) {
ipcRenderer.send(channel, data);
}
},
receive: (channel, func) => {
let validChannels = ["sendPoints","sendEtabId","sendEtabs"];
if (validChannels.includes(channel)) {
// Deliberately strip event as it includes `sender`
ipcRenderer.on(channel, (event, ...args) => func(...args));
}
}
}
);
contextBridge.exposeInMainWorld("is_using_electron", true);