armcord/src/main.ts

106 lines
3 KiB
TypeScript
Raw Normal View History

2021-12-24 21:56:49 +00:00
// Modules to control application life and create native browser window
import { app, BrowserWindow, ipcMain, shell, desktopCapturer } from "electron";
2021-12-24 21:56:49 +00:00
import * as path from "path";
2021-12-26 19:15:18 +00:00
import "v8-compile-cache";
import * as storage from "electron-json-storage";
import { setup } from "./utils";
import "./extensions/plugin";
import "./tray";
2021-12-24 21:56:49 +00:00
var isSetup = null;
2021-12-26 19:15:18 +00:00
var contentPath: string = "null";
var frame: boolean;
export var mainWindow: BrowserWindow;
2021-12-26 19:15:18 +00:00
storage.keys(function (error, keys) {
if (error) throw error;
for (var key of keys) {
console.log("There is a key called: " + key);
}
});
storage.has("firstRun", function (error, hasKey) {
2021-12-24 21:56:49 +00:00
if (error) throw error;
if (!hasKey) {
2021-12-26 19:15:18 +00:00
console.log("First run of the ArmCord. Starting setup.");
2021-12-24 21:56:49 +00:00
isSetup = true;
setup();
2021-12-26 19:15:18 +00:00
contentPath = __dirname + "/content/setup.html";
2021-12-24 21:56:49 +00:00
} else {
2021-12-26 19:15:18 +00:00
console.log("ArmCord has been run before. Skipping setup.");
2021-12-24 21:56:49 +00:00
isSetup = false;
2021-12-26 19:15:18 +00:00
contentPath = __dirname + "/content/index.html";
2021-12-24 21:56:49 +00:00
}
});
2021-12-26 19:15:18 +00:00
storage.get("settings", function (error, data: any) {
if (error) throw error;
console.log(data);
frame = data.customTitlebar;
console.log(frame);
});
function createWindow() {
mainWindow = new BrowserWindow({
2021-12-24 21:56:49 +00:00
width: 300,
height: 350,
2021-12-24 21:56:49 +00:00
title: "ArmCord",
frame: frame,
webPreferences: {
2021-12-26 19:15:18 +00:00
preload: path.join(__dirname, "preload/preload.js"),
},
});
2021-12-24 21:56:49 +00:00
ipcMain.on("get-app-path", (event, arg) => {
event.reply("app-path", app.getAppPath());
});
ipcMain.on("open-external-link", (event, href: string) => {
shell.openExternal(href);
});
ipcMain.on("win-maximize", (event, arg) => {
mainWindow.maximize();
});
ipcMain.on("win-isMaximized", (event, arg) => {
event.returnValue = mainWindow.isMaximized();
});
ipcMain.on("win-minimize", (event, arg) => {
mainWindow.minimize();
});
ipcMain.on("win-unmaximize", (event, arg) => {
mainWindow.unmaximize();
});
2021-12-24 21:56:49 +00:00
ipcMain.on("win-show", (event, arg) => {
mainWindow.show();
});
ipcMain.on("win-hide", (event, arg) => {
mainWindow.hide();
});
ipcMain.on("get-app-version", (event) => {
event.returnValue = process.env.npm_package_version;
2021-12-26 19:15:18 +00:00
});
2021-12-24 21:56:49 +00:00
ipcMain.on("splashEnd", (event, arg) => {
mainWindow.setSize(800, 600);
});
ipcMain.on("channel", (event) => {
2021-12-26 19:15:18 +00:00
event.returnValue = storage.getSync("channel");
});
ipcMain.handle("DESKTOP_CAPTURER_GET_SOURCES", (event, opts) =>
desktopCapturer.getSources(opts)
);
mainWindow.webContents.userAgent =
"Mozilla/5.0 (X11; Linux x86) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"; //fake useragent
2021-12-26 19:15:18 +00:00
mainWindow.webContents.on("new-window", function (e, url) {
e.preventDefault();
shell.openExternal(url);
});
mainWindow.loadFile(contentPath);
2021-12-24 21:56:49 +00:00
}
app.whenReady().then(() => {
2021-12-26 19:15:18 +00:00
createWindow();
2021-12-24 21:56:49 +00:00
2021-12-26 19:15:18 +00:00
app.on("activate", function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow();
});
});
2021-12-24 21:56:49 +00:00
2021-12-26 19:15:18 +00:00
app.on("window-all-closed", function () {
if (process.platform !== "darwin") app.quit();
});