bdcf4fe299
- Move main process to electron/main/ - Move preload to electron/preload/ - Add shared types in electron/shared/ - Split redis-service into modular redis/ directory - Flatten renderer to src/ (remove src/renderer/ nesting) - Update electron.vite.config.ts paths - Update tsconfig paths - Output to electron-dist/
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
// src/main/index.ts
|
|
import { app, BrowserWindow, nativeTheme, nativeImage } from 'electron'
|
|
import { join } from 'path'
|
|
import { restoreAndTrack } from './win-state'
|
|
import { registerIpcHandlers } from './ipc-handlers'
|
|
|
|
let mainWindow: BrowserWindow | null = null
|
|
|
|
function getIconPath(): string {
|
|
return join(__dirname, '../../build/icons/icon_256.png')
|
|
}
|
|
|
|
function createWindow(): void {
|
|
const iconPath = getIconPath()
|
|
|
|
mainWindow = new BrowserWindow({
|
|
width: 1200,
|
|
height: 800,
|
|
minWidth: 900,
|
|
minHeight: 600,
|
|
title: 'JRedisDesktop',
|
|
icon: nativeImage.createFromPath(iconPath),
|
|
backgroundColor: nativeTheme.shouldUseDarkColors ? '#0f0f1a' : '#f8fafc',
|
|
webPreferences: {
|
|
preload: join(__dirname, '../preload/index.mjs'),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: false,
|
|
},
|
|
frame: false,
|
|
titleBarStyle: 'hidden',
|
|
})
|
|
|
|
// Linux taskbar icon
|
|
if (process.platform === 'linux' && mainWindow) {
|
|
mainWindow.setIcon(nativeImage.createFromPath(iconPath))
|
|
}
|
|
|
|
restoreAndTrack(mainWindow)
|
|
|
|
if (process.env.ELECTRON_RENDERER_URL) {
|
|
mainWindow.loadURL(process.env.ELECTRON_RENDERER_URL)
|
|
mainWindow.webContents.openDevTools()
|
|
} else {
|
|
mainWindow.loadFile(join(__dirname, '../renderer/index.html'))
|
|
}
|
|
|
|
mainWindow.on('closed', () => { mainWindow = null })
|
|
|
|
nativeTheme.on('updated', () => {
|
|
mainWindow?.webContents.send('theme:os-updated', nativeTheme.shouldUseDarkColors)
|
|
})
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
registerIpcHandlers()
|
|
createWindow()
|
|
})
|
|
|
|
app.on('window-all-closed', () => { app.quit() })
|
|
|
|
app.on('activate', () => {
|
|
if (BrowserWindow.getAllWindows().length === 0) createWindow()
|
|
})
|