mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
155 lines
3.9 KiB
TypeScript
155 lines
3.9 KiB
TypeScript
'use strict';
|
|
|
|
import {
|
|
app,
|
|
BrowserWindow,
|
|
BrowserWindowConstructorOptions,
|
|
protocol,
|
|
} from 'electron';
|
|
import Store from 'electron-store';
|
|
import { autoUpdater } from 'electron-updater';
|
|
import path from 'path';
|
|
import { createProtocol } from 'vue-cli-plugin-electron-builder/lib';
|
|
import { getMainWindowSize } from './main/helpers';
|
|
import registerAppLifecycleListeners from './main/registerAppLifecycleListeners';
|
|
import registerAutoUpdaterListeners from './main/registerAutoUpdaterListeners';
|
|
import registerIpcMainActionListeners from './main/registerIpcMainActionListeners';
|
|
import registerIpcMainMessageListeners from './main/registerIpcMainMessageListeners';
|
|
import registerProcessListeners from './main/registerProcessListeners';
|
|
import { IPC_CHANNELS } from './src/messages';
|
|
|
|
export class Main {
|
|
title: string = 'Frappe Books';
|
|
icon: string;
|
|
|
|
winURL: string = '';
|
|
isWebpackUrl: boolean = false;
|
|
checkedForUpdate = false;
|
|
mainWindow: BrowserWindow | null = null;
|
|
|
|
constructor() {
|
|
this.icon = this.isDevelopment
|
|
? path.resolve('./build/icon.png')
|
|
: path.join(__dirname, 'icons', '512x512.png');
|
|
|
|
protocol.registerSchemesAsPrivileged([
|
|
{ scheme: 'app', privileges: { secure: true, standard: true } },
|
|
]);
|
|
|
|
if (this.isDevelopment) {
|
|
autoUpdater.logger = console;
|
|
}
|
|
|
|
Store.initRenderer();
|
|
|
|
this.registerListeners();
|
|
if (this.isMac && this.isDevelopment) {
|
|
app.dock.setIcon(this.icon);
|
|
}
|
|
}
|
|
|
|
get isDevelopment() {
|
|
return process.env.NODE_ENV !== 'production';
|
|
}
|
|
|
|
get isMac() {
|
|
return process.platform === 'darwin';
|
|
}
|
|
|
|
get isLinux() {
|
|
return process.platform === 'linux';
|
|
}
|
|
|
|
registerListeners() {
|
|
registerIpcMainMessageListeners(this);
|
|
registerIpcMainActionListeners(this);
|
|
registerAutoUpdaterListeners(this);
|
|
registerAppLifecycleListeners(this);
|
|
registerProcessListeners(this);
|
|
}
|
|
|
|
getOptions(): BrowserWindowConstructorOptions {
|
|
const { width, height } = getMainWindowSize();
|
|
const options: BrowserWindowConstructorOptions = {
|
|
vibrancy: 'sidebar',
|
|
transparent: this.isMac,
|
|
backgroundColor: '#80FFFFFF',
|
|
width,
|
|
height,
|
|
title: this.title,
|
|
webPreferences: {
|
|
contextIsolation: false, // TODO: Switch this off
|
|
nodeIntegration: process.env
|
|
.ELECTRON_NODE_INTEGRATION as unknown as boolean,
|
|
},
|
|
frame: this.isLinux,
|
|
resizable: true,
|
|
};
|
|
if (this.isDevelopment || this.isLinux) {
|
|
Object.assign(options, { icon: this.icon });
|
|
}
|
|
|
|
if (this.isLinux) {
|
|
Object.assign(options, {
|
|
icon: path.join(__dirname, '/icons/512x512.png'),
|
|
});
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
createWindow() {
|
|
const options = this.getOptions();
|
|
this.mainWindow = new BrowserWindow(options);
|
|
|
|
this.isWebpackUrl = !!process.env.WEBPACK_DEV_SERVER_URL;
|
|
if (this.isWebpackUrl) {
|
|
this.loadWebpackDevServerURL();
|
|
} else {
|
|
this.loadAppUrl();
|
|
}
|
|
|
|
this.setMainWindowListeners();
|
|
}
|
|
|
|
loadWebpackDevServerURL() {
|
|
// Load the url of the dev server if in development mode
|
|
this.winURL = process.env.WEBPACK_DEV_SERVER_URL as string;
|
|
this.mainWindow!.loadURL(this.winURL);
|
|
|
|
if (!process.env.IS_TEST) {
|
|
this.mainWindow!.webContents.openDevTools();
|
|
}
|
|
}
|
|
|
|
loadAppUrl() {
|
|
createProtocol('app');
|
|
// Load the index.html when not in development
|
|
this.winURL = 'app://./index.html';
|
|
this.mainWindow!.loadURL(this.winURL);
|
|
}
|
|
|
|
setMainWindowListeners() {
|
|
if (this.mainWindow === null) {
|
|
return;
|
|
}
|
|
|
|
this.mainWindow.on('closed', () => {
|
|
this.mainWindow = null;
|
|
});
|
|
|
|
this.mainWindow.webContents.on('did-finish-load', () => {
|
|
if (this.mainWindow === null) {
|
|
return;
|
|
}
|
|
|
|
this.mainWindow.webContents.send(IPC_CHANNELS.STORE_ON_WINDOW, {
|
|
appVersion: app.getVersion(),
|
|
isDevelopment: this.isDevelopment,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new Main();
|