2020-06-02 09:33:06 +00:00
|
|
|
import { EventEmitter } from 'events';
|
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
const { ipc } = process._linkedBinding('electron_renderer_ipc');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const internal = false;
|
2017-02-27 17:34:08 +00:00
|
|
|
|
2020-06-02 09:33:06 +00:00
|
|
|
const ipcRenderer = new EventEmitter() as Electron.IpcRenderer;
|
|
|
|
ipcRenderer.send = function (channel, ...args) {
|
|
|
|
return ipc.send(internal, channel, args);
|
|
|
|
};
|
|
|
|
|
|
|
|
ipcRenderer.sendSync = function (channel, ...args) {
|
2020-10-28 15:48:20 +00:00
|
|
|
return ipc.sendSync(internal, channel, args);
|
2020-06-02 09:33:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ipcRenderer.sendToHost = function (channel, ...args) {
|
|
|
|
return ipc.sendToHost(channel, args);
|
|
|
|
};
|
|
|
|
|
|
|
|
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
|
2021-06-18 04:26:18 +00:00
|
|
|
return ipc.sendTo(webContentsId, channel, args);
|
2020-06-02 09:33:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ipcRenderer.invoke = async function (channel, ...args) {
|
|
|
|
const { error, result } = await ipc.invoke(internal, channel, args);
|
|
|
|
if (error) {
|
|
|
|
throw new Error(`Error invoking remote method '${channel}': ${error}`);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
ipcRenderer.postMessage = function (channel: string, message: any, transferables: any) {
|
|
|
|
return ipc.postMessage(channel, message, transferables);
|
|
|
|
};
|
2020-03-12 01:07:54 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
export default ipcRenderer;
|