Ajout d'une base pour la partie Electron
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
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()
|
||||
})
|
||||
Reference in New Issue
Block a user