electron/lib/common/api/clipboard.ts

28 lines
1.1 KiB
TypeScript
Raw Normal View History

const clipboard = process._linkedBinding('electron_common_clipboard');
if (process.type === 'renderer') {
2020-03-20 20:28:31 +00:00
const ipcRendererUtils = require('@electron/internal/renderer/ipc-renderer-internal-utils');
const typeUtils = require('@electron/internal/common/type-utils');
const makeRemoteMethod = function (method: keyof Electron.Clipboard) {
return (...args: any[]) => {
2020-03-20 20:28:31 +00:00
args = typeUtils.serialize(args);
const result = ipcRendererUtils.invokeSync('ELECTRON_BROWSER_CLIPBOARD_SYNC', method, ...args);
2020-03-20 20:28:31 +00:00
return typeUtils.deserialize(result);
};
};
if (process.platform === 'linux') {
// On Linux we could not access clipboard in renderer process.
for (const method of Object.keys(clipboard) as (keyof Electron.Clipboard)[]) {
2020-03-20 20:28:31 +00:00
clipboard[method] = makeRemoteMethod(method);
}
} else if (process.platform === 'darwin') {
// Read/write to find pasteboard over IPC since only main process is notified of changes
2020-03-20 20:28:31 +00:00
clipboard.readFindText = makeRemoteMethod('readFindText');
clipboard.writeFindText = makeRemoteMethod('writeFindText');
}
2016-01-12 02:40:23 +00:00
}
export default clipboard;