mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
0a8c97858c
This adds to the context menu to give the ability to download a file. It also fixes a couple bugs and improves some formatting of the directory view.
16 lines
731 B
TypeScript
16 lines
731 B
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
let { contextBridge, ipcRenderer } = require("electron");
|
|
|
|
contextBridge.exposeInMainWorld("api", {
|
|
isDev: () => ipcRenderer.sendSync("isDev"),
|
|
isDevServer: () => ipcRenderer.sendSync("isDevServer"),
|
|
getPlatform: () => ipcRenderer.sendSync("getPlatform"),
|
|
getCursorPoint: () => ipcRenderer.sendSync("getCursorPoint"),
|
|
openNewWindow: () => ipcRenderer.send("openNewWindow"),
|
|
showContextMenu: (menu, position) => ipcRenderer.send("contextmenu-show", menu, position),
|
|
onContextMenuClick: (callback) => ipcRenderer.on("contextmenu-click", callback),
|
|
downloadFile: (filePath) => ipcRenderer.send("download", { filePath }),
|
|
});
|