mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-09 18:27:36 +00:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import type { Socket } from "net";
|
|
import { app, Menu } from "electron";
|
|
|
|
let electronSocket: Socket;
|
|
|
|
export = (socket: Socket) => {
|
|
electronSocket = socket;
|
|
|
|
socket.on("dock-bounce", (type) => {
|
|
const id = app.dock.bounce(type);
|
|
electronSocket.emit("dock-bounce-completed", id);
|
|
});
|
|
|
|
socket.on("dock-cancelBounce", (id) => {
|
|
app.dock.cancelBounce(id);
|
|
});
|
|
|
|
socket.on("dock-downloadFinished", (filePath) => {
|
|
app.dock.downloadFinished(filePath);
|
|
});
|
|
|
|
socket.on("dock-setBadge", (text) => {
|
|
app.dock.setBadge(text);
|
|
});
|
|
|
|
socket.on("dock-getBadge", () => {
|
|
const text = app.dock.getBadge();
|
|
electronSocket.emit("dock-getBadge-completed", text);
|
|
});
|
|
|
|
socket.on("dock-hide", () => {
|
|
app.dock.hide();
|
|
});
|
|
|
|
socket.on("dock-show", () => {
|
|
app.dock.show();
|
|
});
|
|
|
|
socket.on("dock-isVisible", () => {
|
|
const isVisible = app.dock.isVisible();
|
|
electronSocket.emit("dock-isVisible-completed", isVisible);
|
|
});
|
|
|
|
socket.on("dock-setMenu", (menuItems) => {
|
|
let menu = null;
|
|
|
|
if (menuItems) {
|
|
menu = Menu.buildFromTemplate(menuItems);
|
|
|
|
addMenuItemClickConnector(menu.items, (id) => {
|
|
electronSocket.emit("dockMenuItemClicked", id);
|
|
});
|
|
}
|
|
|
|
app.dock.setMenu(menu);
|
|
});
|
|
|
|
// TODO: Menu (macOS) still to be implemented
|
|
socket.on("dock-getMenu", () => {
|
|
const menu = app.dock.getMenu();
|
|
electronSocket.emit("dock-getMenu-completed", menu);
|
|
});
|
|
|
|
socket.on("dock-setIcon", (image) => {
|
|
app.dock.setIcon(image);
|
|
});
|
|
|
|
function addMenuItemClickConnector(menuItems, callback) {
|
|
menuItems.forEach((item) => {
|
|
if (item.submenu && item.submenu.items.length > 0) {
|
|
addMenuItemClickConnector(item.submenu.items, callback);
|
|
}
|
|
|
|
if ("id" in item && item.id) {
|
|
item.click = () => {
|
|
callback(item.id);
|
|
};
|
|
}
|
|
});
|
|
}
|
|
};
|