desktop/main.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-10-17 16:16:02 +00:00
const {app, BrowserWindow, shell} = require('electron')
2020-10-17 15:41:20 +00:00
function createWindow() {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
2020-10-17 16:16:02 +00:00
webPreferences: {
nodeIntegration: true,
}
2020-10-17 15:41:20 +00:00
})
2020-10-17 16:16:02 +00:00
// Open external links in the browser
mainWindow.webContents.on('new-window', function (e, url) {
e.preventDefault()
shell.openExternal(url)
})
// Hide the toolbar
mainWindow.setMenuBarVisibility(false)
2020-10-17 15:41:20 +00:00
// Open the DevTools.
2020-10-17 16:16:02 +00:00
// mainWindow.webContents.openDevTools()
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.whenReady().then(() => {
2020-10-17 15:41:20 +00:00
createWindow()
app.on('activate', function () {
// 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 (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
2020-10-17 16:16:02 +00:00
app.on('window-all-closed', () => {
2020-10-17 15:41:20 +00:00
if (process.platform !== 'darwin') app.quit()
})