-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.js
More file actions
51 lines (44 loc) · 1.23 KB
/
timer.js
File metadata and controls
51 lines (44 loc) · 1.23 KB
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
class Timer {
constructor(durationInput, startBtn, pauseBtn, callbacks) {
this.durationInput = durationInput
this.startBtn = startBtn
this.pauseBtn = pauseBtn
if (callbacks) {
this.onStart = callbacks.onStart
this.onTick = callbacks.onTick
this.onComplete = callbacks.onComplete
}
this.startBtn.addEventListener("click", this.start)
this.pauseBtn.addEventListener("click", this.pause)
}
start = () => {
if(this.onStart){
this.onStart(this.timeRemaining)
}
this.tick()
this.interval = setInterval(this.tick, 10)
}
pause = () => {
clearInterval(this.interval)
}
tick = () => {
if (this.timeRemaining <= 0){
this.pause()
if(this.onComplete) {
this.onComplete()
}
}
else {
this.timeRemaining = this.timeRemaining - .01
if (this.onTick) {
this.onTick(this.timeRemaining)
}
}
}
get timeRemaining() {
return parseFloat(this.durationInput.value)
}
set timeRemaining(time) {
this.durationInput.value = time.toFixed(2)
}
}