deemix-gui/index.js

73 lines
1.6 KiB
JavaScript

const { app, BrowserWindow, globalShortcut, ipcMain, shell, dialog} = require('electron')
const path = require('path')
const PORT = process.env.PORT || '6595'
function isDev() {
return process.argv[2] == '--dev';
}
let win
function createWindow () {
require('./server/dist/app.js')
win = new BrowserWindow({
width: 800,
height: 600,
useContentSize: true,
autoHideMenuBar: true,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
}
})
win.setMenu(null)
if (isDev()){
globalShortcut.register('f5', function() {
win.reload()
})
globalShortcut.register('f12', function() {
win.webContents.openDevTools()
})
}
// Open links in external browser
win.webContents.on('new-window', function(e, url) {
e.preventDefault()
shell.openExternal(url)
})
win.loadURL(`http://localhost:${PORT}`)
}
app.whenReady().then(() => {
createWindow()
// Only one istance per time
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
ipcMain.on('openDownloadsFolder', (event)=>{
const { downloadLocation } = require('./server/dist/main.js').settings
shell.openPath(downloadLocation)
})
ipcMain.on('selectDownloadFolder', async (event, downloadLocation)=>{
let path = await dialog.showOpenDialog(win, {
defaultPath: downloadLocation,
properties: ["openDirectory", "createDirectory"]
})
if (path.filePaths[0]) win.webContents.send("downloadFolderSelected", path.filePaths[0])
})