40 lines
770 B
JavaScript
40 lines
770 B
JavaScript
|
const { app, BrowserWindow, Menu, MenuItem } = require('electron')
|
||
|
|
||
|
function createWindow () {
|
||
|
const win = new BrowserWindow({
|
||
|
width: 800,
|
||
|
height: 600,
|
||
|
webPreferences: {
|
||
|
nodeIntegration: true
|
||
|
}
|
||
|
})
|
||
|
|
||
|
win.loadFile('index.html')
|
||
|
}
|
||
|
|
||
|
const menu = new Menu()
|
||
|
menu.append(new MenuItem({
|
||
|
label: 'Electron',
|
||
|
submenu: [{
|
||
|
role: 'help',
|
||
|
accelerator: process.platform === 'darwin' ? 'Alt+Cmd+I' : 'Alt+Shift+I',
|
||
|
click: () => { console.log('Electron rocks!') }
|
||
|
}]
|
||
|
}))
|
||
|
|
||
|
Menu.setApplicationMenu(menu)
|
||
|
|
||
|
app.whenReady().then(createWindow)
|
||
|
|
||
|
app.on('window-all-closed', () => {
|
||
|
if (process.platform !== 'darwin') {
|
||
|
app.quit()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.on('activate', () => {
|
||
|
if (BrowserWindow.getAllWindows().length === 0) {
|
||
|
createWindow()
|
||
|
}
|
||
|
})
|