2018-09-22 12:28:50 +00:00
|
|
|
'use strict'
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
const clipboard = process.electronBinding('clipboard')
|
2016-10-25 04:43:24 +00:00
|
|
|
|
2019-03-16 00:32:04 +00:00
|
|
|
if (process.type === 'renderer') {
|
|
|
|
const ipcRendererUtils = require('@electron/internal/renderer/ipc-renderer-internal-utils')
|
|
|
|
const clipboardUtils = require('@electron/internal/common/clipboard-utils')
|
2018-10-13 17:50:07 +00:00
|
|
|
|
2019-03-16 00:32:04 +00:00
|
|
|
const makeRemoteMethod = function (method) {
|
|
|
|
return (...args) => {
|
|
|
|
args = clipboardUtils.serialize(args)
|
|
|
|
const result = ipcRendererUtils.invokeSync('ELECTRON_BROWSER_CLIPBOARD', method, ...args)
|
|
|
|
return clipboardUtils.deserialize(result)
|
|
|
|
}
|
2016-10-25 04:43:24 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 00:32:04 +00:00
|
|
|
if (process.platform === 'linux') {
|
|
|
|
// On Linux we could not access clipboard in renderer process.
|
|
|
|
for (const method of Object.keys(clipboard)) {
|
|
|
|
clipboard[method] = makeRemoteMethod(method)
|
|
|
|
}
|
|
|
|
} else if (process.platform === 'darwin') {
|
|
|
|
// Read/write to find pasteboard over IPC since only main process is notified of changes
|
|
|
|
clipboard.readFindText = makeRemoteMethod('readFindText')
|
|
|
|
clipboard.writeFindText = makeRemoteMethod('writeFindText')
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2019-03-16 00:32:04 +00:00
|
|
|
|
|
|
|
module.exports = clipboard
|