-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
60 lines (46 loc) · 1.25 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
const { app, BrowserWindow, ipcMain } = require('electron')
const path = require('path')
const DB = require('./db.js')
const Intervals = require('./intervals.js')
let mainWindow
function createWindow() {
mainWindow = new BrowserWindow({
width: 480,
height: 800,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
}
})
mainWindow.loadFile('index.html')
// Open the DevTools.
// mainWindow.webContents.openDevTools()
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
app.on('quit', function () {
DB.close()
})
const intervals = new Intervals()
ipcMain.on('start-active-interval', () => {
intervals.startActive()
})
ipcMain.on('stop-active-interval', () => {
intervals.stopActive()
})
ipcMain.on('update-intervals', () => {
intervals.updateToday()
})
const emitter = intervals.emitter
emitter.on('intervals-updated', () => {
mainWindow.webContents.send('intervals-updated', intervals.today)
})
emitter.on('active-interval-updated', () => {
mainWindow.webContents.send('acitve-interval-updated', intervals.active)
})