2022-05-20 20:23:29 +08:00

48 lines
1.1 KiB
JavaScript

import { app, BrowserWindow, Menu } from 'electron';
import log from 'electron-log';
import CONFIG from './const';
import { checkUpdate } from './utils';
import { startServer } from './proxyServer';
import { installCert } from './cert';
app.commandLine.appendSwitch('--no-proxy-server');
function createWindow() {
Menu.setApplicationMenu(null);
checkUpdate(
'https://cdn.jsdelivr.net/gh/lecepin/electron-react-tpl/package.json',
'https://github.com/lecepin/electron-react-tpl/releases',
);
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
// resizable: false,
// maximizable: false,
webPreferences: {
webSecurity: false,
nodeIntegration: true,
contextIsolation: false,
},
});
mainWindow.loadURL(CONFIG.APP_START_URL);
CONFIG.IS_DEV && mainWindow.webContents.openDevTools();
}
app.whenReady().then(() => {
createWindow();
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});