2024-08-27 07:03:43 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
import * as electron from "electron";
|
|
|
|
import { fireAndForget } from "../frontend/util/util";
|
Update data and config paths to match platform defaults (#1047)
Going forward for new installations, config and data files will be
stored at the platform default paths, as defined by
[env-paths](https://www.npmjs.com/package/env-paths).
For backwards compatibility, if the `~/.waveterm` or `WAVETERM_HOME`
directory exists and contains valid data, it will be used. If this check
fails, then `WAVETERM_DATA_HOME` and `WAVETERM_CONFIG_HOME` will be
used. If these are not defined, then `XDG_DATA_HOME` and
`XDG_CONFIG_HOME` will be used. Finally, if none of these are defined,
the [env-paths](https://www.npmjs.com/package/env-paths) defaults will
be used.
As with the existing app, dev instances will write to `waveterm-dev`
directories, while all others will write to `waveterm`.
2024-10-22 18:26:58 +02:00
|
|
|
import { clearTabCache, getFocusedWaveWindow } from "./emain-viewmgr";
|
2024-08-27 07:03:43 +02:00
|
|
|
import { unamePlatform } from "./platform";
|
|
|
|
import { updater } from "./updater";
|
|
|
|
|
|
|
|
type AppMenuCallbacks = {
|
|
|
|
createNewWaveWindow: () => Promise<void>;
|
|
|
|
relaunchBrowserWindows: () => Promise<void>;
|
2024-10-17 23:34:02 +02:00
|
|
|
getLastFocusedWaveWindow: () => WaveBrowserWindow;
|
2024-08-27 07:03:43 +02:00
|
|
|
};
|
|
|
|
|
2024-10-05 01:34:05 +02:00
|
|
|
function getWindowWebContents(window: electron.BaseWindow): electron.WebContents {
|
|
|
|
if (window == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2024-10-17 23:34:02 +02:00
|
|
|
if (window instanceof electron.BaseWindow) {
|
|
|
|
const waveWin = window as WaveBrowserWindow;
|
|
|
|
if (waveWin.activeTabView) {
|
|
|
|
return waveWin.activeTabView.webContents;
|
|
|
|
}
|
|
|
|
return null;
|
2024-10-05 01:34:05 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2024-08-27 07:03:43 +02:00
|
|
|
function getAppMenu(callbacks: AppMenuCallbacks): Electron.Menu {
|
|
|
|
const fileMenu: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{
|
|
|
|
label: "New Window",
|
|
|
|
accelerator: "CommandOrControl+Shift+N",
|
|
|
|
click: () => fireAndForget(callbacks.createNewWaveWindow),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "close",
|
|
|
|
accelerator: "", // clear the accelerator
|
|
|
|
click: () => {
|
2024-10-17 23:34:02 +02:00
|
|
|
getFocusedWaveWindow()?.close();
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
const appMenu: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{
|
|
|
|
label: "About Wave Terminal",
|
|
|
|
click: (_, window) => {
|
2024-10-05 01:34:05 +02:00
|
|
|
getWindowWebContents(window)?.send("menu-item-about");
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Check for Updates",
|
|
|
|
click: () => {
|
|
|
|
fireAndForget(() => updater?.checkForUpdates(true));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
if (unamePlatform === "darwin") {
|
|
|
|
appMenu.push(
|
|
|
|
{
|
|
|
|
role: "services",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "hide",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "hideOthers",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
appMenu.push({
|
|
|
|
role: "quit",
|
|
|
|
});
|
|
|
|
const editMenu: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{
|
|
|
|
role: "undo",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+Z" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "redo",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+Shift+Z" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "cut",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+X" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "copy",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+C" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "paste",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+V" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "pasteAndMatchStyle",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+Shift+V" : "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "delete",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "selectAll",
|
|
|
|
accelerator: unamePlatform === "darwin" ? "Command+A" : "",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-10-30 21:54:36 +01:00
|
|
|
const devToolsAccel = unamePlatform === "darwin" ? "Option+Command+I" : "Alt+Shift+I";
|
2024-08-27 07:03:43 +02:00
|
|
|
const viewMenu: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{
|
2024-10-17 23:34:02 +02:00
|
|
|
label: "Reload Tab",
|
|
|
|
accelerator: "Shift+CommandOrControl+R",
|
|
|
|
click: (_, window) => {
|
|
|
|
getWindowWebContents(window)?.reloadIgnoringCache();
|
|
|
|
},
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Relaunch All Windows",
|
|
|
|
click: () => {
|
|
|
|
callbacks.relaunchBrowserWindows();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2024-10-17 23:34:02 +02:00
|
|
|
label: "Clear Tab Cache",
|
|
|
|
click: () => {
|
|
|
|
clearTabCache();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Toggle DevTools",
|
|
|
|
accelerator: devToolsAccel,
|
|
|
|
click: (_, window) => {
|
|
|
|
let wc = getWindowWebContents(window);
|
|
|
|
wc?.toggleDevTools();
|
|
|
|
},
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Actual Size",
|
|
|
|
accelerator: "CommandOrControl+0",
|
|
|
|
click: (_, window) => {
|
2024-10-05 01:34:05 +02:00
|
|
|
getWindowWebContents(window)?.setZoomFactor(1);
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Zoom In",
|
|
|
|
accelerator: "CommandOrControl+=",
|
|
|
|
click: (_, window) => {
|
2024-10-05 01:34:05 +02:00
|
|
|
const wc = getWindowWebContents(window);
|
|
|
|
if (wc == null) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-17 23:34:02 +02:00
|
|
|
if (wc.getZoomFactor() >= 5) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-05 01:34:05 +02:00
|
|
|
wc.setZoomFactor(wc.getZoomFactor() + 0.2);
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Zoom In (hidden)",
|
|
|
|
accelerator: "CommandOrControl+Shift+=",
|
|
|
|
click: (_, window) => {
|
2024-10-05 01:34:05 +02:00
|
|
|
const wc = getWindowWebContents(window);
|
|
|
|
if (wc == null) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-17 23:34:02 +02:00
|
|
|
if (wc.getZoomFactor() >= 5) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-05 01:34:05 +02:00
|
|
|
wc.setZoomFactor(wc.getZoomFactor() + 0.2);
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
visible: false,
|
|
|
|
acceleratorWorksWhenHidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Zoom Out",
|
|
|
|
accelerator: "CommandOrControl+-",
|
|
|
|
click: (_, window) => {
|
2024-10-05 01:34:05 +02:00
|
|
|
const wc = getWindowWebContents(window);
|
|
|
|
if (wc == null) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-17 23:34:02 +02:00
|
|
|
if (wc.getZoomFactor() <= 0.2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wc.setZoomFactor(wc.getZoomFactor() - 0.2);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Zoom Out (hidden)",
|
|
|
|
accelerator: "CommandOrControl+Shift+-",
|
|
|
|
click: (_, window) => {
|
|
|
|
const wc = getWindowWebContents(window);
|
|
|
|
if (wc == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (wc.getZoomFactor() <= 0.2) {
|
|
|
|
return;
|
|
|
|
}
|
2024-10-05 01:34:05 +02:00
|
|
|
wc.setZoomFactor(wc.getZoomFactor() - 0.2);
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
2024-10-17 23:34:02 +02:00
|
|
|
visible: false,
|
|
|
|
acceleratorWorksWhenHidden: true,
|
2024-08-27 07:03:43 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "togglefullscreen",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
const windowMenu: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{ role: "minimize", accelerator: "" },
|
|
|
|
{ role: "zoom" },
|
|
|
|
{ type: "separator" },
|
|
|
|
{ role: "front" },
|
|
|
|
{ type: "separator" },
|
|
|
|
{ role: "window" },
|
|
|
|
];
|
|
|
|
const menuTemplate: Electron.MenuItemConstructorOptions[] = [
|
|
|
|
{
|
|
|
|
role: "appMenu",
|
|
|
|
submenu: appMenu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "fileMenu",
|
|
|
|
submenu: fileMenu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "editMenu",
|
|
|
|
submenu: editMenu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "viewMenu",
|
|
|
|
submenu: viewMenu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: "windowMenu",
|
|
|
|
submenu: windowMenu,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
return electron.Menu.buildFromTemplate(menuTemplate);
|
|
|
|
}
|
|
|
|
|
|
|
|
export { getAppMenu };
|