-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cjs
65 lines (56 loc) · 1.55 KB
/
main.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// main.cjs
const { app, BrowserWindow, ipcMain, dialog } = require('electron');
const path = require('path');
const { registerHandlers } = require('./src/ipc/registerHandlers.cjs');
function createWindow() {
const preloadPath = app.isPackaged
? path.join(__dirname, 'preload.js')
: path.join(__dirname, 'preload.js');
const mainWindow = new BrowserWindow({
width: 400,
height: 300,
frame: false,
webPreferences: {
nodeIntegration: false,
contextIsolation: true,
preload: preloadPath
}
});
// Enable file drops - IDK what this does
mainWindow.webContents.on('will-navigate', (e) => {
e.preventDefault();
});
// File selection handler
ipcMain.handle('select-files', async () => {
const result = await dialog.showOpenDialog({
properties: ['openFile', 'multiSelections'],
filters: [
{ name: 'Images', extensions: ['jpg', 'jpeg', 'png', 'gif'] }
]
});
if (!result.canceled) {
return result.filePaths;
}
return [];
});
// Load the correct URL
if (process.env.ELECTRON_IS_DEV) {
mainWindow.loadURL('http://localhost:3001'); // Make sure this port matches your webpack dev server
} else {
mainWindow.loadFile(path.join(__dirname, '..', 'renderer', 'index.html'));
}
}
app.whenReady().then(() => {
createWindow();
registerHandlers();
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});