import { dialog, BrowserWindow, ShareMenu } from "electron"; import { getValue, setValue } from "./store.js"; import { ElectronBlocker } from "@ghostery/adblocker-electron"; import prompt from "electron-prompt"; import { getScreenWidth, getScreenHeight } from "./dimensions.js"; import { setUserAgent } from "./utils.js"; import useragents from "../useragents.json" with { type: "json" }; const commonPreferencesSubmenu = [ { label: "Open Websites in New Windows", type: "radio", click: () => { setValue("websites-in-new-window", "true"); dialog.showMessageBoxSync({ type: "info", title: "Websites in New Windows", message: "Websites which are targeted to open in new tabs will now open in new windows.", buttons: ["OK"], }); }, checked: getValue("websites-in-new-window") === "true", }, { label: "Open Websites in the Same Window", type: "radio", click: () => { setValue("websites-in-new-window", "false"); dialog.showMessageBoxSync({ type: "info", title: "Websites in New Windows", message: "Websites which are targeted to open in new tabs will now open in the same window.", buttons: ["OK"], }); }, checked: getValue("websites-in-new-window") === "false", }, { type: "separator" }, { label: "Custom Main Window Size", submenu: [ { label: "Default", type: "radio", click: () => { setValue("customWindowSize", false); setValue("windowWidth", 0.71); setValue("windowHeight", 0.74); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to the default size.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 0.71 && getValue("windowHeight") === 0.74 && getValue("customWindowSize") === false, }, { label: "60%", type: "radio", click: () => { setValue("customWindowSize", false); setValue("windowWidth", 0.6); setValue("windowHeight", 0.6); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to 60% of your screen size.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 0.6 && getValue("windowHeight") === 0.6 && getValue("customWindowSize") === false, }, { label: "70%", type: "radio", click: () => { setValue("windowWidth", 0.7); setValue("windowHeight", 0.7); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to 70% of your screen size.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 0.7 && getValue("windowHeight") === 0.7 && getValue("customWindowSize") === false, }, { label: "80%", type: "radio", click: () => { setValue("customWindowSize", false); setValue("windowWidth", 0.8); setValue("windowHeight", 0.8); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to 80% of your screen size.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 0.8 && getValue("windowHeight") === 0.8 && getValue("customWindowSize") === false, }, { label: "90%", type: "radio", click: () => { setValue("customWindowSize", false); setValue("windowWidth", 0.9); setValue("windowHeight", 0.9); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to 90% of your screen size.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 0.9 && getValue("windowHeight") === 0.9 && getValue("customWindowSize") === false, }, { label: "100% (Maximize)", type: "radio", click: () => { setValue("customWindowSize", false); setValue("windowWidth", 1); setValue("windowHeight", 1); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: "You have set the main window size to 100% of your screen size, which will maximise the window.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("windowWidth") === 1 && getValue("windowHeight") === 1 && getValue("customWindowSize") === false, }, { label: "Custom", type: "radio", click: () => { prompt({ title: "Custom Main Window Size", label: "Enter size in percentage (without % sign)", value: "10", inputAttrs: { type: "number", required: true, min: 10, max: 100, }, type: "input", }) .then((r) => { if (r === null) { return; } const size = r / 100; setValue("customWindowSize", true); setValue("windowWidth", size); setValue("windowHeight", size); dialog.showMessageBoxSync({ type: "info", title: "Custom Main Window Size", message: `You have set the main window size to ${r}% of your screen size.\n\nPlease restart the app to apply the changes.`, buttons: ["OK"], }); }) .catch(console.error); }, checked: getValue("customWindowSize") === true, }, ], }, { label: "Custom Home Page", submenu: [ { label: "Home (Default)", type: "radio", click: () => { setValue("custompage", "home"); dialog.showMessageBoxSync({ type: "info", title: "Custom Home Page", message: "You have set the home page to the default home page. Please restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("custompage") === "home", }, { label: "Create", type: "radio", click: () => { setValue("custompage", "create"); dialog.showMessageBoxSync({ type: "info", title: "Custom Home Page", message: 'You have set the home page to the "Create" page. Please restart the app to apply the changes.', buttons: ["OK"], }); }, checked: getValue("custompage") === "create", }, { label: "My Content", type: "radio", click: () => { setValue("custompage", "mycontent"); dialog.showMessageBoxSync({ type: "info", title: "Custom Home Page", message: 'You have set the home page to the "My Content" page. Please restart the app to apply the changes.', buttons: ["OK"], }); }, checked: getValue("custompage") === "mycontent", }, { label: "Apps", type: "radio", click: () => { setValue("custompage", "apps"); dialog.showMessageBoxSync({ type: "info", title: "Custom Home Page", message: 'You have set the home page to the "Apps" page. Please restart the app to apply the changes.', buttons: ["OK"], }); }, checked: getValue("custompage") === "apps", }, ], }, { type: "separator" }, { label: "Enable Auto Updates", type: "checkbox", click: () => { if (getValue("autoupdater") === "true") { setValue("autoupdater", "false"); dialog.showMessageBoxSync({ type: "info", title: "Auto Updates", message: "Auto updates have been disabled.", buttons: ["OK"], }); return; } else if (getValue("autoupdater") === "false" || getValue("autoupdater") === undefined) { setValue("autoupdater", "true"); dialog.showMessageBoxSync({ type: "info", title: "Auto Updates", message: "Auto updates have been enabled.", buttons: ["OK"], }); return; } }, checked: getValue("autoupdater") === "true", }, { label: "Enable Dynamic Icons", type: "checkbox", click: () => { if (getValue("dynamicicons") === "true") { setValue("dynamicicons", "false"); dialog.showMessageBoxSync({ type: "info", title: "Dynamic Icons", message: "Dynamic icons have been disabled.", buttons: ["OK"], }); return; } else if (getValue("dynamicicons") === "false" || getValue("dynamicicons") === undefined) { setValue("dynamicicons", "true"); dialog.showMessageBoxSync({ type: "info", title: "Dynamic Icons", message: "Dynamic icons have been enabled.", buttons: ["OK"], }); return; } }, checked: getValue("dynamicicons") === "true", }, { type: "separator" }, { label: "Block Ads and Trackers", type: "checkbox", click: () => { if (getValue("blockadsandtrackers") === "true") { setValue("blockadsandtrackers", "false"); dialog.showMessageBoxSync({ type: "info", title: "Block Ads and Trackers", message: "Ads and trackers will no longer be blocked.", buttons: ["OK"], }); ElectronBlocker.fromPrebuiltAdsAndTracking(fetch) .then((blocker) => { BrowserWindow.getAllWindows().forEach((window) => { blocker.disableBlockingInSession(window.webContents.session); }); }) .catch((error) => { if (error.message !== "Trying to disable blocking which was not enabled") { console.error(error); } }); return; } if ( getValue("blockadsandtrackers") === "false" || getValue("blockadsandtrackers") === undefined ) { setValue("blockadsandtrackers", "true"); ElectronBlocker.fromPrebuiltAdsAndTracking(fetch).then((blocker) => { BrowserWindow.getAllWindows().forEach((window) => { blocker.enableBlockingInSession(window.webContents.session); }); dialog.showMessageBoxSync({ type: "info", title: "Block Ads and Trackers", message: "Ads and trackers will now be blocked.", buttons: ["OK"], }); }); return; } }, checked: getValue("blockadsandtrackers") === "true", }, { type: "separator" }, { label: "Windows User-Agent String", type: "radio", click: () => { setUserAgent(useragents.Windows); }, checked: getValue("useragentstring") === useragents.Windows, }, { label: "macOS User-Agent String", type: "radio", click: () => { setUserAgent(useragents.macOS); }, checked: getValue("useragentstring") === useragents.macOS, }, { label: "Linux User-Agent String", type: "radio", click: () => { setUserAgent(useragents.Linux); dialog.showMessageBoxSync({ type: "info", title: "User agent switcher", message: "You have switched to Linux Useragent.\n\nPlease restart the app to apply the changes.", buttons: ["OK"], }); }, checked: getValue("useragentstring") === useragents.Linux, }, { type: "separator" }, ...(process.platform === "win32" || process.platform === "linux" ? [ { role: "quit", accelerator: "Ctrl+Q", }, ] : []), ]; const menulayout = [ { label: "MS-365-Electron", submenu: [ ...(process.platform === "darwin" ? [ { type: "separator" }, { label: "Preferences", submenu: commonPreferencesSubmenu, }, { role: "services" }, { type: "separator" }, { label: "Hide MS-365-Electron", role: "hide" }, { role: "hideOthers" }, { role: "unhide" }, { type: "separator" }, { label: "Quit MS-365-Electron", role: "quit" }, ] : [ { type: "separator" }, ...commonPreferencesSubmenu, ]), ], }, { label: "File", submenu: [ { label: "Close Window", accelerator: "CmdOrCtrl+W", click: () => { try { BrowserWindow.getFocusedWindow().close(); } catch { return; } }, }, { label: "Close All Windows", accelerator: "CmdOrCtrl+Shift+W", click: () => { BrowserWindow.getAllWindows().forEach((window) => { window.close(); }); }, }, { type: "separator" }, ...(process.platform === "darwin" ? [ { label: "Share...", click: () => { let sharemenu = new ShareMenu({ urls: [BrowserWindow.getFocusedWindow().webContents.getURL()], texts: [BrowserWindow.getFocusedWindow().getTitle()], }); sharemenu.popup(); }, }, ] : []), ], }, { label: "Edit", submenu: [ { role: "undo" }, { role: "redo" }, { type: "separator" }, { role: "cut" }, { role: "copy" }, { role: "paste" }, ...(process.platform === "darwin" ? [ { role: "pasteAndMatchStyle" }, { role: "delete" }, { role: "selectAll" }, { type: "separator" }, { label: "Speech", submenu: [{ role: "startSpeaking" }, { role: "stopSpeaking" }], }, ] : [{ role: "delete" }, { type: "separator" }, { role: "selectAll" }]), ], }, { label: "Navigation", submenu: [ { label: "Back", click: () => { BrowserWindow.getFocusedWindow().webContents.goBack(); }, accelerator: "Alt+Left", }, { label: "Forward", click: () => { BrowserWindow.getFocusedWindow().webContents.goForward(); }, accelerator: "Alt+Right", }, { label: "Reload", click: () => { BrowserWindow.getFocusedWindow().webContents.reload(); }, accelerator: "CmdOrCtrl+R", }, { label: "Home", click: () => { BrowserWindow.getFocusedWindow().loadURL( `https://microsoft365.com/${getValue("custompage")}/${getValue("enterpriseOrNormal")}` ); }, }, ], }, { label: "View", submenu: [ { role: "reload" }, { role: "forceReload" }, { type: "separator" }, { role: "resetZoom" }, { role: "zoomIn", accelerator: process.platform === "darwin" ? "Control+=" : "Control+=", }, { role: "zoomOut" }, { type: "separator" }, { role: "togglefullscreen" }, ], }, { label: "Apps", submenu: [ { label: "Word", click: () => { if (getValue("websites-in-new-window") === "true") { let wordwindow = new BrowserWindow({ width: Math.round(getScreenWidth() * (getValue("windowWidth") - 0.07)), height: Math.round(getScreenHeight() * (getValue("windowHeight") - 0.07)), webPreferences: { nodeIntegration: false, contextIsolation: true, partition: "persist:work", }, }); wordwindow.loadURL("https://microsoft365.com/launch/word?auth=2"); } else { BrowserWindow.getFocusedWindow().loadURL( "https://microsoft365.com/launch/word?auth=2" ); } }, }, { label: "Excel", click: () => { if (getValue("websites-in-new-window") === "true") { let excelwindow = new BrowserWindow({ width: Math.round(getScreenWidth() * (getValue("windowWidth") - 0.07)), height: Math.round(getScreenHeight() * (getValue("windowHeight") - 0.07)), webPreferences: { nodeIntegration: false, contextIsolation: true, partition: "persist:work", }, }); excelwindow.loadURL("https://microsoft365.com/launch/excel?auth=2"); } else { BrowserWindow.getFocusedWindow().loadURL( "https://microsoft365.com/launch/excel?auth=2" ); } }, }, { label: "PowerPoint", click: () => { if (getValue("websites-in-new-window") === "true") { let powerpointwindow = new BrowserWindow({ width: Math.round(getScreenWidth() * (getValue("windowWidth") - 0.07)), height: Math.round(getScreenHeight() * (getValue("windowHeight") - 0.07)), webPreferences: { nodeIntegration: false, contextIsolation: true, partition: "persist:work", }, }); powerpointwindow.loadURL("https://microsoft365.com/launch/powerpoint?auth=2"); } else { BrowserWindow.getFocusedWindow().loadURL( "https://microsoft365.com/launch/powerpoint?auth=2" ); } }, }, ], }, { label: "Window", submenu: [ { role: "minimize" }, { role: "zoom" }, ...(process.platform === "darwin" ? [{ type: "separator" }, { role: "front" }, { type: "separator" }] : [{ role: "close" }]), ...(process.platform === "win32" || process.platform === "linux" ? [ { type: "separator" }, { label: "Show Menu Bar", type: "radio", click: () => { setValue("autohide-menubar", "false"); dialog.showMessageBoxSync({ type: "info", title: "Menu Bar Settings", message: "Menu will be visible now. Please restart the app for changes to take effect.", buttons: ["OK"], }); }, checked: getValue("autohide-menubar") === "false", }, { label: "Hide Menu Bar (ALT to show)", type: "radio", click: () => { setValue("autohide-menubar", "true"); dialog.showMessageBoxSync({ type: "info", title: "Menu Bar Settings", message: "Menu bar will be automatically hidden now. Please restart the app for changes to take effect.", buttons: ["OK"], }); }, checked: getValue("autohide-menubar") === "true", }, ] : []), ], }, ]; export default menulayout;