mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
* 从 v1 添加托盘相关图标 * feat: ipcRenderer事件 * feat: 托盘菜单实现 * 修复合并后的错误 * fix: 托盘图标的like * 将 tray 相关的 ipc 放入ipcMain.ts * update * update * feat: 设置托盘Tooltip * fix * fix: tray play/pause fade * fix: 暂时将tray like与tooltip的设置移入Player组件中 useUserLikedTracksIDs 会在重新聚焦而不是切换track时触发,导致托盘无法实时更新数据 基于以上一点,在Player组件中有了一个用于设置tray数据的useEffect,故将tray tooltip的设置也放入其中,使tray的数据尽可能简单的和player数据保持一致 * 将部分ipcRenderer调用挪到单独的IpcRendererReact组件 * 移除SetTrayPlayState,复用已有channel * update
174 lines
4.4 KiB
TypeScript
174 lines
4.4 KiB
TypeScript
import './preload' // must be first
|
|
import './sentry'
|
|
import './server'
|
|
import {
|
|
BrowserWindow,
|
|
BrowserWindowConstructorOptions,
|
|
app,
|
|
shell,
|
|
} from 'electron'
|
|
import Store from 'electron-store'
|
|
import { release } from 'os'
|
|
import { join } from 'path'
|
|
import log from './log'
|
|
import { initIpcMain } from './ipcMain'
|
|
import { createTray, YPMTray } from './tray'
|
|
import { IpcChannels } from '@/shared/IpcChannels'
|
|
|
|
const isWindows = process.platform === 'win32'
|
|
const isMac = process.platform === 'darwin'
|
|
const isLinux = process.platform === 'linux'
|
|
const isDev = process.env.NODE_ENV === 'development'
|
|
|
|
interface TypedElectronStore {
|
|
window: {
|
|
width: number
|
|
height: number
|
|
x?: number
|
|
y?: number
|
|
}
|
|
}
|
|
|
|
class Main {
|
|
win: BrowserWindow | null = null
|
|
tray: YPMTray | null = null
|
|
store = new Store<TypedElectronStore>({
|
|
defaults: {
|
|
window: {
|
|
width: 1440,
|
|
height: 960,
|
|
},
|
|
},
|
|
})
|
|
|
|
constructor() {
|
|
log.info('[index] Main process start')
|
|
|
|
// Disable GPU Acceleration for Windows 7
|
|
if (release().startsWith('6.1')) app.disableHardwareAcceleration()
|
|
|
|
// Set application name for Windows 10+ notifications
|
|
if (process.platform === 'win32') app.setAppUserModelId(app.getName())
|
|
|
|
// Make sure the app only run on one instance
|
|
if (!app.requestSingleInstanceLock()) {
|
|
app.quit()
|
|
process.exit(0)
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
log.info('[index] App ready')
|
|
this.createWindow()
|
|
this.handleAppEvents()
|
|
this.handleWindowEvents()
|
|
this.createTray()
|
|
initIpcMain(this.win, this.tray)
|
|
this.initDevTools()
|
|
})
|
|
}
|
|
|
|
initDevTools() {
|
|
if (!isDev || !this.win) return
|
|
|
|
// Install devtool extension
|
|
const {
|
|
default: installExtension,
|
|
REACT_DEVELOPER_TOOLS,
|
|
REDUX_DEVTOOLS,
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
} = require('electron-devtools-installer')
|
|
installExtension(REACT_DEVELOPER_TOOLS.id).catch((err: any) =>
|
|
log.info('An error occurred: ', err)
|
|
)
|
|
installExtension(REDUX_DEVTOOLS.id).catch((err: any) =>
|
|
log.info('An error occurred: ', err)
|
|
)
|
|
|
|
this.win.webContents.openDevTools()
|
|
}
|
|
|
|
createTray() {
|
|
if (isWindows || isLinux || isDev) {
|
|
this.tray = createTray(this.win!)
|
|
}
|
|
}
|
|
|
|
createWindow() {
|
|
const options: BrowserWindowConstructorOptions = {
|
|
title: 'YesPlayMusic',
|
|
webPreferences: {
|
|
preload: join(__dirname, 'rendererPreload.js'),
|
|
},
|
|
width: this.store.get('window.width'),
|
|
height: this.store.get('window.height'),
|
|
minWidth: 1080,
|
|
minHeight: 720,
|
|
vibrancy: 'fullscreen-ui',
|
|
titleBarStyle: 'hiddenInset',
|
|
frame: !(isWindows || isLinux), // TODO: 适用于linux下独立的启用开关
|
|
}
|
|
if (this.store.get('window')) {
|
|
options.x = this.store.get('window.x')
|
|
options.y = this.store.get('window.y')
|
|
}
|
|
this.win = new BrowserWindow(options)
|
|
|
|
// Web server
|
|
const url = `http://localhost:${process.env.ELECTRON_WEB_SERVER_PORT}`
|
|
this.win.loadURL(url)
|
|
|
|
// Make all links open with the browser, not with the application
|
|
this.win.webContents.setWindowOpenHandler(({ url }) => {
|
|
if (url.startsWith('https:')) shell.openExternal(url)
|
|
return { action: 'deny' }
|
|
})
|
|
}
|
|
|
|
handleWindowEvents() {
|
|
if (!this.win) return
|
|
|
|
// Window maximize and minimize
|
|
this.win.on('maximize', () => {
|
|
this.win && this.win.webContents.send(IpcChannels.IsMaximized, true)
|
|
})
|
|
|
|
this.win.on('unmaximize', () => {
|
|
this.win && this.win.webContents.send(IpcChannels.IsMaximized, false)
|
|
})
|
|
|
|
// Save window position
|
|
const saveBounds = () => {
|
|
const bounds = this.win?.getBounds()
|
|
if (bounds) {
|
|
this.store.set('window', bounds)
|
|
}
|
|
}
|
|
this.win.on('resized', saveBounds)
|
|
this.win.on('moved', saveBounds)
|
|
}
|
|
|
|
handleAppEvents() {
|
|
app.on('window-all-closed', () => {
|
|
this.win = null
|
|
if (process.platform !== 'darwin') app.quit()
|
|
})
|
|
|
|
app.on('second-instance', () => {
|
|
if (!this.win) return
|
|
// Focus on the main window if the user tried to open another
|
|
if (this.win.isMinimized()) this.win.restore()
|
|
this.win.focus()
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
const allWindows = BrowserWindow.getAllWindows()
|
|
if (allWindows.length) {
|
|
allWindows[0].focus()
|
|
} else {
|
|
this.createWindow()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
new Main()
|