33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
/*
|
|
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { contextBridge, ipcRenderer, webFrame } from "electron/renderer";
|
|
|
|
import { IpcEvents } from "../shared/IpcEvents";
|
|
import { VesktopNative } from "./VesktopNative";
|
|
|
|
contextBridge.exposeInMainWorld("VesktopNative", VesktopNative);
|
|
|
|
// TODO: remove this legacy workaround once some time has passed
|
|
const isSandboxed = typeof __dirname === "undefined";
|
|
if (isSandboxed) {
|
|
// While sandboxed, Electron "polyfills" these APIs as local variables.
|
|
// We have to pass them as arguments as they are not global
|
|
Function(
|
|
"require",
|
|
"Buffer",
|
|
"process",
|
|
"clearImmediate",
|
|
"setImmediate",
|
|
ipcRenderer.sendSync(IpcEvents.GET_VENCORD_PRELOAD_SCRIPT)
|
|
)(require, Buffer, process, clearImmediate, setImmediate);
|
|
} else {
|
|
require(ipcRenderer.sendSync(IpcEvents.DEPRECATED_GET_VENCORD_PRELOAD_SCRIPT_PATH));
|
|
}
|
|
|
|
webFrame.executeJavaScript(ipcRenderer.sendSync(IpcEvents.GET_VENCORD_RENDERER_SCRIPT));
|
|
webFrame.executeJavaScript(ipcRenderer.sendSync(IpcEvents.GET_VESKTOP_RENDERER_SCRIPT));
|