mirror of
https://github.com/rubickCenter/rubick
synced 2025-12-29 22:39:45 +08:00
♻️ search 框输入交互优化
This commit is contained in:
75
src/main/common/tray.ts
Normal file
75
src/main/common/tray.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
import { dialog, Menu, Tray, app, shell, BrowserWindow } from "electron";
|
||||
import path from "path";
|
||||
import pkg from "../../../package.json";
|
||||
import os from "os";
|
||||
import commonConst from "@/common/utils/commonConst";
|
||||
|
||||
function createTray(window: BrowserWindow): Promise<Tray> {
|
||||
return new Promise((resolve) => {
|
||||
let icon;
|
||||
if (commonConst.macOS()) {
|
||||
icon = "./icon@3x.png";
|
||||
} else if (commonConst.windows()) {
|
||||
icon = parseInt(os.release()) < 10 ? "./icon@2x.png" : "./icon.ico";
|
||||
} else {
|
||||
icon = "icon@2x.png";
|
||||
}
|
||||
const appIcon = new Tray(path.join(__static, icon));
|
||||
const contextMenu = Menu.buildFromTemplate([
|
||||
{
|
||||
label: "帮助文档",
|
||||
click: () => {
|
||||
process.nextTick(() => {
|
||||
shell.openExternal("https://github.com/clouDr-f2e/rubick");
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
label: "意见反馈",
|
||||
click: () => {
|
||||
process.nextTick(() => {
|
||||
shell.openExternal("https://github.com/clouDr-f2e/rubick/issues");
|
||||
});
|
||||
},
|
||||
},
|
||||
{ type: "separator" },
|
||||
{
|
||||
label: "显示窗口",
|
||||
accelerator: "Alt+R",
|
||||
click() {
|
||||
window.show();
|
||||
},
|
||||
},
|
||||
{
|
||||
role: "quit",
|
||||
label: "退出",
|
||||
},
|
||||
{
|
||||
label: "重启",
|
||||
click() {
|
||||
app.relaunch();
|
||||
app.quit();
|
||||
},
|
||||
},
|
||||
{ type: "separator" },
|
||||
{
|
||||
label: "关于",
|
||||
click() {
|
||||
dialog.showMessageBox({
|
||||
title: "拉比克",
|
||||
message: "极简、插件化的现代桌面软件",
|
||||
detail: `Version: ${pkg.version}\nAuthor: muwoo`,
|
||||
});
|
||||
},
|
||||
},
|
||||
]);
|
||||
appIcon.on("click", () => {
|
||||
appIcon.popUpContextMenu(contextMenu);
|
||||
});
|
||||
appIcon.setContextMenu(contextMenu);
|
||||
|
||||
resolve(appIcon);
|
||||
});
|
||||
}
|
||||
|
||||
export default createTray;
|
||||
Reference in New Issue
Block a user