-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.js
574 lines (553 loc) · 17.4 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
// 导入模块,不能使用ES6的语法
const {
app,
BrowserWindow,
Menu,
ipcMain,
shell,
globalShortcut,
Notification,
dialog,
powerSaveBlocker,
} = require("electron");
const path = require("path");
const WinState = require("electron-win-state").default;
const fs = require("fs");
// 检查是否已经有一个实例运行
const isSingleInstance = app.requestSingleInstanceLock();
if (!isSingleInstance) {
// 如果已经有一个实例在运行,关闭当前实例并退出
app.quit();
}
let isDev = false;
async function checkIsDev() {
const module = await import("electron-is-dev");
isDev = module.default;
// 全局捕获一下
try {
console.log(isDev);
work();
} catch (error) {
dialog.showMessageBox({
type: "error", // 对话框类型
title: "未知错误", // 标题栏文本
message: "未知错误,请联系开发者", // 主消息文本
// detail: error.message, // 详细错误信息
buttons: ["确定"], // 对话框按钮
});
}
}
checkIsDev();
const work = () => {
if (process.platform === "win32") {
app.setAppUserModelId(app.name);
}
// 创建一个窗口
let win = null;
let globalSettings = []; // 用户全局配置 position:0|voice:1
// 创建主窗口
const createWindow = () => {
// 防止打开两个主窗口程序
if (win != null) {
return;
}
const winState = new WinState({});
win = new BrowserWindow({
...WinState.winOptions,
icon: "public/icons/icon.png", // 指定图标路径
webPreferences: {
devTools: false,
webSecurity: false, // 禁用 Web 安全策略
nodeIntegration: true, // 启用集成
backgroundThrottling: false, // 取消节流
// 不安全,不建议使用
// nodeIntegration: true, // 启用Node.js集成
// contextIsolation: false, // 取消上下文隔离
sandbox: false, // 取消沙箱模式
preload: path.resolve(__dirname, "./preload"), // 在预加载脚本中执行 Electron API
},
});
win.setSize(1100, 700); // 显式设置窗口大小,因为之前的大小被缓存了
win.center(); // 使窗口居中
win.setMenu(null); // 去掉窗口
if (isDev) {
win.loadURL("http://localhost:5173");
} else {
win.loadFile(path.join("dist", "index.html"));
}
// win.webContents.openDevTools(); // 打开开发者工具
winState.manage(win); // 配置持久化
win.on("ready-to-show", () => {
win.show();
});
// 配置所有外部url都使用浏览器打开
win.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url); // 使用外部浏览器打开
return { action: "deny" }; // 阻止 Electron 打开新窗口
});
};
// 创建待办小挂件窗口
const addToDoToDesktop = (title, content) => {
let todoWindow = new BrowserWindow({
width: 400,
height: 300,
transparent: true, // 透明
frame: false, // 无边框窗口
skipTaskbar: true, // 不在任务栏中显示
webPreferences: {
sandbox: false, // 取消沙箱模式
backgroundThrottling: false, // 取消节流
preload: path.resolve(__dirname, "./preload"), // 配置预加载脚本
},
});
// 加载本地文件(测试过程中通过url访问)
if (isDev) {
todoWindow.loadURL("http://localhost:5173/#/desktop/customtodo");
} else {
// 导航到特定路由
todoWindow.loadURL(
`file://${path.join(
__dirname,
"dist",
"index.html"
)}#/desktop/customtodo`
);
}
// 等待加载完成以后并且延迟500ms发送消息
// 自行测试时间,之前我的100ms就可以,但是电脑性能慢一点需要的时间更多,我索性就直接500ms了
todoWindow.webContents.on("did-finish-load", () => {
setTimeout(() => {
todoWindow.webContents.send("load-html-content", title, content);
console.log("Message sent after delay!");
}, 500); // 延迟时间,以毫秒为单位
});
todoWindow.setAlwaysOnTop(globalSettings[0].todoP); // 动态配置是否置顶
// todoWindow.webContents.openDevTools(); // 打开开发者工具
todoWindow.on("closed", () => {
todoWindow = null;
});
// 优雅的打开窗口
todoWindow.once("ready-to-show", () => {
todoWindow.show();
});
// hook这个右键消息,禁用窗口
todoWindow.hookWindowMessage(278, function (e) {
todoWindow.setEnabled(false); //窗口禁用
setTimeout(() => {
todoWindow.setEnabled(true); //窗口启用
}, 1);
return true;
});
};
// 创建全屏计时器窗口
const createTimerWindow = () => {
let timerWindow = new BrowserWindow({
frame: false,
fullscreen: true,
resizable: false, // 不允许重新设置尺寸
skipTaskbar: true, // 不在任务栏中显示
webPreferences: {
sandbox: false, // 取消沙箱模式
preload: path.resolve(__dirname, "./preload"), // 预加载脚本
backgroundThrottling: false, // 取消节流
},
});
if (isDev) {
timerWindow.loadURL("http://localhost:5173/#/fullscreen/timer");
} else {
// timerWindow
// .loadFile(path.join(__dirname, "dist", "index.html"))
// .then(() => {
// timerWindow.loadURL(
// `file://${path.join(
// __dirname,
// "dist",
// "index.html"
// )}#/fullscreen/timer`
// );
// });
timerWindow.loadURL(
`file://${path.join(__dirname, "dist", "index.html")}#/fullscreen/timer`
);
}
timerWindow.on("closed", () => {
timerWindow = null;
});
// 优雅的打开窗口
timerWindow.on("ready-to-show", () => {
timerWindow.show();
});
};
// 创建定时器小挂件窗口
const createTimerWidgetWindow = () => {
let timerWidgetWindow = new BrowserWindow({
width: 354,
height: 84,
transparent: true, // 透明
frame: false, // 无边框窗口
skipTaskbar: true, // 不在任务栏中显示
resizable: false, // 不允许重新设置尺寸
webPreferences: {
sandbox: false, // 取消沙箱模式
preload: path.resolve(__dirname, "./preload"), // 配置预加载脚本
backgroundThrottling: false, // 取消节流
},
});
if (isDev) {
timerWidgetWindow.loadURL("http://localhost:5173/#/desktop/timer");
} else {
// timerWidgetWindow
// .loadFile(path.join(__dirname, "dist", "index.html"))
// .then(() => {
// timerWidgetWindow.loadURL(
// `file://${path.join(
// __dirname,
// "dist",
// "index.html"
// )}#/desktop/timer`
// );
// });
timerWidgetWindow.loadURL(
`file://${path.join(__dirname, "dist", "index.html")}#/desktop/timer`
);
}
timerWidgetWindow.on("closed", () => {
timerWidgetWindow = null;
});
// 优雅的打开窗口
timerWidgetWindow.once("ready-to-show", () => {
timerWidgetWindow.show();
});
timerWidgetWindow.setAlwaysOnTop(globalSettings[0].timerP); // 动态设置窗口位置
// hook这个右键消息,取消右键
timerWidgetWindow.hookWindowMessage(278, function (e) {
timerWidgetWindow.setEnabled(false); //窗口禁用
setTimeout(() => {
timerWidgetWindow.setEnabled(true); //窗口启用
}, 1);
return true;
});
};
// 创建全屏番茄钟窗口
const createPomodoroWindow = () => {
let pomodoroWindow = new BrowserWindow({
frame: false,
fullscreen: true,
resizable: false,
skipTaskbar: true, // 不在任务栏中显示
webPreferences: {
// webSecurity: false, // 允许加载本地文件
// allowFileAccess: true, // 允许访问文件
sandbox: false, // 取消沙箱模式
backgroundThrottling: false, // 取消节流
preload: path.resolve(__dirname, "./preload"),
},
});
if (isDev) {
pomodoroWindow.loadURL("http://localhost:5173/#/fullscreen/pomodoro");
} else {
// pomodoroWindow
// .loadFile(path.join(__dirname, "dist", "index.html"))
// .then(() => {
// pomodoroWindow.loadURL(
// `file://${path.join(
// __dirname,
// "dist",
// "index.html"
// )}#/fullscreen/pomodoro`
// );
// });
pomodoroWindow.loadURL(
`file://${path.join(
__dirname,
"dist",
"index.html"
)}#/fullscreen/pomodoro`
);
} // 清除窗口状态
pomodoroWindow.on("closed", () => {
pomodoroWindow = null;
});
// 优雅的打开窗口
pomodoroWindow.on("ready-to-show", () => {
pomodoroWindow.show();
});
};
// 创建番茄钟小挂件窗口
const createPomodoroWidgetWindow = () => {
let pomodoroWidgetWindow = new BrowserWindow({
width: 374,
height: 104,
transparent: true, // 透明
frame: false, // 无边框窗口
resizable: false,
skipTaskbar: true, // 不在任务栏中显示
webPreferences: {
backgroundThrottling: false, // 取消节流
sandbox: false, // 取消沙箱模式
preload: path.resolve(__dirname, "./preload"), // 配置预加载脚本
},
});
if (isDev) {
pomodoroWidgetWindow.loadURL("http://localhost:5173/#/desktop/pomodoro");
} else {
// pomodoroWidgetWindow
// .loadFile(path.join(__dirname, "dist", "index.html"))
// .then(() => {
// pomodoroWidgetWindow.loadURL(
// `file://${path.join(
// __dirname,
// "dist",
// "index.html"
// )}#/desktop/pomodoro`
// );
// });
pomodoroWidgetWindow.loadURL(
`file://${path.join(__dirname, "dist", "index.html")}#/desktop/pomodoro`
);
} // 清除窗口状态
pomodoroWidgetWindow.on("closed", () => {
pomodoroWidgetWindow = null;
});
pomodoroWidgetWindow.on("closed", () => {
pomodoroWidgetWindow = null;
});
pomodoroWidgetWindow.setAlwaysOnTop(globalSettings[0].pomodoroP); // 动态设置窗口位置
// pomodoroWidgetWindow.webContents.openDevTools();
pomodoroWidgetWindow.once("ready-to-show", () => {
pomodoroWidgetWindow.show();
});
// hook这个右键消息,禁用右键菜单
pomodoroWidgetWindow.hookWindowMessage(278, function (e) {
pomodoroWidgetWindow.setEnabled(false); //窗口禁用
setTimeout(() => {
pomodoroWidgetWindow.setEnabled(true); //窗口启用
}, 1);
return true;
});
};
app.whenReady().then(() => {
createWindow();
// 阻止应用进入低功耗模式
const id = powerSaveBlocker.start("prevent-app-suspension");
app.on("activate", () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
});
// 适配mac
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});
// 获取当前操作系统
ipcMain.handle("get-current-os", async (event) => {
return process.platform;
});
// 删除待办
const removeToDo = (id) => {
win.webContents.send("remove-todo", id);
};
// 编辑待办
const editToDo = (id) => {
win.webContents.send("edit-todo", id);
};
let contextMenu = null;
// 创建右键菜单
ipcMain.on("show-context-menu", (event, type, id, title, content) => {
const menuTemplate = [];
// 根据类型添加不同的菜单项
if (type === "customToDo") {
menuTemplate.push({
label: "添加待办挂件",
click: () => {
addToDoToDesktop(title, content);
},
});
menuTemplate.push({
label: "编辑待办",
click: () => {
// 直接把数据传给添加新待办那个组件过去就行了,顺便编辑成功把待办删除了
editToDo(id);
},
});
menuTemplate.push({
label: "删除待办",
click: () => {
// 发送消息告诉本地存储里面的东西可以删除了
removeToDo(id);
},
});
}
// 创建菜单
contextMenu = Menu.buildFromTemplate(menuTemplate);
contextMenu.popup(BrowserWindow.fromWebContents(event.sender)); // 弹出菜单
});
// 打开倒计时窗口 @params type |f:全屏|a: add widget
ipcMain.on("open-timer-window", (event, type) => {
if (type === "f") {
createTimerWindow();
} else if (type === "a") {
// 添加小挂件
createTimerWidgetWindow();
}
});
// 打开番茄钟窗口 @params type |f:全屏|a: add widget
ipcMain.on("open-pomodoro-window", (event, type) => {
if (type === "f") {
createPomodoroWindow();
} else if (type === "a") {
// 添加小挂件
createPomodoroWidgetWindow();
}
});
// 移除窗口
ipcMain.on("remove-window", (event) => {
const window = BrowserWindow.fromWebContents(event.sender);
if (window) {
window.close();
}
});
// 保存文件
ipcMain.handle("save-file", (event, type, originFilePath) => {
const pathDir = "backgrounds";
if (type && originFilePath) {
// 获取原始文件的扩展名
const fileExtension = path.extname(originFilePath);
const fileName = type + fileExtension; // 构造新文件名
const newFilePath = path.join(process.resourcesPath, pathDir, fileName);
console.log(newFilePath);
// 确保backgrounds目录存在
if (!fs.existsSync(path.join(process.resourcesPath, pathDir))) {
fs.mkdirSync(path.join(process.resourcesPath, pathDir), {
recursive: true,
});
}
return new Promise((resolve, reject) => {
// 读取原始文件内容
fs.readFile(originFilePath, (readErr, data) => {
if (readErr) {
reject(readErr);
} else {
// 将内容写入新文件
fs.writeFile(newFilePath, data, (writeErr) => {
if (writeErr) {
reject(writeErr);
} else {
// 返回新文件的路径
let pathName = "/" + pathDir + "/" + fileName;
resolve(pathName);
}
});
}
});
});
}
return null;
});
// 同步全局配置
ipcMain.on("sync-else-setting", (event, settings) => {
// 更新全局的值即可
globalSettings = settings;
});
// 全局快捷键设置
ipcMain.handle("shortcut-setting", async (event, keys) => {
globalShortcutSettings = keys;
let isOccupied = false; // 标记下方有没有被占用的快捷键
if (keys) {
// 挨个检查有没有注册过的快捷键
if (
!globalShortcut.register(keys.fPomodoro, () => {
// 全屏番茄钟
createPomodoroWindow();
})
) {
isOccupied = true;
}
if (
!globalShortcut.register(keys.wPomodoro, () => {
// 番茄钟挂件
createPomodoroWidgetWindow();
})
) {
isOccupied = true;
}
if (
!globalShortcut.register(keys.fTimer, () => {
// 全屏计时器
createTimerWindow();
})
) {
isOccupied = true;
}
if (
!globalShortcut.register(keys.wTimer, () => {
// 计时器挂件
createTimerWidgetWindow();
})
) {
isOccupied = true;
}
}
return isOccupied;
});
// 禁用所有快捷键
ipcMain.on("disable-all-shortcut", () => {
globalShortcut.unregisterAll();
});
// 调用原生api给用户通知
// @params type |pomodoro-shortBreak|pomodoro-longBreak|pomodoro-work|timer-half|timer-full|todo
ipcMain.on("notification-user", (event, type) => {
// 也可以传进来title和body,考虑扩展性
if (Notification.isSupported()) {
let notification = null;
switch (type) {
case "pomodoro-shortBreak":
notification = new Notification({
title: "短休息时间到",
body: "时间到了,短短的休息一会儿吧",
silent: true, // 静音通知
});
break;
case "pomodoro-longBreak":
notification = new Notification({
title: "长休息时间到",
body: "你太棒了,接下来是长休息时间",
silent: true, // 静音通知
});
break;
case "pomodoro-work":
notification = new Notification({
title: "专注时间到",
body: "好了,开始专注吧",
silent: true, // 静音通知
});
break;
case "timer-half":
notification = new Notification({
title: "倒计时过半",
body: "时间已经过去一半了",
silent: true, // 静音通知
});
break;
case "timer-full":
notification = new Notification({
title: "倒计时结束",
body: "倒计时结束了",
silent: true, // 静音通知
});
break;
case "todo":
notification = new Notification({
title: "待办提醒",
body: "您现在有计划的安排,提醒您一下哈",
silent: true, // 静音通知
});
break;
}
notification.show();
}
});
};