armcord/src/window.ts

171 lines
6.4 KiB
TypeScript
Raw Normal View History

2022-01-30 19:48:32 +00:00
// To allow seamless switching between custom titlebar and native os titlebar,
// I had to add most of the window creation code here to split both into seperete functions
// WHY? Because I can't use the same code for both due to annoying bug with value `frame` not responding to variables
// I'm sorry for this mess but I'm not sure how to fix it.
2022-06-14 15:02:37 +00:00
import {BrowserWindow, shell, app, dialog} from "electron";
2022-01-30 19:48:32 +00:00
import path from "path";
2022-06-12 18:59:59 +00:00
import {checkIfConfigIsBroken, firstRun, getConfig, contentPath, isSetup, setConfig, setLang} from "./utils";
2022-03-04 17:53:18 +00:00
import {registerIpc} from "./ipc";
import startServer from "./socket";
2022-02-26 21:26:16 +00:00
import contextMenu from "electron-context-menu";
2022-05-14 17:55:06 +00:00
import os from "os";
2022-04-21 16:20:58 +00:00
export var icon: string;
2022-01-30 19:48:32 +00:00
export let mainWindow: BrowserWindow;
export let inviteWindow: BrowserWindow;
var osType = os.type()
2022-05-14 17:55:06 +00:00
2022-02-26 21:26:16 +00:00
contextMenu({
2022-03-04 17:53:18 +00:00
showSaveImageAs: true,
showCopyImageAddress: true,
showSearchWithGoogle: true
2022-02-26 21:26:16 +00:00
});
2022-01-30 19:48:32 +00:00
2022-04-19 17:59:52 +00:00
async function doAfterDefiningTheWindow() {
var ignoreProtocolWarning = await getConfig("ignoreProtocolWarning");
2022-04-18 10:06:17 +00:00
checkIfConfigIsBroken();
2022-03-04 17:53:18 +00:00
registerIpc();
// A little sloppy but it works :p
if (osType == 'Windows_NT') {
osType = "Windows " + os.release().split('.')[0] + " (" + os.release() + ")";
}
mainWindow.webContents.userAgent = `Mozilla/5.0 (X11; ${osType} ${os.arch()}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36`; //fake useragent for screenshare to work
2022-03-04 17:53:18 +00:00
mainWindow.webContents.setWindowOpenHandler(({url}) => {
if (url.startsWith("https:" || url.startsWith("http:") || url.startsWith("mailto:"))) {
shell.openExternal(url);
} else {
if (ignoreProtocolWarning) {
shell.openExternal(url);
} else {
const options = {
type: "question",
buttons: ["Yes, please", "No, I don't"],
defaultId: 1,
title: url,
message: `Do you want to open ${url}?`,
detail: "This url was detected to not use normal browser protocols. It could mean that this url leads to a local program on your computer. Please check if you recognise it, before proceeding!",
checkboxLabel: "Remember my answer and ignore this warning for future sessions",
checkboxChecked: false
};
dialog.showMessageBox(mainWindow, options).then(({response, checkboxChecked}) => {
console.log(response, checkboxChecked);
if (checkboxChecked) {
if (response == 0) {
setConfig("ignoreProtocolWarning", true);
} else {
setConfig("ignoreProtocolWarning", false);
}
}
if (response == 0) {
shell.openExternal(url);
} else {
return;
}
});
}
}
2022-03-04 17:53:18 +00:00
return {action: "deny"};
});
mainWindow.webContents.session.webRequest.onBeforeRequest((details, callback) => {
if (/api\/v\d\/science$/g.test(details.url)) return callback({cancel: true});
return callback({});
});
mainWindow.on("close", async (e) => {
2022-04-18 10:25:10 +00:00
if (await getConfig("minimizeToTray")) {
2022-03-04 17:53:18 +00:00
e.preventDefault();
mainWindow.hide();
2022-04-18 10:25:10 +00:00
} else if (!(await getConfig("minimizeToTray"))) {
2022-03-04 17:53:18 +00:00
e.preventDefault();
app.quit();
}
});
2022-06-14 14:30:18 +00:00
mainWindow.on('maximize',() =>{
mainWindow.webContents.executeJavaScript(`document.body.setAttribute("isMaximized", "");`)
})
mainWindow.on('unmaximize',() =>{
mainWindow.webContents.executeJavaScript(`document.body.removeAttribute("isMaximized");`)
})
2022-03-04 17:53:18 +00:00
console.log(contentPath);
if ((await getConfig("inviteWebsocket")) == true) {
startServer();
2022-04-19 17:59:52 +00:00
}
2022-03-04 17:53:18 +00:00
try {
mainWindow.loadFile(contentPath);
if (isSetup) {
2022-06-12 18:59:59 +00:00
await setLang(Intl.DateTimeFormat().resolvedOptions().locale)
mainWindow.setSize(390, 470);
}
2022-03-04 17:53:18 +00:00
} catch (e) {
console.log(
"Major error detected while starting up. User is most likely on Windows platform. Fallback to alternative startup."
);
console.log(process.platform);
if (process.platform === "win32") {
if (firstRun) {
2022-06-12 19:03:58 +00:00
await setLang(Intl.DateTimeFormat().resolvedOptions().locale)
mainWindow.setSize(390, 470);
2022-03-04 17:53:18 +00:00
mainWindow.loadURL(`file://${__dirname}/content/setup.html`);
} else {
mainWindow.loadURL(`file://${__dirname}/content/splash.html`);
}
} else {
if (firstRun) {
2022-06-12 18:59:59 +00:00
await setLang(Intl.DateTimeFormat().resolvedOptions().locale)
mainWindow.setSize(390, 470);
2022-03-04 17:53:18 +00:00
mainWindow.loadURL(`file://${__dirname}/ts-out/content/setup.html`);
} else {
mainWindow.loadURL(`file://${__dirname}/ts-out/content/splash.html`);
}
}
2022-01-30 19:48:32 +00:00
}
}
export function createCustomWindow() {
2022-03-04 17:53:18 +00:00
mainWindow = new BrowserWindow({
width: 300,
height: 350,
2022-03-04 17:53:18 +00:00
title: "ArmCord",
darkTheme: true,
2022-06-10 18:46:30 +00:00
icon: path.join(__dirname, "../", "/assets/ac_icon_transparent.png"),
2022-03-04 17:53:18 +00:00
frame: false,
autoHideMenuBar: true,
webPreferences: {
preload: path.join(__dirname, "preload/preload.js"),
spellcheck: true
}
});
doAfterDefiningTheWindow();
2022-01-30 19:48:32 +00:00
}
export function createNativeWindow() {
2022-03-04 17:53:18 +00:00
mainWindow = new BrowserWindow({
width: 300,
height: 350,
title: "ArmCord",
darkTheme: true,
2022-06-10 18:46:30 +00:00
icon: path.join(__dirname, "../", "/assets/ac_icon_transparent.png"),
2022-03-04 17:53:18 +00:00
frame: true,
autoHideMenuBar: true,
webPreferences: {
preload: path.join(__dirname, "preload/preload.js"),
spellcheck: true
}
});
doAfterDefiningTheWindow();
2022-02-26 21:26:16 +00:00
}
export function createInviteWindow() {
inviteWindow = new BrowserWindow({
width: 800,
height: 600,
title: "ArmCord Invite Manager",
darkTheme: true,
2022-06-10 18:46:30 +00:00
icon: path.join(__dirname, "../", "/assets/ac_icon_transparent.png"),
frame: true,
autoHideMenuBar: true,
webPreferences: {
spellcheck: true
}
});
inviteWindow.hide();
}