|
|
@ -1,10 +1,10 @@ |
|
|
|
import "reflect-metadata"; |
|
|
|
import { app, shell, BrowserWindow, ipcMain } from 'electron' |
|
|
|
import { join } from 'path' |
|
|
|
import { electronApp, optimizer, is } from '@electron-toolkit/utils' |
|
|
|
import icon from 'res/icon.png?asset' |
|
|
|
import { container } from 'vc/modules' |
|
|
|
import { App } from 'vc/modules/App' |
|
|
|
import "reflect-metadata" |
|
|
|
import { app, shell, BrowserWindow, ipcMain } from "electron" |
|
|
|
import { join } from "path" |
|
|
|
import { electronApp, optimizer, is } from "@electron-toolkit/utils" |
|
|
|
import icon from "res/icon.png?asset" |
|
|
|
import { container } from "vc/modules" |
|
|
|
import { App } from "vc/modules/App" |
|
|
|
|
|
|
|
container.get(App).init() |
|
|
|
|
|
|
@ -15,28 +15,28 @@ function createWindow(): void { |
|
|
|
height: 670, |
|
|
|
show: false, |
|
|
|
autoHideMenuBar: true, |
|
|
|
...(process.platform === 'linux' ? { icon } : {}), |
|
|
|
...(process.platform === "linux" ? { icon } : {}), |
|
|
|
webPreferences: { |
|
|
|
preload: join(__dirname, '../preload/index.mjs'), |
|
|
|
sandbox: false |
|
|
|
} |
|
|
|
preload: join(__dirname, "../preload/index.mjs"), |
|
|
|
sandbox: false, |
|
|
|
}, |
|
|
|
}) |
|
|
|
|
|
|
|
mainWindow.on('ready-to-show', () => { |
|
|
|
mainWindow.on("ready-to-show", () => { |
|
|
|
mainWindow.show() |
|
|
|
}) |
|
|
|
|
|
|
|
mainWindow.webContents.setWindowOpenHandler((details) => { |
|
|
|
mainWindow.webContents.setWindowOpenHandler(details => { |
|
|
|
shell.openExternal(details.url) |
|
|
|
return { action: 'deny' } |
|
|
|
return { action: "deny" } |
|
|
|
}) |
|
|
|
|
|
|
|
// HMR for renderer base on electron-vite cli.
|
|
|
|
// Load the remote URL for development or the local html file for production.
|
|
|
|
if (is.dev && process.env['ELECTRON_RENDERER_URL']) { |
|
|
|
mainWindow.loadURL(process.env['ELECTRON_RENDERER_URL']) |
|
|
|
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) { |
|
|
|
mainWindow.loadURL(process.env["ELECTRON_RENDERER_URL"]) |
|
|
|
} else { |
|
|
|
mainWindow.loadFile(join(__dirname, '../renderer/index.html')) |
|
|
|
mainWindow.loadFile(join(__dirname, "../renderer/index.html")) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -45,21 +45,21 @@ function createWindow(): void { |
|
|
|
// Some APIs can only be used after this event occurs.
|
|
|
|
app.whenReady().then(() => { |
|
|
|
// Set app user model id for windows
|
|
|
|
electronApp.setAppUserModelId('com.electron') |
|
|
|
electronApp.setAppUserModelId("com.electron") |
|
|
|
|
|
|
|
// Default open or close DevTools by F12 in development
|
|
|
|
// and ignore CommandOrControl + R in production.
|
|
|
|
// see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils
|
|
|
|
app.on('browser-window-created', (_, window) => { |
|
|
|
app.on("browser-window-created", (_, window) => { |
|
|
|
optimizer.watchWindowShortcuts(window) |
|
|
|
}) |
|
|
|
|
|
|
|
// IPC test
|
|
|
|
ipcMain.on('ping', () => console.log(icon)) |
|
|
|
ipcMain.on("ping", () => console.log(icon)) |
|
|
|
|
|
|
|
createWindow() |
|
|
|
|
|
|
|
app.on('activate', function () { |
|
|
|
app.on("activate", function () { |
|
|
|
// On macOS 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() |
|
|
@ -69,8 +69,8 @@ app.whenReady().then(() => { |
|
|
|
// 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.on("window-all-closed", () => { |
|
|
|
if (process.platform !== "darwin") { |
|
|
|
app.quit() |
|
|
|
} |
|
|
|
}) |
|
|
|