2020-10-13 21:11:06 +00:00
|
|
|
import { IPC_MESSAGES } from '@electron/internal/common/ipc-messages';
|
|
|
|
|
2022-09-20 18:25:33 +00:00
|
|
|
// eslint-disable-next-line no-restricted-imports
|
2021-05-06 01:05:01 +00:00
|
|
|
import type * as ipcRendererUtilsModule from '@electron/internal/renderer/ipc-renderer-internal-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;
|
2018-10-13 17:50:07 +00:00
|
|
|
|
2021-09-07 17:37:45 +00:00
|
|
|
const makeRemoteMethod = function (method: keyof Electron.Clipboard): any {
|
|
|
|
return (...args: any[]) => ipcRendererUtils.invokeSync(IPC_MESSAGES.BROWSER_CLIPBOARD_SYNC, method, ...args);
|
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)[]) {
|
2019-03-16 00:32:04 +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
|
|
|
|
clipboard.readFindText = makeRemoteMethod('readFindText');
|
|
|
|
clipboard.writeFindText = makeRemoteMethod('writeFindText');
|
|
|
|
}
|
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;
|