mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-15 03:14:56 -05:00
33 lines
674 B
JavaScript
33 lines
674 B
JavaScript
'use strict'
|
|
|
|
const { BrowserWindow } = require('electron')
|
|
|
|
// default window settings
|
|
const defaultProps = {
|
|
width: 500,
|
|
height: 800,
|
|
show: false,
|
|
|
|
// update for electron V5+
|
|
webPreferences: {
|
|
nodeIntegration: true
|
|
}
|
|
}
|
|
|
|
class Window extends BrowserWindow {
|
|
constructor ({ file, ...windowSettings }) {
|
|
// calls new BrowserWindow with these props
|
|
super({ ...defaultProps, ...windowSettings })
|
|
|
|
// load the html and open devtools
|
|
this.loadFile(file)
|
|
// this.webContents.openDevTools()
|
|
|
|
// gracefully show when ready to prevent flickering
|
|
this.once('ready-to-show', () => {
|
|
this.show()
|
|
})
|
|
}
|
|
}
|
|
|
|
module.exports = Window
|