-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron.js
More file actions
61 lines (51 loc) · 1.3 KB
/
electron.js
File metadata and controls
61 lines (51 loc) · 1.3 KB
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
const electron = require('electron');
const { app } = electron;
const { BrowserWindow } = electron;
const { ipcMain } = require("electron");
ipcMain.on("minimize", ( ) => {
mainWindow.minimize()
});
ipcMain.on("maximize", ( ) => {
mainWindow.isMaximized() ? mainWindow.unmaximize() : mainWindow.maximize()
});
ipcMain.on("close", ( ) => {
mainWindow.close();
});
ipcMain.on("isDev", ( event ) => {
event.returnValue = isDev;
});
const path = require('path');
const isDev = require('electron-is-dev');
let mainWindow;
function createWindow() {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
frame: false,
icon: `${__dirname}/public/img/DungeonManager.png`,
webPreferences: {
nodeIntegration: true
},
});
mainWindow.loadURL(
isDev ? 'http://localhost:3000' : `file://${path.resolve(__dirname, '..', 'build', 'index.html')}`,
);
if (isDev) {
//mainWindow.webContents.openDevTools();
mainWindow.setIcon(path.join(__dirname, '/public/img/DungeonManagerHomologacao.png'));
}
mainWindow.on('closed', () => {
mainWindow = null;
});
}
app.on('ready', createWindow);
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (mainWindow === null) {
createWindow();
}
});