-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
143 lines (127 loc) · 3.55 KB
/
main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
const electron = require('electron');
const url = require('url');
const path = require('path');
const fs = require('fs');
const {app, BrowserWindow, Menu, dialog, ipcMain} = electron;
let mainWindow;
let addWindow;
let lines = 2;
let zad3Menu;
//Listen for app to be ready
app.on('ready', function(){
//Create new window
mainWindow = new BrowserWindow({
minWidth: 1200,
minHeight: 900,
icon: __dirname + '/assets/icons/win/icon.ico',
webPreferences: {
nodeIntegration: true
}
});
//Load html
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'main.html'),
protocol: 'file',
slashes: true
}));
//Quit when closed
mainWindow.on('close', function () {
app.quit();
});
//Build menu from template
const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
//Insert menu
Menu.setApplicationMenu(mainMenu);
ipcMain.on('lines', (e, data)=>{
lines = data.msg;
});
ipcMain.on('sendLines', (e)=>{
addWindow.webContents.send('data', {msg: lines});
});
ipcMain.on('point', (e, data)=>{
mainWindow.webContents.send('point', data);
});
ipcMain.on('showAddPoint', (e, data)=>{
addWindow = new BrowserWindow({
width: 600,
height: 400,
icon: __dirname + '/assets/icons/win/icon.ico',
webPreferences: {
nodeIntegration: true
},
parent: mainWindow
});
addWindow.resizable = false;
//Load html
addWindow.loadURL(url.format({
pathname: path.join(__dirname, 'inputPoints.html'),
protocol: 'file',
slashes: true
}));
//Quit when closed
addWindow.on('close', function () {
addWindow = null;
});
addWindow.setMenu(null);
});
});
//Create menu template
const mainMenuTemplate = [
{
label: 'Plik',
submenu:[
{
label: 'Załaduj plik z danymi',
accelerator: process.platform === 'darwin' ? 'Command+Z' : 'Ctrl+Z',
click(){
loadFile();
}
},
{
label: 'Wyjście',
accelerator: process.platform === 'darwin' ? 'Command+Q' : 'Ctrl+Q',
click(){
app.quit();
}
}
]
}
];
//Add developer tools
if(process.env.NODE_ENV !== 'production'){
mainMenuTemplate.push({
label: 'Dev tools',
submenu: [
{
label: 'Toggle dev tools',
accelerator: process.platform === 'darwin' ? 'Command+D' : 'Ctrl+D',
click(item, focusedWindow){
focusedWindow.toggleDevTools();
}
},
{
role: 'reload'
}
]
});
}
function loadFile() {
//Show dialog window
dialog.showOpenDialog(mainWindow, {
filters: [
{ name: 'Programy tekstowe', extensions: ['txt', 'csv'] }
],
properties: ['openFile']
}).then(result => {
fs.readFile(result.filePaths[0], 'utf-8', (err, data) => {
if(err){
alert("An error ocurred reading the file :" + err.message);
return;
}
//Send data to renderer window
mainWindow.webContents.send('data', {msg: data});
});
}).catch(err => {
console.log(err);
});
}