-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
executable file
·835 lines (728 loc) · 23.9 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
const { app, BrowserWindow, screen, globalShortcut, ipcMain, shell, protocol, dialog } = require('electron');
const path = require('path');
const fs = require('fs');
const Datastore = require('nedb');
const prompt = require('electron-prompt');
const documentsPathDB = path.join(app.getPath('documents'), 'Volim Te App', 'Databases');
const { Client } = require('discord-rpc');
let windowWidth = 600;
let windowHeight = 300;
let mainWindow;
let loadingWindow;
const dbFilePath = path.join(documentsPathDB, 'nedb.db');
const settingsDBFilePath = path.join(documentsPathDB, 'settings.db');
const userDBFilePath = path.join(documentsPathDB, 'user.db');
const statsFilePath = path.join(documentsPathDB, 'stats.db');
const memoriesFilePath = path.join(documentsPathDB, 'milestones.db');
const gotSingleLock = app.requestSingleInstanceLock();
const clientId = '1231218760590032897';
let db;
let settingsDB;
let userDB;
let statsDB;
let milestonesDB;
let rpc;
if (!gotSingleLock) {
app.quit();
} else {
app.whenReady().then(() => {
db = new Datastore({ filename: dbFilePath, autoload: true });
settingsDB = new Datastore({ filename: settingsDBFilePath, autoload: true });
userDB = new Datastore({ filename: userDBFilePath, autoload: true });
statsDB = new Datastore({ filename: statsFilePath, autoload: true });
milestonesDB = new Datastore({ filename: memoriesFilePath, autoload: true });
settingsDB.findOne({}, (err, doc) => {
if (err) {
console.error('Error fetching configured window size from database:', err);
return;
}
if (doc && doc.width && doc.height) {
windowWidth = doc.width;
windowHeight = doc.height;
console.log('Visina: -> ' + windowHeight);
console.log('Sirina: -> ' + windowWidth);
createLoadingWindow();
} else {
createLoadingWindow();
}
});
app.on('activate', () => {
if (mainWindow === null) {
createWindow();
}
});
app.on('second-instance', () => {
if (mainWindow) {
if (mainWindow.isMinimized()) mainWindow.restore();
mainWindow.focus();
}
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('before-quit', () => {
globalShortcut.unregisterAll();
});
});
}
function createLoadingWindow() {
const displays = screen.getAllDisplays();
const targetDisplay = displays.find(display => display.bounds.x === 0 && display.bounds.y === 0) || displays[0];
const { workArea } = targetDisplay;
loadingWindow = new BrowserWindow({
x: workArea.x + workArea.width - windowWidth,
y: workArea.y,
width: windowWidth,
height: windowHeight,
frame: false,
skipTaskbar: false,
resizable: false,
transparent: true,
webPreferences: {
nodeIntegration: true,
},
});
settingsDB.findOne({}, (err, doc) => {
if (!err && doc && doc.x && doc.y) {
loadingWindow.setPosition(doc.x, doc.y);
}
});
loadingWindow.loadFile('src/loading.html');
setTimeout(() => {
loadingWindow.hide();
createWindow();
}, 3500);
}
function createWindow() {
if (mainWindow) {
mainWindow.focus();
return;
}
const displays = screen.getAllDisplays();
const targetDisplay = displays.find(display => display.bounds.x === 0 && display.bounds.y === 0) || displays[0];
const { workArea } = targetDisplay;
settingsDB.findOne({}, (err, doc) => {
if (!err && doc && doc.x && doc.y) {
const { x, y } = doc;
mainWindow = new BrowserWindow({
width: windowWidth,
height: windowHeight,
autoHideMenuBar: true,
frame: false,
skipTaskbar: true,
resizable: false,
hasShadow: true,
x,
y,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
sandbox: false,
devTools: true,
hardwareAcceleration: false,
webSecurity: true,
contentSecurityPolicy: {
directives: {
defaultSrc: ["self"],
scriptSrc: ["self", "https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"],
styleSrc: ["self"],
imgSrc: ["self"],
fontSrc: ["self"],
objectSrc: ["self"],
},
},
},
});
mainWindow.loadFile('src/index.html');
mainWindow.on('closed', () => {
mainWindow = null;
});
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url);
return { action: 'deny' };
});
} else {
const x = workArea.width - windowWidth;
const y = workArea.y;
mainWindow = new BrowserWindow({
width: windowWidth,
height: windowHeight,
autoHideMenuBar: true,
frame: false,
skipTaskbar: true,
resizable: false,
hasShadow: true,
x,
y,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
sandbox: false,
devTools: true,
hardwareAcceleration: false,
webSecurity: true,
contentSecurityPolicy: {
directives: {
defaultSrc: ["self"],
scriptSrc: ["self", "https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"],
styleSrc: ["self"],
imgSrc: ["self"],
fontSrc: ["self"],
objectSrc: ["self"],
},
},
},
});
mainWindow.loadFile('src/index.html');
mainWindow.on('closed', () => {
mainWindow = null;
});
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url);
return { action: 'deny' };
});
}
});
}
app.whenReady().then(() => { });
ipcMain.on('focusWindow', () => {
if (mainWindow) {
if (mainWindow.isMinimized()) mainWindow.restore();
mainWindow.focus();
}
});
ipcMain.on('save-memory', (event, memoryData) => {
db.insert(memoryData, (err, newMemory) => {
if (err) {
console.error('Error saving memory:', err);
return;
}
statsDB.update({}, { $inc: { memoriesMade: 1 } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating memories made count:', err);
return;
}
console.log('Memories made count updated in the database');
});
event.sender.send('memory-saved', newMemory);
});
});
ipcMain.on('save-milestone', (event, milestoneData) => {
milestonesDB.insert(milestoneData, (err, newMilestone) => {
if (err) {
console.error('Error saving milestone:', err);
return;
}
statsDB.update({}, { $inc: { milestonesMade: 1 } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating milestones made count:', err);
return;
}
console.log('Milestones made count updated in the database');
});
event.sender.send('milestone-saved', newMilestone);
});
});
ipcMain.on('fetch-memories', (event) => {
db.find({}, (err, memories) => {
if (err) {
console.error('Error fetching memories:', err);
return;
}
event.sender.send('memories-fetched', memories);
});
});
ipcMain.on('fetch-milestones', (event) => {
milestonesDB.find({}, (err, milestones) => {
if (err) {
console.error('Error fetching milestones:', err);
return;
}
event.sender.send('milestones-fetched', milestones);
});
});
ipcMain.on('delete-memory', (event, memoryId) => {
const confirmationDel = dialog.showMessageBoxSync({
type: 'question',
buttons: ['Yes', 'No'],
defaultId: 1,
title: 'Volim Te App asks:',
message: 'Are you sure you want to delete this memory?',
});
if (confirmationDel === 0) {
db.remove({ _id: memoryId }, {}, (err, numRemoved) => {
if (err) {
console.error('Error deleting memory:', err);
return;
}
event.sender.send('memory-deleted', memoryId);
});
}
});
ipcMain.on('delete-milestone', (event, milestoneId) => {
const confirmationDel = dialog.showMessageBoxSync({
type: 'question',
buttons: ['Yes', 'No'],
defaultId: 1,
title: 'Volim Te App asks:',
message: 'Are you sure you want to delete this milestone?',
});
if (confirmationDel === 0) {
milestonesDB.remove({ _id: milestoneId }, {}, (err, numRemoved) => {
if (err) {
console.error('Error deleting milestone:', err);
return;
}
event.sender.send('milestone-deleted', milestoneId);
});
}
});
ipcMain.on('clear-database', () => {
db.remove({}, { multi: true });
settingsDB.remove({}, { multi: true });
userDB.remove({}, { multi: true });
statsDB.remove({}, { multi: true });
milestonesDB.remove({}, { multi: true });
});
ipcMain.on('configure-window-size', (event) => {
try {
const prompt = require('electron-prompt');
prompt({
title: 'Enter the width and height for the app (comma-separated)',
icon: './src/images/icon.ico',
label: 'Changing width and height will lead to unexpected layout issues if done wrong',
value: windowWidth + ',' + windowHeight,
inputAttrs: {
type: 'text',
},
type: 'input',
width: 650,
height: 200,
alwaysOnTop: true,
})
.then((result) => {
console.log('Prompt result:', result);
if (result === null) {
console.error('Invalid width or height input.');
return;
}
const [width, height] = result.split(',').map(val => parseInt(val.trim(), 10) || 600);
if (mainWindow) {
mainWindow.setSize(width, height);
}
if (loadingWindow) {
loadingWindow.setSize(width, height);
}
const configuredWindowSize = { width, height };
settingsDB.update({}, configuredWindowSize, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating configured window size:', err);
return;
}
console.log('Configured window size updated in the database:', configuredWindowSize);
});
console.log(`Configuring app with width: ${width}px, height: ${height}px`);
})
.catch((error) => {
console.error('Error configuring window size:', error);
});
} catch (error) {
console.error('Error configuring window size:', error);
}
});
ipcMain.on('configure-window-location', (event) => {
try {
if (mainWindow) {
const [locationX, locationY] = mainWindow.getPosition();
const configuredWindowLocation = { x: locationX, y: locationY };
settingsDB.update({}, configuredWindowLocation, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating configured window location:', err);
return;
}
console.log('Configured window location updated in the database:', configuredWindowLocation);
});
console.log(`Configuring app at X: ${locationX}px, Y: ${locationY}px`);
}
} catch (error) {
console.error('Error configuring window location:', error);
}
});
//CARDS
ipcMain.on('check-username-exists', (event) => {
userDB.findOne({}, (err, doc) => {
if (err) {
console.error('Error checking username existence:', err);
return;
}
event.reply('username-exists-response', doc ? doc.username : null);
});
});
ipcMain.on('check-soulmate-exists', (event) => {
userDB.findOne({}, (err, doc) => {
if (err) {
console.error('Error checking soulmate existence:', err);
return;
}
event.reply('soulmate-exists-response', doc ? doc.soulmate : null);
});
});
ipcMain.on('save-username', (event, username) => {
userDB.update({}, { $set: { username } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating username:', err);
return;
}
console.log('Username saved in the database:', username);
mainWindow.webContents.send('username-saved', username);
});
});
ipcMain.on('save-soulmate', (event, soulmate) => {
userDB.update({}, { $set: { soulmate } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating soulmate:', err);
return;
}
console.log('Soulmate saved in the database:', soulmate);
mainWindow.webContents.send('soulmate-saved', soulmate);
});
});
ipcMain.on('change-username', (event) => {
prompt({
title: 'Volim Te App',
icon: './src/images/icon.ico',
label: 'Please enter your new username:',
value: 'Your Name',
inputAttrs: {
type: 'text',
},
type: 'input',
width: 470,
height: 200,
alwaysOnTop: true,
})
.then((result) => {
if (result === null) {
console.error('User canceled the operation.');
return;
}
const newUsername = result;
userDB.update({}, { $set: { username: newUsername } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating username:', err);
return;
}
console.log('Username saved in the database:', newUsername);
mainWindow.webContents.send('username-saved', newUsername);
});
})
.catch((error) => {
console.error('Error updating username:', error);
});
});
ipcMain.on('change-soulmate', (event) => {
prompt({
title: 'Volim Te App',
icon: './src/images/icon.ico',
label: 'Please enter the name of a soulmate:',
value: 'Your Love',
inputAttrs: {
type: 'text',
},
type: 'input',
width: 470,
height: 200,
alwaysOnTop: true,
})
.then((result) => {
if (result === null) {
console.error('User canceled the operation.');
return;
}
const newSoulmate = result;
userDB.update({}, { $set: { soulmate: newSoulmate } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating soulmate:', err);
return;
}
console.log('Soulmate saved in the database:', newSoulmate);
mainWindow.webContents.send('soulmate-saved', newSoulmate);
});
})
.catch((error) => {
console.error('Error updating soulmate:', error);
});
});
ipcMain.on('start-discord', (event) => {
rpc = new Client({ transport: 'ipc' });
rpc.on('ready', () => {
console.log('Discord RPC client is ready');
event.sender.send('discord-status', 'online');
const presenceData = {
state: 'In a relationship',
details: 'Enjoying',
largeImageKey: 'untitled-1',
largeImageText: 'www.sehic.rf.gd/volimte',
startTimestamp: Math.floor(Date.now() / 1000),
};
rpc.setActivity(presenceData)
.then(() => console.log('Rich Presence updated'))
.catch(error => console.error('Error updating Rich Presence:', error));
});
rpc.on('error', error => {
console.error('Discord RPC client error:', error);
event.sender.send('discord-status', 'error');
});
rpc.login({ clientId }).catch(error => {
console.error('Error logging in to Discord:', error);
event.sender.send('discord-status', 'error');
});
});
ipcMain.on('stop-discord', (event) => {
if (rpc) {
rpc.destroy();
console.log('Disconnected from Discord RPC');
event.sender.send('discord-status', 'offline');
} else {
console.warn('Discord RPC client is not initialized');
event.sender.send('discord-status', 'offline');
}
});
function generatePdf(type, lang, username, soulmate) {
console.log('Opening PDF window...');
console.log('Language: ', lang);
console.log('Type: ', type);
const pdfWindow = new BrowserWindow({
show: false,
webPreferences: {
nodeIntegration: true,
},
});
if (!(lang === null)) {
if (type === 'cardBirthday') {
if (lang === 'ba') {
pdfWindow.loadFile('./src/cards/birthday-ba.html');
}
else if (lang === 'eng') {
pdfWindow.loadFile('./src/cards/birthday-eng.html');
}
}
else if (type === 'cardValentine') {
if (lang === 'ba') {
pdfWindow.loadFile('./src/cards/valentine-ba.html');
}
else if (lang === 'eng') {
pdfWindow.loadFile('./src/cards/valentine-eng.html');
}
}
else if (type === 'cardAnniversary') {
if (lang === 'ba') {
pdfWindow.loadFile('./src/cards/anniversary-ba.html');
}
else if (lang === 'eng') {
pdfWindow.loadFile('./src/cards/anniversary-eng.html');
}
}
else if (type === 'cardMarriageCertificate') {
if (lang === 'ba') {
pdfWindow.loadFile('./src/cards/marriage-cert-ba.html');
}
else if (lang === 'eng') {
pdfWindow.loadFile('./src/cards/marriage-cert-eng.html');
}
}
else if (type === 'cardApology') {
if (lang === 'ba') {
pdfWindow.loadFile('./src/cards/apology-ba.html');
}
else if (lang === 'eng') {
pdfWindow.loadFile('./src/cards/apology-eng.html');
}
}
}
else {
dialog.showMessageBox({
type: 'error',
buttons: ['OK'],
defaultId: 0,
title: 'Volim Te App',
message: 'Please select a language for your card.',
});
pdfWindow.close();
return;
}
pdfWindow.webContents.on('did-finish-load', () => {
console.log('PDF window loaded successfully.');
pdfWindow.webContents.executeJavaScript(`
var username = decodeURIComponent('${encodeURIComponent(username)}');
var soulmate = decodeURIComponent('${encodeURIComponent(soulmate)}');
document.getElementById('soulmate').innerText = soulmate;
document.getElementById('username').innerText = username;
`);
pdfWindow.webContents.send('set-parameters', { username, soulmate });
console.log('Parameters sent to renderer process.');
console.log('Parameters injected into HTML.');
// Generate PDF
const pdfOptions = {
landscape: false,
marginsType: 1,
printBackground: true,
printSelectionOnly: false,
pageSize: 'A4',
scaleFactor: 1,
};
console.log('Generating PDF...');
setTimeout(() => {
pdfWindow.webContents.printToPDF(pdfOptions, (error, pdfBuffer) => {
if (error) {
console.error('Error generating PDF:', error);
return;
}
console.log('PDF generated successfully.');
const pdfFolderPath = path.join(app.getPath('documents'), 'Volim Te App', 'Cards');
if (!fs.existsSync(pdfFolderPath)) {
fs.mkdirSync(pdfFolderPath, { recursive: true });
}
const pdfFilePath = path.join(pdfFolderPath, type + '-language-' + lang + '-volim-te-app.pdf');
fs.writeFile(pdfFilePath, pdfBuffer, (error) => {
if (error) {
console.error('Error saving PDF:', error);
return;
}
console.log('PDF saved to:', pdfFilePath);
pdfWindow.close();
require('electron').shell.openPath(pdfFilePath);
console.log('PDF window closed.');
});
});
}, 1000);
});
}
ipcMain.on('generate-pdf', (event, args) => {
console.log('Received generate-pdf message:', args);
const { type, lang, username, soulmate } = args;
generatePdf(type, lang, username, soulmate);
statsDB.update({}, { $inc: { generatedCards: 1 } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating generated cards count:', err);
return;
}
console.log('Generated cards count updated in the database');
});
});
//stats
ipcMain.on('update-stats', (event, formattedTodaysDate) => {
statsDB.update({}, { $set: { dateJoined: formattedTodaysDate } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating stats:', err);
return;
}
console.log('Stats updated in the database with today\'s date:', formattedTodaysDate);
event.sender.send('stats-updated', formattedTodaysDate);
});
});
ipcMain.on('update-launch-count', () => {
statsDB.update({}, { $inc: { launchCount: 1 } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating launch count:', err);
return;
}
console.log('Launch count updated in the database');
});
});
function updateBackgroundStat() {
statsDB.update({}, { $inc: { backgroundsStat: 1 } }, { upsert: true }, (err, numReplaced) => {
if (err) {
console.error('Error updating backgrounds stat:', err);
return;
}
console.log('Backgrounds stat updated in the database');
});
}
ipcMain.on('open-file-dialog', (event) => {
const destinationFolder = path.join(app.getPath('documents'), 'Volim Te App', 'Images');
dialog.showOpenDialog({
defaultPath: destinationFolder,
properties: ['openFile'],
filters: [
{ name: 'Images', extensions: ['jpg', 'png', 'gif'] },
],
})
.then((result) => {
if (!result.canceled && result.filePaths.length > 0) {
const selectedImagePath = result.filePaths[0];
if (!fs.existsSync(destinationFolder)) {
fs.mkdirSync(destinationFolder, { recursive: true });
}
const fileName = path.basename(selectedImagePath);
const destinationPath = path.join(destinationFolder, fileName);
fs.copyFileSync(selectedImagePath, destinationPath);
event.reply('file-dialog-closed', destinationPath);
updateBackgroundStat();
}
})
.catch((error) => {
console.error('Error opening file dialog:', error);
});
});
ipcMain.on('update-backgrounds-stat', () => {
updateBackgroundStat();
});
ipcMain.on('request-stats', (event) => {
statsDB.findOne({}, (err, stats) => {
if (err) {
console.error('Error fetching stats:', err);
return;
}
event.sender.send('stats-response', stats || { dateJoined: null, launchCount: 0, generatedCards: 0, memoriesMade: 0, milestonesMade: 0, backgroundsStat: 0 });
});
});
ipcMain.on('update-available', (event) => {
const confirmation = dialog.showMessageBoxSync({
type: 'question',
buttons: ['Yes', 'No'],
defaultId: 1,
title: 'Volim Te App asks:',
message: 'New update is available. Update now?',
});
if (confirmation === 0) {
shell.openExternal('https://sehic.rf.gd/volimte#download');
}
});
ipcMain.on('app-quit', (event) => {
const confirmation = dialog.showMessageBoxSync({
type: 'question',
buttons: ['Yes', 'No'],
defaultId: 1,
title: 'Volim Te App asks:',
message: 'Are you sure you want to leave Volim Te App?',
});
if (confirmation === 0) {
app.quit();
}
});
ipcMain.on('ask-reset', (event) => {
dialog.showMessageBox({
type: 'question',
buttons: ['Reset', 'Cancel'],
defaultId: 1,
icon: './src/images/icon-uninstaller.ico',
title: 'Confirmation',
message: 'Are you sure you want to reset settings?',
})
.then((confirmation) => {
event.reply('reset-confirmation', confirmation.response === 0);
})
.catch((error) => {
console.error('Error showing reset confirmation dialog:', error);
});
});
app.on('before-quit', () => {
globalShortcut.unregisterAll();
db.persistence.compactDatafile();
settingsDB.persistence.compactDatafile();
userDB.persistence.compactDatafile();
statsDB.persistence.compactDatafile();
});