-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.js
61 lines (51 loc) · 1.34 KB
/
index.js
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
import path from 'path';
import { app, BrowserWindow, ipcMain } from 'electron';
import { showOpenDialog } from './dialogs';
import { processFile } from "./utils/processItems";
const isDevMode = process.env.NODE_ENV === 'development';
const createWindow = () => {
// Create the browser window.
const win = new BrowserWindow({
width: 800,
height: 600,
show: false,
webPreferences: {
contextIsolation: true,
devTools: isDevMode,
enableRemoteModule: false,
nodeIntegration: false,
preload: path.join(__dirname, 'preload.js')
}
});
// and load the index.html of the app.
if (isDevMode) {
win.loadURL('http://localhost:8080',{})
} else {
win.loadFile(path.join(__dirname, 'index.html'));
}
win.once('ready-to-show', () => {
win.show();
});
// Open the DevTools during development.
if(isDevMode) {
win.webContents.openDevTools();
}
};
app.on('ready', () => {
ipcMain.on('file-dropped', (event, data) => {
const [window] = BrowserWindow.getAllWindows();
showOpenDialog(window, data, processFile);
});
createWindow();
});
// Quit when all windows are closed.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});