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');
|
2018-10-06 11:48:00 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const internal = true;
|
2018-10-06 11:48:00 +00:00
|
|
|
|
2020-10-02 02:52:29 +00:00
|
|
|
const ipcRendererInternal = new EventEmitter() as any as ElectronInternal.IpcRendererInternal;
|
2020-06-02 09:33:06 +00:00
|
|
|
ipcRendererInternal.send = function (channel, ...args) {
|
|
|
|
return ipc.send(internal, channel, args);
|
|
|
|
};
|
|
|
|
|
|
|
|
ipcRendererInternal.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
|
|
|
};
|
|
|
|
|
|
|
|
ipcRendererInternal.sendTo = function (webContentsId, channel, ...args) {
|
2020-12-03 06:55:50 +00:00
|
|
|
return ipc.sendTo(internal, webContentsId, channel, args);
|
2020-06-02 09:33:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ipcRendererInternal.invoke = async function<T> (channel: string, ...args: any[]) {
|
|
|
|
const { error, result } = await ipc.invoke<T>(internal, channel, args);
|
|
|
|
if (error) {
|
|
|
|
throw new Error(`Error invoking remote method '${channel}': ${error}`);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
export { ipcRendererInternal };
|