-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.js
143 lines (128 loc) · 3.59 KB
/
core.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 { app, BrowserWindow, Tray, Menu, Notification } = require('electron');
const path = require('path');
let mainWindow;
let tray = null;
function createWindow() {
mainWindow = new BrowserWindow({
width: 1000,
height: 700,
webPreferences: {
contextIsolation: true,
},
show: false, // Fenster wird nicht sofort angezeigt
});
mainWindow.loadURL('https://mail.google.com/');
// Menüvorlage erstellen
const menuTemplate = [
{
label: 'Optionen', // Hauptmenüpunkt
submenu: [
{
label: 'Einstellungen',
click: () => {
console.log('Einstellungen geöffnet');
}
},
{
label: 'Über',
click: () => {
console.log('Über geöffnet');
}
},
{
type: 'separator' // Trenner
},
{
label: 'Beenden',
click: () => {
app.isQuiting = true;
mainWindow.close(); // Schließt das Fenster
app.quit(); // Beendet die App vollständig
}
}
]
},
{
label: 'Hilfe', // Ein weiteres Menü
submenu: [
{
label: 'Dokumentation',
click: () => {
console.log('Dokumentation geöffnet');
}
}
]
}
];
// Menü aus der Vorlage erstellen und anwenden
const menu = Menu.buildFromTemplate(menuTemplate);
Menu.setApplicationMenu(menu); // Menü setzen
// Verhindert das Schließen des Fensters und minimiert es stattdessen
mainWindow.on('close', (event) => {
if (!app.isQuiting) {
event.preventDefault();
mainWindow.hide(); // Fenster wird minimiert
}
});
// Tray-Icon erstellen
tray = new Tray(path.join(__dirname, 'tray-icon.png')); // Dein Tray-Icon (stelle sicher, dass es existiert)
tray.setToolTip('SunLight Mail Manager');
// Tray Kontext-Menü
const contextMenu = Menu.buildFromTemplate([
{
label: 'Öffnen',
click: () => {
mainWindow.show(); // Fenster wiederherstellen
}
},
{
label: 'Beenden',
click: () => {
app.isQuiting = true;
mainWindow.close(); // Fenster schließen
app.quit(); // Beendet die App vollständig
}
}
]);
tray.setContextMenu(contextMenu);
// Fenster wird nach dem Erstellen angezeigt, wenn es nicht minimiert ist
mainWindow.once('ready-to-show', () => {
mainWindow.show();
});
}
// Funktion zum Erstellen und Anzeigen von Benachrichtigungen
function showNotification(title, body) {
new Notification({
title: title,
body: body,
}).show();
}
// Single Instance-Logik
const gotTheLock = app.requestSingleInstanceLock();
if (!gotTheLock) {
app.quit(); // Wenn eine Instanz bereits läuft, beende die Anwendung
} else {
app.whenReady().then(createWindow);
// Bei einem neuen Aufruf der Anwendung das Fenster nur anzeigen, wenn es minimiert ist
app.on('second-instance', () => {
if (mainWindow) {
if (mainWindow.isMinimized()) {
mainWindow.restore(); // Stelle das Fenster wieder her, wenn es minimiert ist
}
mainWindow.show(); // Zeige das Fenster, falls es noch versteckt ist
mainWindow.focus(); // Fokussiere das Fenster
}
});
// Wenn das Fenster geschlossen wird (X), dann wird der Prozess beendet
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
// Auf MacOS: Wenn keine Fenster offen sind, ein neues erstellen
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
}