FIX: ipc & app id

This commit is contained in:
Robert Kossessa
2024-03-01 21:32:42 +01:00
parent f9f3252b33
commit 14e317d473
2 changed files with 48 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
import { app, shell, BrowserWindow, ipcMain, Menu, MenuItem, globalShortcut } from 'electron'
import { app, shell, BrowserWindow, ipcMain, Menu, MenuItem } from 'electron'
import { join } from 'path'
import { electronApp, optimizer, is } from '@electron-toolkit/utils'
import icon from '../../resources/icon.png?asset'
@@ -28,40 +28,6 @@ const appMenu = {
}
}
// Default main window function from electron-vite
// Kept for reference
function createWindow(): void {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 900,
height: 670,
show: false,
autoHideMenuBar: true,
...(process.platform === 'linux' ? { icon } : {}),
webPreferences: {
preload: join(__dirname, '../preload/index.js'),
sandbox: false
}
})
mainWindow.on('ready-to-show', () => {
mainWindow.show()
})
mainWindow.webContents.setWindowOpenHandler((details) => {
shell.openExternal(details.url)
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'])
} else {
mainWindow.loadFile(join(__dirname, '../renderer/index.html'))
}
}
const createMainWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
@@ -100,6 +66,11 @@ const createMainWindow = () => {
mainWindow.webContents.send('electron:unmaximized')
})
mainWindow.webContents.setWindowOpenHandler((details) => {
shell.openExternal(details.url)
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']) {
@@ -165,7 +136,7 @@ const createLoadingWindow = (mainWindow) => {
// 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('ZERO/ONE')
// Default open or close DevTools by F12 in development
// and ignore CommandOrControl + R in production.
@@ -257,7 +228,13 @@ app.whenReady().then(() => {
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()
if (BrowserWindow.getAllWindows().length === 0) {
const mainWindow = createMainWindow()
mainWindow.webContents.once('did-finish-load', () => {
mainWindow.show()
mainWindow.focus()
})
}
})
})