-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.js
147 lines (134 loc) · 4.46 KB
/
js.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
function Time() {
var date = new Date();
this.hours = 30;
this.minutes = 0;
this.seconds = 0;
this.countDown = true;
this.lastReset = toDays(date.getTime());
this.absSeconds = toAbsSecs(this.hours, this.minutes, this.seconds);
this.maxSeconds = this.absSeconds;
}
function n(n){
return n > 9 ? "" + n: "0" + n;
}
function reset() {
var time = new Time();
localStorage.time = JSON.stringify(time);
remaining.innerHTML = n(time.hours) + ':' + n(time.minutes) + ':' + n(time.seconds);
button.style.background = 'green';
if (working === true) {
start();
}
return time;
}
function count() {
function newTime() {
var hrsMinsSecs = toHrsMinsSecs(time.absSeconds);
time.hours = hrsMinsSecs[0];
time.minutes = hrsMinsSecs[1];
time.seconds = hrsMinsSecs[2];
}
if (time.countDown === true) {
time.absSeconds--;
newTime();
} else {
time.absSeconds++;
newTime();
}
updateBar();
localStorage.time = JSON.stringify(time);
if (time.absSeconds <= 0 && time.countDown === true) {
body.style.background = '#CC297A';
var cont = confirm('You are out of time. Working for an extended amount of time could have unexpected consequences. Are you sure you want to continue working?');
if (cont === true) {
if (time.countDown === true) time.countDown = false;
start(true);
} else {
start();
}
}
}
function start(override) {
function startCount() {
clearInterval(interval);
interval = setInterval(function() {count();}, 1000);
working = true;
button.style.background = 'red';
button.innerHTML = 'Stop working';
window.onbeforeunload = function (e) {
return 'Your work time will not be tracked if you choose to leave this page.';
}
}
if (override === true) startCount();
else if (working === false) {
if (time.hours <= 0 && time.minutes <= 0 && time.seconds <= 0 || time.countDown === false) {
var cont = confirm('You are out of time. Working for an extended amount of time could have unexpected consequences. Are you sure you want to start working?');
if (cont === true) {
if (time.countDown === true) time.countDown = false;
startCount();
}
} else {
startCount();
}
} else {
clearInterval(interval);
working = false;
button.style.background = 'green';
button.innerHTML = 'Start working';
window.onbeforeunload = null;
}
}
function toDays(milliseconds) {
return Math.floor(milliseconds / 86400000);
}
function toHrsMinsSecs(seconds) {
hours = Math.floor(seconds / 3600);
seconds -= hours * 3600;
minutes = Math.floor(seconds / 60);
seconds -= minutes * 60;
return [hours, minutes, seconds];
}
function toAbsSecs(hours, minutes, seconds) {
return hours * 3600 + minutes * 60 + seconds;
}
function updateBar() {
ctx.clearRect(0, 0, cwidth, cheight);
if (time.countDown === true) {
divide = time.absSeconds / time.maxSeconds * cwidth;
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, divide, cheight);
ctx.fillStyle = 'red';
ctx.fillRect(divide, 0, cwidth - divide, cheight);
} else {
ctx.fillStyle = 'red';
ctx.fillRect(0, 0, cwidth, cheight);
}
ctx.fillStyle = 'white';
if (time.countDown === true) ctx.fillText(n(time.hours) + ':' + n(time.minutes) + ':' + n(time.seconds), cwidth / 2, cheight / 2);
else ctx.fillText('-' + n(time.hours) + ':' + n(time.minutes) + ':' + n(time.seconds), cwidth / 2, cheight / 2);
}
var remaining = document.getElementById('remaining');
var button = document.getElementById('work');
var body = document.getElementById('body');
var interval, working;
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var cwidth = 294;
var cheight = 32;
working = false;
button.onclick = function () {start();};
if (!(localStorage.time)) var time = reset();
else {
var time = JSON.parse(localStorage.time);
if (time.absSeconds <= 0 || time.countDown === false) {
body.style.background = '#CC297A';
}
var date = new Date();
if (toDays(date.getTime()) > time.lastReset + date.getDay()) {
var time = reset();
}
}
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.font = '20px Sans';
updateBar();