-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
254 lines (227 loc) · 5.59 KB
/
index.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
const {app, BrowserWindow, Menu, Tray, dialog, globalShortcut, shell} = require('electron')
const ipc = require('electron').ipcMain
const fs = require("fs")
const path = require("path")
const client = require('discord-rich-presence')('546571212390662205')
const ewc = require('ewc')
function createWindow () {
// 创建浏览器窗口
win = new BrowserWindow({
width: 1280,
height: 800,
backgroundColor: '#00000000',
webPreferences: {
nodeIntegration: true
},
frame: false,
})
// 加载index.html文件
win.loadFile('index.html')
// 开发者工具
win.webContents.openDevTools()
// 监听最小化事件
ipc.on('hide', e => win.minimize())
// discord监听
ipc.on('name', (event, arg) => {
discord(arg[0], arg[1])
})
// 监听Github按钮事件
ipc.on('gogithub', e => shell.openExternal("https://github.com/oniyakun/NeteaseMusic-Client"))
// 监听拖拽和缩放事件
win.on("move", () => {
disableAcrylic();
enableAcrylic();
});
win.on("resize", () => {
disableAcrylic();
enableAcrylic();
})
win.on("blur", () => {
disableAcrylic();
})
win.on("focus", () => {
enableAcrylic();
})
}
// 设置托盘
let TrayMenu = [
{
label: "显示/隐藏窗口",
click: function () {
togglewindow()
}
},
{
label: "播放/暂停(Ctrl+空格)",
click: function () {
togglePlaying()
}
},
{
label: "上一首(Ctrl+左方向)",
click: function () {
prev()
discord_tray()
}
},
{
label: "下一首(Ctrl+右方向)",
click: function () {
next()
discord_tray()
}
},
{
label: "退出",
click: function () {
app.quit()
}
}
]
let tray = undefined
function createTray() {
tray = new Tray(path.join(__dirname, "img/tray.png"))
const contextMenu = Menu.buildFromTemplate(TrayMenu)
tray.setToolTip('网易云音乐')
tray.setContextMenu(contextMenu)
tray.on('click', function(e){togglewindow()})
}
async function togglewindow() {
win.isVisible() ? win.hide() : win.show()
}
// Discord rich Presence
function discord(title, artists){
client.updatePresence({
state: 'By: ' + artists,
details: 'Listening: ' + title,
largeImageKey: 'neteaselogo_512x512',
largeImageText: 'By Oniyakun',
});
}
// 创建任务栏媒体控制按钮
let mediaState = 0;
function mediaControl() {
if (mediaState == 0) {
win.setThumbarButtons([
{
tooltip: '上一首',
icon: path.join(__dirname, 'img/previous.png'),
click () {
prev();
discord_tray()
}
},
{
tooltip: '暂停',
icon: path.join(__dirname, 'img/pause.png'),
click () {
mediaState = 1;
mediaControl();
togglePlaying()
}
},
{
tooltip: '下一首',
icon: path.join(__dirname, 'img/next.png'),
click () {
next();
discord_tray()
}
}
])
} else {
win.setThumbarButtons([
{
tooltip: '上一首',
icon: path.join(__dirname, 'img/previous.png'),
click () {
mediaState = 0;
mediaControl();
prev();
discord_tray()
}
},
{
tooltip: '播放',
icon: path.join(__dirname, 'img/play.png'),
click () {
mediaState = 0;
mediaControl();
togglePlaying()
}
},
{
tooltip: '下一首',
icon: path.join(__dirname, 'img/next.png'),
click () {
mediaState = 0;
mediaControl();
next();
discord_tray()
}
}
])
}
}
// 托盘功能
function changeMenuText() {
win.on("show", () => {
TrayMenu[0].label = "隐藏窗口"
tray.setContextMenu(Menu.buildFromTemplate(TrayMenu))
})
win.on("hide", () => {
TrayMenu[0].label = "显示窗口"
tray.setContextMenu(Menu.buildFromTemplate(TrayMenu))
})
}
function togglePlaying() {
win.webContents.send('toggleplay')
}
function prev() {
win.webContents.send('prev')
}
function next() {
win.webContents.send('next')
}
function discord_tray() {
win.webContents.send('discord_tray')
}
// 防拖拽延迟
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this,
args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
}
// 定义关闭和开启毛玻璃的方法
const disableAcrylic = debounce(
() => {
ewc.setBlurBehind(win, 0xdd222222);
},
50,
true
);
const enableAcrylic = debounce(() => {
ewc.setAcrylic(win, 0x14800020);
}, 50);
// 创建窗口
app.on("ready", () => {
createWindow()
mediaControl()
ewc.setAcrylic(win, 0x14800020)
createTray()
changeMenuText()
// 创建快捷键
globalShortcut.register('Control+Left', prev)
globalShortcut.register('Control+Right', next)
globalShortcut.register('Control+Space', togglePlaying)
})