2024-05-08 05:02:00 +02:00
|
|
|
import { createRequire } from 'node:module'
|
2024-09-07 19:55:54 +02:00
|
|
|
import path from 'node:path'
|
2024-05-08 05:02:00 +02:00
|
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
|
2024-09-07 19:55:54 +02:00
|
|
|
import remote from '@electron/remote/main'
|
2023-10-16 05:53:08 +02:00
|
|
|
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'
|
2024-09-09 12:58:17 +02:00
|
|
|
/** process.js 必须位于非依赖项的顶部 */
|
|
|
|
import { isPackaged } from './helpers/process.js'
|
2023-10-25 12:17:19 +02:00
|
|
|
import log from './helpers/log.js'
|
2024-09-09 12:58:17 +02:00
|
|
|
import './helpers/console.js'
|
2024-09-07 19:55:54 +02:00
|
|
|
import appStore from './helpers/store.js'
|
2023-10-25 12:17:19 +02:00
|
|
|
|
2024-09-12 13:11:46 +02:00
|
|
|
import { getLogoPath } from './configs/index.js'
|
2023-10-16 05:53:08 +02:00
|
|
|
|
2024-09-09 12:58:17 +02:00
|
|
|
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'
|
|
|
|
|
2024-05-08 05:02:00 +02:00
|
|
|
const require = createRequire(import.meta.url)
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|
|
|
|
2023-10-25 12:17:19 +02:00
|
|
|
log.initialize({ preload: true })
|
|
|
|
|
2023-10-27 13:18:09 +02:00
|
|
|
const debug = !!appStore.get('common.debug')
|
|
|
|
|
|
|
|
if (!debug) {
|
|
|
|
log.warn(
|
|
|
|
'Debug Tips:',
|
2024-09-09 12:58:17 +02:00
|
|
|
'If you need to generate and view the running log, please start the debugging function on the preference setting page'
|
2023-10-27 13:18:09 +02:00
|
|
|
)
|
|
|
|
}
|
2023-10-25 12:17:19 +02:00
|
|
|
|
2023-11-16 06:47:48 +01:00
|
|
|
contextMenu({
|
|
|
|
showCopyImage: false,
|
|
|
|
showSelectAll: false,
|
|
|
|
showSearchWithGoogle: false,
|
|
|
|
showSaveImageAs: true,
|
2024-09-09 12:58:17 +02:00
|
|
|
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-16 05:53:08 +02:00
|
|
|
|
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(),
|
2023-10-16 05:53:08 +02:00
|
|
|
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: {
|
2024-05-08 05:02:00 +02:00
|
|
|
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
|
|
|
},
|
2023-10-16 05:53:08 +02:00
|
|
|
})
|
|
|
|
|
2024-05-14 13:16:46 +02:00
|
|
|
remote.enable(mainWindow.webContents)
|
|
|
|
remote.initialize()
|
|
|
|
|
2023-10-16 05:53:08 +02:00
|
|
|
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
|
|
|
|
2023-10-16 05:53:08 +02:00
|
|
|
events(mainWindow)
|
2024-09-12 13:11:46 +02:00
|
|
|
|
|
|
|
control(mainWindow)
|
2023-10-15 18:18:24 +02:00
|
|
|
}
|
|
|
|
|
2023-10-16 05:53:08 +02:00
|
|
|
app.whenReady().then(() => {
|
|
|
|
electronApp.setAppUserModelId('com.viarotel.escrcpy')
|
|
|
|
|
|
|
|
app.on('browser-window-created', (_, window) => {
|
|
|
|
optimizer.watchWindowShortcuts(window)
|
|
|
|
})
|
|
|
|
|
|
|
|
createWindow()
|
2023-11-03 09:46:29 +01:00
|
|
|
|
|
|
|
// 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
|
2023-11-03 09:46:29 +01:00
|
|
|
app.quit()
|
|
|
|
mainWindow = null
|
2023-10-16 05:53:08 +02:00
|
|
|
})
|