-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathtray.ts
306 lines (267 loc) · 9.49 KB
/
tray.ts
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
import { Menu, Tray, BrowserWindow } from "electron";
import path from "path";
import windowService from "./window.js";
import optionService from "./options.js";
import { fileURLToPath } from "url";
import type { KeyboardActionNames } from "./keyboard_actions_interface.js";
import date_notes from "./date_notes.js";
import type BNote from "../becca/entities/bnote.js";
import becca from "../becca/becca.js";
import becca_service from "../becca/becca_service.js";
import type BRecentNote from "../becca/entities/brecent_note.js";
import { ipcMain, nativeTheme } from "electron/main";
import { default as i18next, t } from "i18next";
import { isDev, isMac } from "./utils.js";
import cls from "./cls.js";
let tray: Tray;
// `mainWindow.isVisible` doesn't work with `mainWindow.show` and `mainWindow.hide` - it returns `false` when the window
// is minimized
let windowVisibilityMap: Record<number, boolean> = {};; // Dictionary for storing window ID and its visibility status
function getTrayIconPath() {
let name: string;
if (isMac) {
name = "icon-blackTemplate";
} else if (isDev) {
name = "icon-purple";
} else {
name = "icon-color";
}
return path.join(path.dirname(fileURLToPath(import.meta.url)), "../..", "images", "app-icons", "tray", `${name}.png`);
}
function getIconPath(name: string) {
const suffix = !isMac && nativeTheme.shouldUseDarkColors ? "-inverted" : "";
return path.join(path.dirname(fileURLToPath(import.meta.url)), "../..", "images", "app-icons", "tray", `${name}Template${suffix}.png`);
}
function registerVisibilityListener(window: BrowserWindow) {
if (!window) {
return;
}
// They need to be registered before the tray updater is registered
window.on("show", () => {
windowVisibilityMap[window.id] = true;
updateTrayMenu();
});
window.on("hide", () => {
windowVisibilityMap[window.id] = false;
updateTrayMenu();
});
window.on("minimize", updateTrayMenu);
window.on("maximize", updateTrayMenu);
}
function getWindowTitle(window: BrowserWindow | null) {
if (!window) {
return;
}
const title = window.getTitle();
const titleWithoutAppName = title.replace(/\s-\s[^-]+$/, ''); // Remove the name of the app
// Limit title maximum length to 17
if (titleWithoutAppName.length > 20) {
return titleWithoutAppName.substring(0, 17) + '...';
}
return titleWithoutAppName;
}
function updateWindowVisibilityMap(allWindows: BrowserWindow[]) {
const currentWindowIds: number[] = allWindows.map(window => window.id);
// Deleting closed windows from windowVisibilityMap
for (const [id, visibility] of Object.entries(windowVisibilityMap)) {
const windowId = Number(id);
if (!currentWindowIds.includes(windowId)) {
delete windowVisibilityMap[windowId];
}
}
// Iterate through allWindows to make sure the ID of each window exists in windowVisibilityMap
allWindows.forEach(window => {
const windowId = window.id;
if (!(windowId in windowVisibilityMap)) {
// If it does not exist, it is the newly created window
windowVisibilityMap[windowId] = true;
registerVisibilityListener(window);
}
});
}
function updateTrayMenu() {
if (!tray) {
return;
}
const lastFocusedWindow = windowService.getLastFocusedWindow();
const allWindows = windowService.getAllWindows();
updateWindowVisibilityMap(allWindows);
function ensureVisible(win: BrowserWindow) {
if (win) {
win.show();
win.focus();
}
}
function openNewWindow() {
if (lastFocusedWindow){
lastFocusedWindow.webContents.send("globalShortcut", "openNewWindow");
}
}
function triggerKeyboardAction(actionName: KeyboardActionNames) {
if (lastFocusedWindow){
lastFocusedWindow.webContents.send("globalShortcut", actionName);
ensureVisible(lastFocusedWindow);
}
}
function openInSameTab(note: BNote | BRecentNote) {
if (lastFocusedWindow){
lastFocusedWindow.webContents.send("openInSameTab", note.noteId);
ensureVisible(lastFocusedWindow);
}
}
function buildBookmarksMenu() {
const parentNote = becca.getNoteOrThrow("_lbBookmarks");
const menuItems: Electron.MenuItemConstructorOptions[] = [];
for (const bookmarkNote of parentNote?.children) {
if (bookmarkNote.isLabelTruthy("bookmarkFolder")) {
menuItems.push({
label: bookmarkNote.title,
type: "submenu",
submenu: bookmarkNote.children.map((subitem) => {
return {
label: subitem.title,
type: "normal",
click: () => openInSameTab(subitem)
};
})
});
} else {
menuItems.push({
label: bookmarkNote.title,
type: "normal",
click: () => openInSameTab(bookmarkNote)
});
}
}
return menuItems;
}
function buildRecentNotesMenu() {
const recentNotes = becca.getRecentNotesFromQuery(`
SELECT recent_notes.*
FROM recent_notes
JOIN notes USING(noteId)
WHERE notes.isDeleted = 0
ORDER BY utcDateCreated DESC
LIMIT 10
`);
const menuItems: Electron.MenuItemConstructorOptions[] = [];
const formatter = new Intl.DateTimeFormat(undefined, {
dateStyle: "short",
timeStyle: "short"
});
for (const recentNote of recentNotes) {
const date = new Date(recentNote.utcDateCreated);
menuItems.push({
label: becca_service.getNoteTitle(recentNote.noteId),
type: "normal",
sublabel: formatter.format(date),
click: () => openInSameTab(recentNote)
});
}
return menuItems;
}
const windowVisibilityMenuItems: Electron.MenuItemConstructorOptions[] = [];
// Only call getWindowTitle if windowVisibilityMap has more than one window
const showTitle = Object.keys(windowVisibilityMap).length > 1;
for (const idStr in windowVisibilityMap) {
const id = parseInt(idStr, 10); // Get the ID of the window and make sure it is a number
const isVisible = windowVisibilityMap[id];
const win = allWindows.find(w => w.id === id);
if (!win) {
continue;
}
windowVisibilityMenuItems.push({
label: showTitle ? `${t("tray.show-windows")}: ${getWindowTitle(win)}` : t("tray.show-windows"),
type: "checkbox",
checked: isVisible,
click: () => {
if (isVisible) {
win.hide();
windowVisibilityMap[id] = false;
} else {
ensureVisible(win);
windowVisibilityMap[id] = true;
}
}
});
}
const contextMenu = Menu.buildFromTemplate([
...windowVisibilityMenuItems,
{ type: "separator" },
{
label: t("tray.open_new_window"),
type: "normal",
icon: getIconPath("new-window"),
click: () => openNewWindow()
},
{
label: t("tray.new-note"),
type: "normal",
icon: getIconPath("new-note"),
click: () => triggerKeyboardAction("createNoteIntoInbox")
},
{
label: t("tray.today"),
type: "normal",
icon: getIconPath("today"),
click: cls.wrap(() => openInSameTab(date_notes.getTodayNote()))
},
{
label: t("tray.bookmarks"),
type: "submenu",
icon: getIconPath("bookmarks"),
submenu: buildBookmarksMenu()
},
{
label: t("tray.recents"),
type: "submenu",
icon: getIconPath("recents"),
submenu: buildRecentNotesMenu()
},
{ type: "separator" },
{
label: t("tray.close"),
type: "normal",
icon: getIconPath("close"),
click: () => {
const windows = BrowserWindow.getAllWindows();
windows.forEach(window => {
window.close();
});
}
}
]);
tray?.setContextMenu(contextMenu);
}
function changeVisibility() {
const lastFocusedWindow = windowService.getLastFocusedWindow();
if (!lastFocusedWindow) {
return;
}
// If the window is visible, hide it
if (windowVisibilityMap[lastFocusedWindow.id]) {
lastFocusedWindow.hide();
} else {
lastFocusedWindow.show();
lastFocusedWindow.focus();
}
}
function createTray() {
if (optionService.getOptionBool("disableTray")) {
return;
}
tray = new Tray(getTrayIconPath());
tray.setToolTip(t("tray.tooltip"));
// Restore focus
tray.on("click", changeVisibility);
updateTrayMenu();
if (!isMac) {
// macOS uses template icons which work great on dark & light themes.
nativeTheme.on("updated", updateTrayMenu);
}
ipcMain.on("reload-tray", updateTrayMenu);
i18next.on("languageChanged", updateTrayMenu);
}
export default {
createTray
};