escrcpy/electron/main.js

121 lines
2.7 KiB
JavaScript
Raw Normal View History

import { createRequire } from 'node:module'
2024-09-07 19:55:54 +02:00
import path from 'node:path'
import { fileURLToPath } from 'node:url'
2024-09-07 19:55:54 +02:00
import remote from '@electron/remote/main'
import { electronApp, optimizer } from '@electron-toolkit/utils'
2024-09-07 19:55:54 +02:00
import { app, BrowserWindow, shell } from 'electron'
2023-11-16 06:47:48 +01:00
import contextMenu from 'electron-context-menu'
/** process.js 必须位于非依赖项的顶部 */
import { isPackaged } from './helpers/process.js'
import log from './helpers/log.js'
import './helpers/console.js'
2024-09-07 19:55:54 +02:00
import appStore from './helpers/store.js'
2024-09-12 13:11:46 +02:00
import { getLogoPath } from './configs/index.js'
import events from './events/index.js'
2023-10-15 18:18:24 +02:00
2024-09-12 13:11:46 +02:00
import control from '$control/electron/main.js'
import { loadPage } from './helpers/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'
)
}
2023-11-16 06:47:48 +01:00
contextMenu({
showCopyImage: false,
showSelectAll: false,
showSearchWithGoogle: false,
showSaveImageAs: true,
showInspectElement: !isPackaged,
2023-11-16 06:47:48 +01:00
})
2023-10-15 18:18:24 +02:00
// The built directory structure
//
// ├─┬─┬ dist
// │ │ └── index.html
// │ │
// │ ├─┬ dist-electron
// │ │ ├── main.js
// │ │ └── preload.js
// │
2023-10-15 18:18:24 +02:00
process.env.DIST = path.join(__dirname, '../dist')
let mainWindow
function createWindow() {
mainWindow = new BrowserWindow({
2024-09-12 13:11:46 +02:00
icon: getLogoPath(),
show: false,
2023-11-02 10:34:47 +01:00
width: 1200,
height: 800,
minWidth: 1200,
minHeight: 800,
2023-10-15 18:18:24 +02:00
autoHideMenuBar: true,
webPreferences: {
preload: path.join(__dirname, 'preload.mjs'),
nodeIntegration: true,
2023-10-15 18:18:24 +02:00
sandbox: false,
2023-11-01 11:41:46 +01:00
spellcheck: false,
2023-10-15 18:18:24 +02:00
},
})
remote.enable(mainWindow.webContents)
remote.initialize()
mainWindow.on('ready-to-show', () => {
mainWindow.show()
})
mainWindow.webContents.setWindowOpenHandler((details) => {
shell.openExternal(details.url)
return { action: 'deny' }
2023-10-15 18:18:24 +02:00
})
2024-09-12 13:11:46 +02:00
loadPage(mainWindow)
2023-10-15 18:18:24 +02:00
events(mainWindow)
2024-09-12 13:11:46 +02:00
control(mainWindow)
2023-10-15 18:18:24 +02:00
}
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', () => {
2023-11-03 10:00:35 +01:00
app.isQuiting = true
app.quit()
mainWindow = null
})