2020-10-13 21:11:06 +00:00
|
|
|
import { IPC_MESSAGES } from '@electron/internal/common/ipc-messages';
|
|
|
|
|
2021-05-06 01:05:01 +00:00
|
|
|
import type * as ipcRendererUtilsModule from '@electron/internal/renderer/ipc-renderer-internal-utils';
|
|
|
|
import type * as typeUtilsModule from '@electron/internal/common/type-utils';
|
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
const clipboard = process._linkedBinding('electron_common_clipboard');
|
2016-10-25 04:43:24 +00:00
|
|
|
|
2019-03-16 00:32:04 +00:00
|
|
|
if (process.type === 'renderer') {
|
2021-05-06 01:05:01 +00:00
|
|
|
const ipcRendererUtils = require('@electron/internal/renderer/ipc-renderer-internal-utils') as typeof ipcRendererUtilsModule;
|
|
|
|
const typeUtils = require('@electron/internal/common/type-utils') as typeof typeUtilsModule;
|
2018-10-13 17:50:07 +00:00
|
|
|
|
2020-05-22 19:46:22 +00:00
|
|
|
const makeRemoteMethod = function (method: keyof Electron.Clipboard) {
|
|
|
|
return (...args: any[]) => {
|
2020-03-20 20:28:31 +00:00
|
|
|
args = typeUtils.serialize(args);
|
2020-10-13 21:11:06 +00:00
|
|
|
const result = ipcRendererUtils.invokeSync(IPC_MESSAGES.BROWSER_CLIPBOARD_SYNC, method, ...args);
|
2020-03-20 20:28:31 +00:00
|
|
|
return typeUtils.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.
|
2020-05-22 19:46:22 +00:00
|
|
|
for (const method of Object.keys(clipboard) as (keyof Electron.Clipboard)[]) {
|
2020-03-20 20:28:31 +00:00
|
|
|
clipboard[method] = makeRemoteMethod(method);
|
2019-03-16 00:32:04 +00:00
|
|
|
}
|
|
|
|
} 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');
|
2019-03-16 00:32:04 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2019-03-16 00:32:04 +00:00
|
|
|
|
2020-05-22 19:46:22 +00:00
|
|
|
export default clipboard;
|