partey_workadventure/desktop/src/ipc.ts

71 lines
1.7 KiB
TypeScript
Raw Normal View History

2022-02-17 19:48:08 +01:00
import { ipcMain } from "electron";
import { createAndShowNotification } from "./notification";
2022-02-18 01:51:35 +01:00
import settings from "./settings";
import { getAppView, getWindow } from "./window";
2022-02-17 19:48:08 +01:00
export function emitMutedKeyPress() {
const mainWindow = getWindow();
if (!mainWindow) {
throw new Error("Main window not found");
}
2022-02-18 01:51:35 +01:00
mainWindow.webContents.send("app:on-muted-key-press");
2022-02-17 19:48:08 +01:00
}
export default () => {
2022-02-18 01:51:35 +01:00
ipcMain.on("app:notify", (event, txt) => {
2022-02-17 19:48:08 +01:00
createAndShowNotification({ body: txt });
});
2022-02-18 01:51:35 +01:00
ipcMain.handle("sidebar:getServers", () => {
// TODO: remove
if (!settings.get("servers")) {
settings.set("servers", [
{
_id: "1",
name: "WA Demo",
url: "https://play.staging.workadventu.re/@/tcm/workadventure/wa-village",
},
{
_id: "2",
name: "My Server",
url: "http://play.workadventure.localhost/",
},
]);
}
return settings.get("servers", []);
});
ipcMain.handle("sidebar:selectServer", (event, serverId: string) => {
const appView = getAppView();
if (!appView) {
throw new Error("App view not found");
}
const servers = settings.get("servers", []);
const selectedServer = servers.find((s) => s._id === serverId);
if (!selectedServer) {
return new Error("Server not found");
}
appView.webContents.loadURL(selectedServer.url);
return true;
});
ipcMain.handle(
"sidebar:addServer",
(event, serverName: string, serverUrl: string) => {
const servers = settings.get("servers", []);
servers.push({
_id: `${servers.length + 1}`,
name: serverName,
url: serverUrl,
});
settings.set("servers", servers);
return true;
}
);
2022-02-17 19:48:08 +01:00
};