import path from 'node:path' import { createRequire } from 'node:module' import { fileURLToPath } from 'node:url' import { BrowserWindow, app, nativeTheme, shell } from 'electron' import { electronApp, optimizer } from '@electron-toolkit/utils' import contextMenu from 'electron-context-menu' import remote from '@electron/remote/main' // process.js 必须位于非依赖项的顶部 import './helpers/process.js' import appStore from './helpers/store.js' import log from './helpers/log.js' import './helpers/console.js' import { icnsLogoPath, icoLogoPath, logoPath } from './configs/index.js' import events from './events/index.js' // import copilot from './copilot/index.js' const require = createRequire(import.meta.url) const __dirname = path.dirname(fileURLToPath(import.meta.url)) log.initialize({ preload: true }) const debug = !!appStore.get('common.debug') if (!debug) { log.warn( 'Debug Tips:', 'If you need to generate and view the running log, please start the debugging function on the preference setting page', ) } contextMenu({ showCopyImage: false, showSelectAll: false, showSearchWithGoogle: false, showSaveImageAs: true, showInspectElement: !app.isPackaged, }) // The built directory structure // // ├─┬─┬ dist // │ │ └── index.html // │ │ // │ ├─┬ dist-electron // │ │ ├── main.js // │ │ └── preload.js // │ process.env.DIST = path.join(__dirname, '../dist') let mainWindow // 🚧 Use ['ENV_NAME'] avoid vite:define plugin - Vite@2.x const VITE_DEV_SERVER_URL = process.env.VITE_DEV_SERVER_URL function createWindow() { let icon = logoPath if (process.platform === 'win32') { icon = icoLogoPath } else if (process.platform === 'darwin') { icon = icnsLogoPath } mainWindow = new BrowserWindow({ // 这里设置的图标仅在开发模式生效,打包后将使用应用程序图标 ...(!app.isPackaged ? { icon, } : {}), show: false, width: 1200, height: 800, minWidth: 1200, minHeight: 800, autoHideMenuBar: true, webPreferences: { preload: path.join(__dirname, 'preload.mjs'), nodeIntegration: true, sandbox: false, spellcheck: false, }, }) remote.enable(mainWindow.webContents) remote.initialize() mainWindow.on('ready-to-show', () => { mainWindow.show() }) mainWindow.webContents.setWindowOpenHandler((details) => { shell.openExternal(details.url) return { action: 'deny' } }) if (VITE_DEV_SERVER_URL) { mainWindow.loadURL(VITE_DEV_SERVER_URL) } else { mainWindow.loadFile(path.join(process.env.DIST, 'index.html')) } events(mainWindow) // copilot(mainWindow) } app.whenReady().then(() => { electronApp.setAppUserModelId('com.viarotel.escrcpy') app.on('browser-window-created', (_, window) => { optimizer.watchWindowShortcuts(window) }) createWindow() // macOS 中应用被激活 app.on('activate', () => { if (BrowserWindow.getAllWindows().length === 0) { createWindow() return } app.dock.show() mainWindow.show() }) }) app.on('window-all-closed', () => { app.isQuiting = true app.quit() mainWindow = null })