-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
83 lines (68 loc) · 1.81 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
const { menubar } = require("menubar");
const path = require("path");
const halo = require("./halo.js");
const ipc = require('electron').ipcMain;
const storage = require('electron-json-storage');
const imagesPath = path.join(__dirname, "images");
const DEFAULT_INTERVAL = 30 //minutes
const granularity = 30 // InSeconds
setInterval(() => {
storage.get('lastSent', (err, data) => {
const lastSent = data.value;
if(!lastSent) {
halo.showMessage();
updateLastSent();
} else {
storage.get('interval', (err, { value: interval}) => {
const intervalInMS = (interval || DEFAULT_INTERVAL) * 60 * 1000
const d1 = Number(new Date());
const d2 = Number(new Date(lastSent));
if((d1 - d2) > intervalInMS) {
halo.showMessage();
updateLastSent();
}
})
}
});
}, granularity * 1000);
const updateLastSent = () => {
storage.set('lastSent', {value: new Date()})
}
const mb = menubar({
browserWindow: {
width: 200,
height: 192,
webPreferences: {
nodeIntegration: true
},
icon: __dirname + "/build/icon.icns"
}
});
mb.on("ready", function ready() {
setIcon("[email protected]");
mb.tray.on("right-click", () => {
setTimeout(_ => mb.app.quit(), 500);
});
mb.tray.on("click", () => {
});
});
const setIcon = img => {
mb.tray.setImage(`${imagesPath}/${img}`);
mb.tray.setHighlightMode("never");
};
ipc.on('closeApp', function(event, data){
mb.app.quit();
});
ipc.on('showMessage', function(event, data){
halo.showMessage();
mb.window.hide();
});
ipc.on('updateInterval', function(event, interval){
console.log(interval);
storage.set('interval', {value: interval})
});
ipc.on('getInterval', function(event){
storage.get('interval', (err, data) => {
event.returnValue = data.value;
});
});