-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.js
50 lines (43 loc) · 1.11 KB
/
timer.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
class Timer {
constructor(durationInput, startButton, pauseButton, callbacks) {
this.durationInput = durationInput;
this.startButton = startButton;
this.pauseButton = pauseButton;
if (callbacks) {
this.onStart = callbacks.onStart;
this.onTick = callbacks.onTick;
this.onComplete = callbacks.onComplete;
}
this.startButton.addEventListener('click', this.start);
this.pauseButton.addEventListener('click', this.pause);
}
start = () => {
if (this.onStart) {
this.onStart(this.timeRemaining);
}
this.tick();
this.interval = setInterval(this.tick, 20);
};
pause = () => {
clearInterval(this.interval);
};
tick = () => {
if (this.timeRemaining <= 0) {
this.pause();
if (this.onComplete) {
this.onComplete();
}
} else {
this.timeRemaining = this.timeRemaining - 0.02;
if (this.onTick) {
this.onTick(this.timeRemaining);
}
}
};
get timeRemaining() {
return parseFloat(this.durationInput.value);
}
set timeRemaining(time) {
this.durationInput.value = time.toFixed(2);
}
}