mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
const { app, BrowserWindow } = require('electron');
|
|
const { getAppConfig } = require('frappejs/webpack/utils');
|
|
const setupMenu = require('./menu');
|
|
|
|
const appConfig = getAppConfig();
|
|
|
|
if (process.env.NODE_ENV !== 'development') {
|
|
global.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
|
|
}
|
|
|
|
let mainWindow
|
|
const winURL = process.env.NODE_ENV === 'development'
|
|
? `http://localhost:${appConfig.dev.devServerPort}`
|
|
: `file://${__dirname}/index.html`
|
|
|
|
function createWindow() {
|
|
/**
|
|
* Initial window options
|
|
*/
|
|
mainWindow = new BrowserWindow({
|
|
width: 1024,
|
|
height: 768,
|
|
useContentSize: true
|
|
})
|
|
|
|
mainWindow.loadURL(winURL)
|
|
|
|
mainWindow.on('closed', () => {
|
|
mainWindow = null
|
|
})
|
|
|
|
setupMenu();
|
|
}
|
|
|
|
app.on('ready', createWindow)
|
|
|
|
app.on('window-all-closed', () => {
|
|
if (process.platform !== 'darwin') {
|
|
app.quit()
|
|
}
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
if (mainWindow === null) {
|
|
createWindow()
|
|
}
|
|
})
|
|
|
|
// TODO:
|
|
// Enable Auto Update
|
|
// https://www.electron.build/auto-update/
|