38 lines
798 B
JavaScript
38 lines
798 B
JavaScript
const {app, BrowserWindow} = require('electron')
|
|
const url = require("url");
|
|
const path = require("path");
|
|
|
|
let mainWindow
|
|
|
|
function createWindow () {
|
|
mainWindow = new BrowserWindow({
|
|
webPreferences: {
|
|
nodeIntegration: true
|
|
}
|
|
})
|
|
|
|
mainWindow.loadURL(
|
|
url.format({
|
|
pathname: path.join(__dirname, `/dist/angular-teslalightshow-manager/browser/index.html`),
|
|
protocol: "file:",
|
|
slashes: true
|
|
})
|
|
);
|
|
// Open the DevTools.
|
|
mainWindow.webContents.openDevTools({'mode' : 'bottom'})
|
|
|
|
mainWindow.on('closed', function () {
|
|
mainWindow = null
|
|
})
|
|
}
|
|
|
|
app.on('ready', createWindow)
|
|
|
|
app.on('window-all-closed', function () {
|
|
if (process.platform !== 'darwin') app.quit()
|
|
})
|
|
|
|
app.on('activate', function () {
|
|
if (mainWindow === null) createWindow()
|
|
})
|