mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
151 lines
3.7 KiB
TypeScript
151 lines
3.7 KiB
TypeScript
/* eslint global-require: off, no-console: off, promise/always-return: off */
|
|
|
|
/**
|
|
* This module executes inside of electron's main process. You can start
|
|
* electron renderer process from here and communicate with the other processes
|
|
* through IPC.
|
|
*
|
|
* When running `npm run build` or `npm run build:main`, this file is compiled to
|
|
* `./src/main.js` using webpack. This gives us some performance wins.
|
|
*/
|
|
import path from 'path';
|
|
import { app, BrowserWindow, ipcMain, shell } from 'electron';
|
|
import { autoUpdater } from 'electron-updater';
|
|
import log from 'electron-log';
|
|
import { resolveHtmlPath } from './util';
|
|
import './ipcs/custom-ipcs';
|
|
import { UtilsService } from './services/utils.service';
|
|
|
|
export default class AppUpdater {
|
|
constructor() {
|
|
log.transports.file.level = 'info';
|
|
autoUpdater.logger = log;
|
|
//autoUpdater.checkForUpdatesAndNotify();
|
|
}
|
|
}
|
|
|
|
log.catchErrors();
|
|
|
|
let mainWindow: BrowserWindow = null;
|
|
|
|
export function getMainWindow(): BrowserWindow{
|
|
return mainWindow;
|
|
}
|
|
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
const sourceMapSupport = require('source-map-support');
|
|
sourceMapSupport.install();
|
|
}
|
|
|
|
const isDebug = process.env.NODE_ENV === 'development' || process.env.DEBUG_PROD === 'true';
|
|
|
|
if (isDebug) {
|
|
require('electron-debug')();
|
|
}
|
|
|
|
const installExtensions = async () => {
|
|
const installer = require('electron-devtools-installer');
|
|
const forceDownload = !!process.env.UPGRADE_EXTENSIONS;
|
|
const extensions = ['REACT_DEVELOPER_TOOLS'];
|
|
|
|
return installer
|
|
.default(
|
|
extensions.map((name) => installer[name]),
|
|
forceDownload
|
|
)
|
|
.catch(console.log);
|
|
};
|
|
|
|
const createWindow = async () => {
|
|
if (isDebug) {
|
|
await installExtensions();
|
|
}
|
|
|
|
const RESOURCES_PATH = app.isPackaged ? path.join(process.resourcesPath, 'assets') : path.join(__dirname, '../../assets');
|
|
|
|
UtilsService.getInstance().setAssetsPath(RESOURCES_PATH);
|
|
|
|
const getAssetPath = (...paths: string[]): string => {
|
|
return path.join(RESOURCES_PATH, ...paths);
|
|
};
|
|
|
|
mainWindow = new BrowserWindow({
|
|
show: false,
|
|
width: 1080,
|
|
height: 720,
|
|
minWidth: 900,
|
|
minHeight: 500,
|
|
frame: false,
|
|
titleBarOverlay: false,
|
|
icon: getAssetPath('icon.png'),
|
|
webPreferences: {
|
|
preload: app.isPackaged
|
|
? path.join(__dirname, 'preload.js')
|
|
: path.join(__dirname, '../../.erb/dll/preload.js'),
|
|
},
|
|
});
|
|
|
|
UtilsService.getInstance().setMainWindow(mainWindow);
|
|
|
|
|
|
|
|
mainWindow.loadURL(resolveHtmlPath('index.html'));
|
|
|
|
mainWindow.on('ready-to-show', () => {
|
|
if (!mainWindow) {
|
|
throw new Error('"mainWindow" is not defined');
|
|
}
|
|
if (process.env.START_MINIMIZED) {
|
|
mainWindow.minimize();
|
|
} else {
|
|
mainWindow.show();
|
|
}
|
|
});
|
|
|
|
mainWindow.on('closed', () => {
|
|
mainWindow = null;
|
|
});
|
|
|
|
mainWindow.removeMenu();
|
|
mainWindow.setMenu(null);
|
|
|
|
// Open urls in the user's browser
|
|
mainWindow.webContents.setWindowOpenHandler((edata) => {
|
|
shell.openExternal(edata.url);
|
|
return { action: 'deny' };
|
|
});
|
|
|
|
// Remove this if your app does not use auto updates
|
|
// eslint-disable-next-line
|
|
new AppUpdater();
|
|
};
|
|
|
|
/**
|
|
* Add event listeners...
|
|
*/
|
|
|
|
app.on('window-all-closed', () => {
|
|
// Respect the OSX convention of having the application in memory even
|
|
// after all windows have been closed
|
|
if (process.platform !== 'darwin') {
|
|
app.quit();
|
|
}
|
|
});
|
|
|
|
app
|
|
.whenReady()
|
|
.then(() => {
|
|
createWindow();
|
|
app.on('activate', () => {
|
|
// On macOS it's common to re-create a window in the app when the
|
|
// dock icon is clicked and there are no other windows open.
|
|
if (mainWindow === null) createWindow();
|
|
});
|
|
})
|
|
.catch(console.log);
|
|
|
|
ipcMain.on('new-window', (event, url: string) => {
|
|
shell.openExternal(url);
|
|
});
|