2020-05-22 10:25:19 +02:00
|
|
|
import {app, Menu, shell, Tray} from "electron";
|
|
|
|
import Meta from "./Meta";
|
|
|
|
import Config from "./Config";
|
|
|
|
import Updater from "./Updater";
|
|
|
|
import MainWindow from "./windows/MainWindow";
|
2020-06-15 14:48:52 +02:00
|
|
|
import * as os from "os";
|
2020-05-22 10:25:19 +02:00
|
|
|
|
|
|
|
export default class Application {
|
|
|
|
private readonly devMode: boolean;
|
|
|
|
private readonly config: Config;
|
|
|
|
private readonly updater: Updater;
|
|
|
|
private readonly mainWindow: MainWindow;
|
|
|
|
private tray?: Tray;
|
|
|
|
|
|
|
|
constructor(devMode: boolean) {
|
|
|
|
this.devMode = devMode;
|
|
|
|
this.config = new Config();
|
2020-06-15 14:48:52 +02:00
|
|
|
this.updater = new Updater(this.config, this);
|
2020-05-22 10:25:19 +02:00
|
|
|
this.mainWindow = new MainWindow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async start(): Promise<void> {
|
|
|
|
console.log('Starting app');
|
|
|
|
|
|
|
|
this.setupSystemTray();
|
|
|
|
this.mainWindow.setup();
|
|
|
|
this.setupElectronTweaks();
|
|
|
|
|
|
|
|
// Check for updates
|
2020-06-15 14:48:52 +02:00
|
|
|
if (os.platform() === 'win32') {
|
|
|
|
this.updater.checkAndPromptForUpdates(this.mainWindow.getWindow()).then(() => {
|
|
|
|
console.log('Update check successful.');
|
|
|
|
}).catch(console.error);
|
|
|
|
}
|
2020-05-22 10:25:19 +02:00
|
|
|
|
|
|
|
console.log('App started');
|
|
|
|
}
|
|
|
|
|
|
|
|
public async stop(): Promise<void> {
|
|
|
|
this.mainWindow.teardown();
|
|
|
|
}
|
|
|
|
|
|
|
|
public getConfig(): Config {
|
|
|
|
return this.config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public getUpdater(): Updater {
|
|
|
|
return this.updater;
|
|
|
|
}
|
|
|
|
|
|
|
|
public isDevMode(): boolean {
|
|
|
|
return this.devMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
private setupElectronTweaks() {
|
|
|
|
// Open external links in default OS browser
|
|
|
|
app.on('web-contents-created', (e, contents) => {
|
|
|
|
if (contents.getType() === 'webview') {
|
|
|
|
console.log('Setting external links to open in default OS browser');
|
|
|
|
contents.on('new-window', (e, url) => {
|
|
|
|
e.preventDefault();
|
|
|
|
if (url.startsWith('https://')) {
|
|
|
|
shell.openExternal(url).catch(console.error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-05-26 10:20:14 +02:00
|
|
|
|
|
|
|
// Disable unused features
|
|
|
|
app.on('web-contents-created', (e, contents) => {
|
|
|
|
contents.on('will-attach-webview', (e, webPreferences, params) => {
|
|
|
|
delete webPreferences.preload;
|
|
|
|
webPreferences.nodeIntegration = false;
|
|
|
|
|
|
|
|
// TODO: Here would be a good place to filter accessed urls (params.src). Also consider 'will-navigate' event on contents.
|
|
|
|
});
|
|
|
|
});
|
2020-05-22 10:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private setupSystemTray() {
|
|
|
|
console.log('Loading system Tray');
|
|
|
|
this.tray = new Tray(Meta.ICON_PATH);
|
|
|
|
this.tray.setToolTip('Tabs');
|
|
|
|
this.tray.setContextMenu(Menu.buildFromTemplate([
|
|
|
|
{label: 'Tabs', enabled: false},
|
|
|
|
{label: 'Open Tabs', click: () => this.mainWindow.getWindow().show()},
|
|
|
|
{type: 'separator'},
|
|
|
|
{label: 'Quit', role: 'quit'}
|
|
|
|
]));
|
|
|
|
this.tray.on('click', () => this.mainWindow.toggle());
|
|
|
|
}
|
|
|
|
}
|