electron/lib/renderer/api/ipc-renderer.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
914 B
TypeScript
Raw Normal View History

2020-06-02 09:33:06 +00:00
import { EventEmitter } from 'events';
const { ipc } = process._linkedBinding('electron_renderer_ipc');
2016-01-12 02:40:23 +00:00
const internal = false;
class IpcRenderer extends EventEmitter implements Electron.IpcRenderer {
send (channel: string, ...args: any[]) {
return ipc.send(internal, channel, args);
}
sendSync (channel: string, ...args: any[]) {
return ipc.sendSync(internal, channel, args);
}
2020-06-02 09:33:06 +00:00
sendToHost (channel: string, ...args: any[]) {
return ipc.sendToHost(channel, args);
}
2020-06-02 09:33:06 +00:00
async invoke (channel: string, ...args: any[]) {
const { error, result } = await ipc.invoke(internal, channel, args);
if (error) {
throw new Error(`Error invoking remote method '${channel}': ${error}`);
}
return result;
2020-06-02 09:33:06 +00:00
}
postMessage (channel: string, message: any, transferables: any) {
return ipc.postMessage(channel, message, transferables);
}
}
export default new IpcRenderer();