lx-music-desktop/src/main/index.js

110 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-08-23 11:28:54 +00:00
const { app, BrowserWindow, Menu } = require('electron')
2019-08-16 09:27:23 +00:00
const path = require('path')
2019-09-04 05:08:32 +00:00
// 单例应用程序
if (!app.requestSingleInstanceLock()) {
app.quit()
return
}
app.on('second-instance', (event, argv, cwd) => {
if (mainWindow) {
if (mainWindow.isMinimized()) mainWindow.restore()
mainWindow.focus()
} else {
app.quit()
}
})
2019-08-16 09:27:23 +00:00
require('./events')
require('./events/progressBar')
require('./events/trafficLight')
2019-08-16 09:27:23 +00:00
const autoUpdate = require('./utils/autoUpdate')
2019-08-23 11:28:54 +00:00
const { isLinux, isMac } = require('../common/utils')
2019-08-16 09:27:23 +00:00
const isDev = process.env.NODE_ENV !== 'production'
/**
* Set `__static` path to static files in production
* https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-static-assets.html
*/
let mainWindow
let winURL
let isFirstCheckedUpdate = true
2019-08-16 09:27:23 +00:00
if (isDev) {
global.__static = path.join(__dirname, '../static')
winURL = 'http://localhost:9080'
2019-08-16 09:27:23 +00:00
} else {
global.__static = path.join(__dirname, '/static')
winURL = `file://${__dirname}/index.html`
}
function createWindow() {
/**
* Initial window options
*/
mainWindow = global.mainWindow = new BrowserWindow({
2019-08-16 09:27:23 +00:00
height: 590,
useContentSize: true,
width: 920,
frame: false,
2019-08-23 11:28:54 +00:00
transparent: !isLinux,
// icon: path.join(global.__static, isWin ? 'icons/256x256.ico' : 'icons/512x512.png'),
2019-08-16 09:27:23 +00:00
resizable: false,
maximizable: false,
fullscreenable: false,
webPreferences: {
// contextIsolation: true,
webSecurity: !isDev,
nodeIntegration: true,
},
})
mainWindow.loadURL(winURL)
mainWindow.on('close', () => {
mainWindow.setProgressBar(-1)
})
2019-08-16 09:27:23 +00:00
mainWindow.on('closed', () => {
mainWindow = global.mainWindow = null
2019-08-16 09:27:23 +00:00
})
// mainWindow.webContents.openDevTools()
if (!isDev) {
autoUpdate(isFirstCheckedUpdate)
isFirstCheckedUpdate = false
}
2019-08-16 09:27:23 +00:00
}
2019-08-23 11:28:54 +00:00
if (isMac) {
const template = [
{
label: app.getName(),
submenu: [{ label: '关于洛雪音乐', role: 'about' }, { type: 'separator' }, { label: '隐藏', role: 'hide' }, { label: '显示其他', role: 'hideothers' }, { label: '显示全部', role: 'unhide' }, { type: 'separator' }, { label: '退出', click: () => app.quit() }],
},
{
label: '窗口',
role: 'window',
submenu: [{ label: '最小化', role: 'minimize' }, { label: '关闭', role: 'close' }],
},
]
Menu.setApplicationMenu(Menu.buildFromTemplate(template))
} else {
Menu.setApplicationMenu(null)
}
2019-09-05 14:41:10 +00:00
app.on('ready', createWindow)
2019-08-16 09:27:23 +00:00
app.on('window-all-closed', () => {
2019-09-06 03:47:39 +00:00
if (!isMac) app.quit()
2019-08-16 09:27:23 +00:00
})
app.on('activate', () => {
if (mainWindow === null) {
createWindow()
}
})