mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-26 11:44:28 +08:00
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { BrowserWindow, ipcMain, session, shell } from 'electron'
|
|
|
|
import { appConfig, titleBarOverlayDark, titleBarOverlayLight } from './config'
|
|
import AppUpdater from './updater'
|
|
import { openFile, saveFile } from './utils/file'
|
|
import { compress, decompress } from './utils/zip'
|
|
import { createMinappWindow } from './window'
|
|
|
|
export function registerIpc(mainWindow: BrowserWindow, app: Electron.App) {
|
|
const { autoUpdater } = new AppUpdater(mainWindow)
|
|
|
|
// IPC
|
|
ipcMain.handle('get-app-info', () => ({
|
|
version: app.getVersion(),
|
|
isPackaged: app.isPackaged,
|
|
appPath: app.getAppPath()
|
|
}))
|
|
|
|
ipcMain.handle('open-website', (_, url: string) => {
|
|
shell.openExternal(url)
|
|
})
|
|
|
|
ipcMain.handle('set-proxy', (_, proxy: string) => {
|
|
session.defaultSession.setProxy(proxy ? { proxyRules: proxy } : {})
|
|
})
|
|
|
|
ipcMain.handle('save-file', saveFile)
|
|
ipcMain.handle('open-file', openFile)
|
|
ipcMain.handle('reload', () => mainWindow.reload())
|
|
|
|
ipcMain.handle('zip:compress', (_, text: string) => compress(text))
|
|
ipcMain.handle('zip:decompress', (_, text: Buffer) => decompress(text))
|
|
|
|
ipcMain.handle('minapp', (_, args) => {
|
|
createMinappWindow({
|
|
url: args.url,
|
|
parent: mainWindow,
|
|
windowOptions: {
|
|
...mainWindow.getBounds(),
|
|
...args.windowOptions
|
|
}
|
|
})
|
|
})
|
|
|
|
ipcMain.handle('set-theme', (_, theme: 'light' | 'dark') => {
|
|
appConfig.set('theme', theme)
|
|
mainWindow?.setTitleBarOverlay &&
|
|
mainWindow.setTitleBarOverlay(theme === 'dark' ? titleBarOverlayDark : titleBarOverlayLight)
|
|
})
|
|
|
|
// 触发检查更新(此方法用于被渲染线程调用,例如页面点击检查更新按钮来调用此方法)
|
|
ipcMain.handle('check-for-update', async () => {
|
|
return {
|
|
currentVersion: autoUpdater.currentVersion,
|
|
update: await autoUpdater.checkForUpdates()
|
|
}
|
|
})
|
|
}
|