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

38 lines
1 KiB
JavaScript
Raw Normal View History

2016-03-25 12:57:17 -07:00
'use strict'
2016-03-18 11:51:02 -07:00
2016-03-25 12:57:17 -07:00
const binding = process.atomBinding('ipc')
const v8Util = process.atomBinding('v8_util')
2016-01-11 18:40:23 -08:00
// Created by init.js.
2016-03-25 12:57:17 -07:00
const ipcRenderer = v8Util.getHiddenValue(global, 'ipc')
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.send = function (...args) {
return binding.send('ipc-message', args)
}
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.sendSync = function (...args) {
return JSON.parse(binding.sendSync('ipc-message-sync', args))
}
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.sendToHost = function (...args) {
return binding.send('ipc-message-host', args)
}
2016-01-11 18:40:23 -08:00
2016-05-18 21:19:50 +09:00
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
if (typeof webContentsId !== 'number') {
2016-05-28 22:46:15 +09:00
throw new TypeError('First argument has to be webContentsId')
2016-05-18 21:19:50 +09:00
}
ipcRenderer.send('ELECTRON_BROWSER_SEND_TO', false, webContentsId, channel, ...args)
}
ipcRenderer.sendToAll = function (webContentsId, channel, ...args) {
if (typeof webContentsId !== 'number') {
2016-05-28 22:46:15 +09:00
throw new TypeError('First argument has to be webContentsId')
}
ipcRenderer.send('ELECTRON_BROWSER_SEND_TO', true, webContentsId, channel, ...args)
2016-05-18 21:19:50 +09:00
}
2016-03-25 12:57:17 -07:00
module.exports = ipcRenderer