-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.js
More file actions
53 lines (43 loc) · 1.25 KB
/
timer.js
File metadata and controls
53 lines (43 loc) · 1.25 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
52
53
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.timeRemaing)
}
this.tick();
this.interval = setInterval(this.tick, 20);
};
tick = () => {
if (this.timeRemaing <= 0) {
this.pause();
if(this.onComplete){
this.onComplete()
}
} else {
this.timeRemaing = this.timeRemaing - .02;
if(this.onTick){
this.onTick(this.timeRemaing )
}
}
};
pause = () => {
clearInterval(this.interval)
};
get timeRemaing() {
return parseFloat(this.durationInput.value)
}
set timeRemaing(time) {
this.durationInput.value = time.toFixed(2)
}
}