ebac854da8
* The MongoDB/Mongoose data storage is removed in favor of Sequelize. This abstracts over SQLite or RDBMs like PostgreSQL and MSSQL. The default is SQLite, which significantly simplifies deployments in end-user environments. * As Spacedeck now has no more mandatory server dependencies, we can wrap it in Electron and ship it as a desktop application. * Removes docker-compose.yml * First version of import UI
34 lines
926 B
JavaScript
34 lines
926 B
JavaScript
const spacedeck = require('./spacedeck')
|
|
|
|
const electron = require('electron')
|
|
const electronApp = electron.app
|
|
const BrowserWindow = electron.BrowserWindow
|
|
let mainWindow
|
|
|
|
function createWindow () {
|
|
mainWindow = new BrowserWindow({width: 1200, height: 700})
|
|
mainWindow.loadURL("http://localhost:9666")
|
|
mainWindow.on('closed', function () {
|
|
mainWindow = null
|
|
})
|
|
}
|
|
|
|
electronApp.on('ready', createWindow)
|
|
|
|
// Quit when all windows are closed.
|
|
electronApp.on('window-all-closed', function () {
|
|
// On OS X it is common for applications and their menu bar
|
|
// to stay active until the user quits explicitly with Cmd + Q
|
|
if (process.platform !== 'darwin') {
|
|
electronApp.quit()
|
|
}
|
|
})
|
|
|
|
electronApp.on('activate', function () {
|
|
// On OS X 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 (mainWindow === null) {
|
|
createWindow()
|
|
}
|
|
})
|