-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron.js
79 lines (69 loc) · 1.73 KB
/
electron.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const electron = require('electron');
const { app } = electron;
const { BrowserWindow } = electron;
const { ipcMain, dialog } = 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;
});
ipcMain.on("dialog", (event) => {
const options = {
type: 'warning',
buttons: ['Sim', 'Não'],
defaultId: 1,
title: 'Confirmação',
message: 'Deseja realmente apagar esta informação?',
detail: 'O arquivo com esses dados será excluído',
cancelId: 1
};
if (dialog.showMessageBoxSync(mainWindow, options) === 0) {
event.returnValue = true;
}
else {
event.returnValue = false;
}
});
const path = require('path');
const isDev = require('electron-is-dev');
let mainWindow;
function createWindow() {
mainWindow = new BrowserWindow({
title: 'Tale Manager',
width: 800,
height: 600,
frame: false,
icon: `${__dirname}/public/img/electron-logo.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/react-logo.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();
}
});