-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimer.js
More file actions
71 lines (61 loc) · 1.91 KB
/
Copy pathTimer.js
File metadata and controls
71 lines (61 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
////////////////////////////////////////// Timer /////////////////////////////////////////
/*
function Timer() { // constructor
this._ticking = false;
this.interval = 86400;
this.intervalID = null;
this.onTimerFired = null;
}
Timer.prototype.reset = function () {
if (this._ticking) {
clearInterval(this.intervalID);
this.intervalID = setInterval(this.onTimerFired, 1000 * this.interval);
}
};
Object.defineProperties(Timer.prototype, {
ticking: {
get: function () {
return this._ticking;
},
set: function (v) {
if (!this._ticking && v) {
this._ticking = true;
this.intervalID = setInterval(this.onTimerFired, 1000 * this.interval);
} else if (this._ticking && !v) {
this._ticking = false;
clearInterval(this.intervalID);
}
}
}
});
*/
//////////////////////////////////////// End Timer ///////////////////////////////////////
////////////////////////////////////////// Timer /////////////////////////////////////////
class Timer {
constructor() {
this._ticking = false;
this.interval = 86400;
this.intervalID = null;
this.onTimerFired = null;
}
reset() {
if (this._ticking) {
clearInterval(this.intervalID);
this.intervalID = setInterval(this.onTimerFired, 1000 * this.interval);
}
}
get ticking() {
return this._ticking;
}
set ticking(v) {
if (!this._ticking && v) {
this._ticking = true;
this.intervalID = setInterval(this.onTimerFired, 1000 * this.interval);
} else if (this._ticking && !v) {
this._ticking = false;
clearInterval(this.intervalID);
}
}
}
export {Timer};
//////////////////////////////////////// End Timer ///////////////////////////////////////