mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 03:07:41 +01:00
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
|
import path from 'node:path'
|
||
|
import { BrowserWindow, app } from 'electron'
|
||
|
import ipcManage from './ipcManage/index.js'
|
||
|
|
||
|
// The built directory structure
|
||
|
//
|
||
|
// ├─┬─┬ dist
|
||
|
// │ │ └── index.html
|
||
|
// │ │
|
||
|
// │ ├─┬ dist-electron
|
||
|
// │ │ ├── main.js
|
||
|
// │ │ └── preload.js
|
||
|
// │
|
||
|
process.env.DIST = path.join(__dirname, '../dist')
|
||
|
process.env.VITE_PUBLIC = app.isPackaged
|
||
|
? process.env.DIST
|
||
|
: path.join(process.env.DIST, '../public')
|
||
|
|
||
|
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() {
|
||
|
mainWindow = new BrowserWindow({
|
||
|
icon: path.join(process.env.VITE_PUBLIC, 'electron-vite.svg'),
|
||
|
minWidth: 1000,
|
||
|
minHeight: 700,
|
||
|
autoHideMenuBar: true,
|
||
|
webPreferences: {
|
||
|
// nodeIntegration: true,
|
||
|
// contextIsolation: false,
|
||
|
preload: path.join(__dirname, './preload.js'),
|
||
|
sandbox: false,
|
||
|
},
|
||
|
})
|
||
|
|
||
|
// Test active push message to Renderer-process.
|
||
|
mainWindow.webContents.on('did-finish-load', () => {
|
||
|
mainWindow?.webContents.send(
|
||
|
'main-process-message',
|
||
|
new Date().toLocaleString(),
|
||
|
)
|
||
|
})
|
||
|
|
||
|
if (VITE_DEV_SERVER_URL) {
|
||
|
mainWindow.loadURL(VITE_DEV_SERVER_URL)
|
||
|
}
|
||
|
else {
|
||
|
// win.loadFile('dist/index.html')
|
||
|
mainWindow.loadFile(path.join(process.env.DIST, 'index.html'))
|
||
|
}
|
||
|
|
||
|
ipcManage(mainWindow)
|
||
|
}
|
||
|
|
||
|
// Quit when all windows are closed, except on macOS. There, it's common
|
||
|
// for applications and their menu bar to stay active until the user quits
|
||
|
// explicitly with Cmd + Q.
|
||
|
app.on('window-all-closed', () => {
|
||
|
if (process.platform !== 'darwin') {
|
||
|
app.quit()
|
||
|
mainWindow = null
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.on('activate', () => {
|
||
|
// On OS X it's common to re-create a window in the app when the
|
||
|
// dock icon is clicked and there are no other windows open.
|
||
|
if (BrowserWindow.getAllWindows().length === 0) {
|
||
|
createWindow()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.whenReady().then(createWindow)
|