redux-devtools/packages/redux-devtools-cli/app/electron.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-01-05 18:49:52 +03:00
// Based on https://github.com/electron/electron-quick-start
2019-01-10 21:51:14 +03:00
const { app, BrowserWindow } = require('electron');
2019-01-05 18:49:52 +03:00
const argv = require('minimist')(process.argv.slice(2));
let mainWindow;
2019-01-10 21:51:14 +03:00
function createWindow() {
2019-01-05 18:49:52 +03:00
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: false,
contextIsolation: true,
sandbox: true,
webSecurity: true
}
2019-01-10 21:51:14 +03:00
});
2019-01-05 18:49:52 +03:00
// mainWindow.loadFile('index.html')
2019-01-10 21:51:14 +03:00
mainWindow.loadURL('http://localhost:' + (argv.port ? argv.port : 8000));
2019-01-05 18:49:52 +03:00
// Open the DevTools.
// mainWindow.webContents.openDevTools()
2019-01-10 21:51:14 +03:00
mainWindow.on('closed', function() {
2019-01-05 18:49:52 +03:00
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
2019-01-10 21:51:14 +03:00
mainWindow = null;
});
2019-01-05 18:49:52 +03:00
}
2019-01-10 21:51:14 +03:00
app.on('ready', createWindow);
2019-01-05 18:49:52 +03:00
2019-01-10 21:51:14 +03:00
app.on('window-all-closed', function() {
2019-01-05 18:49:52 +03:00
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
2019-01-10 21:51:14 +03:00
app.quit();
2019-01-05 18:49:52 +03:00
}
2019-01-10 21:51:14 +03:00
});
2019-01-05 18:49:52 +03:00
2019-01-10 21:51:14 +03:00
app.on('activate', function() {
2019-01-05 18:49:52 +03:00
// 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) {
2019-01-10 21:51:14 +03:00
createWindow();
2019-01-05 18:49:52 +03:00
}
2019-01-10 21:51:14 +03:00
});