forked from th-ch/youtube-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtray.ts
105 lines (86 loc) · 2.15 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
import path from 'node:path';
import { Menu, nativeImage, Tray } from 'electron';
import { restart } from './providers/app-controls';
import config from './config';
import getSongControls from './providers/song-controls';
import { getAssetsDirectoryLocation } from './plugins/utils';
import type { MenuTemplate } from './menu';
// Prevent tray being garbage collected
let tray: Electron.Tray | undefined;
type TrayEvent = (event: Electron.KeyboardEvent, bounds: Electron.Rectangle) => void;
export const setTrayOnClick = (fn: TrayEvent) => {
if (!tray) {
return;
}
tray.removeAllListeners('click');
tray.on('click', fn);
};
// Won't do anything on macOS since its disabled
export const setTrayOnDoubleClick = (fn: TrayEvent) => {
if (!tray) {
return;
}
tray.removeAllListeners('double-click');
tray.on('double-click', fn);
};
export const setUpTray = (app: Electron.App, win: Electron.BrowserWindow) => {
if (!config.get('options.tray')) {
tray = undefined;
return;
}
const { playPause, next, previous } = getSongControls(win);
const iconPath = path.join(getAssetsDirectoryLocation(), 'youtube-music-tray.png');
const trayIcon = nativeImage.createFromPath(iconPath).resize({
width: 16,
height: 16,
});
tray = new Tray(trayIcon);
tray.setToolTip('YouTube Music');
// MacOS only
tray.setIgnoreDoubleClickEvents(true);
tray.on('click', () => {
if (config.get('options.trayClickPlayPause')) {
playPause();
} else if (win.isVisible()) {
win.hide();
app.dock?.hide();
} else {
win.show();
app.dock?.show();
}
});
const template: MenuTemplate = [
{
label: 'Play/Pause',
click() {
playPause();
},
},
{
label: 'Next',
click() {
next();
},
},
{
label: 'Previous',
click() {
previous();
},
},
{
label: 'Show',
click() {
win.show();
app.dock?.show();
},
},
{
label: 'Restart App',
click: restart,
},
{ role: 'quit' },
];
const trayMenu = Menu.buildFromTemplate(template);
tray.setContextMenu(trayMenu);
};