Ajout d'une base pour la partie Electron

This commit is contained in:
Quentin Millardet
2024-01-13 23:31:03 +01:00
parent 02cb1cd738
commit ed0b56e789
34 changed files with 75 additions and 14830 deletions

View File

@@ -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()
})