-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
235 lines (168 loc) · 6.15 KB
/
script.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
// #########################################################################
// ELEMENTS' DEFINITIONS...
// #########################################################################
// Buttons - RESET, START/STOP
const reset = document.querySelector('#reset');
const startStop = document.querySelector('#start_stop');
const startButton = startStop.querySelector('#startButton');
const stopButton = startStop.querySelector('#stopButton');
// Timer - label with actual state (session/break) and time left
const timerLabel = document.querySelector('#timer-label');
const timeLeft = document.querySelector('#time-left');
// Break length adjustements
const breakLabel = document.querySelector('#break-label');
const breakLength = document.querySelector('#break-length');
const adjustTime = document.querySelector('#adjust-time');
// Session length adjustements
const sessionLabel = document.querySelector('#session-label');
const sessionLength = document.querySelector('#session-length');
// All time-changing buttons (increment/decrement)
const changeTimeButtons = document.querySelectorAll('.change-time');
// Audio file
const beep = document.querySelector('#beep');
// Update time
const updateTime = () => timeLeft.innerText = setTime.time;
// Left-pad function for displaying time with leading zeros
const leftPad = num => ('0' + num).slice(-2);
// #########################################################################
// SET TIME - GETTERS AND SETTERS
// #########################################################################
const setTime = {
_minutes : 25,
_seconds : 0,
set minutes(value) {
this._minutes = Number(value);
},
set seconds(value) {
this._seconds = Number(value);
},
get minutes() {
return this._minutes;
},
get seconds() {
return this._seconds;
},
get time() {
return `${leftPad(this.minutes)}:${leftPad(this.seconds)}`
}
};
// *************************************************************************
// CHANGE TIME - INCREMENTATION/DECREMENTATION
// *************************************************************************
changeTimeButtons.forEach(button => button.addEventListener('click', changeTime));
function changeTime(event) {
const button = event.target.closest('button');
const lengthOfTime = button.parentNode.querySelector('.js-length');
const action = button.dataset.action;
let time = Number(lengthOfTime.innerText);
if (action === 'increment' && time < 60) {
time++;
};
if (action === 'decrement' && time > 1) {
time--;
};
lengthOfTime.innerText = time;
setTime.seconds = 0;
setTime.minutes = sessionLength.innerText;
updateTime();
}
// *************************************************************************
// RESET - COME BACK TO DEFAULT VALUES (session 25min, break 5min)
// *************************************************************************
function resetTime() {
setTime.minutes = 25;
setTime.seconds = 0;
breakLength.innerText = 5;
sessionLength.innerText = 25;
updateTime();
adjustTime.style.opacity = 1;
};
function resetStartButton() {
startStop.dataset.action = 'start';
stopButton.style.display = 'none';
startButton.style.display = 'block';
};
function resetTimerLabel() {
timerLabel.dataset.phase = 'session';
timerLabel.innerText = 'SESSION';
};
function resetBeeper() {
beep.pause();
beep.currentTime = 0;
};
reset.addEventListener('click', function changeToDefault(event) {
clearInterval(countingDown);
resetBeeper();
resetTime();
resetStartButton();
resetTimerLabel();
changeTimeButtons.forEach(button => button.disabled = false);
startStop.parentNode.classList.remove('running');
});
// *************************************************************************
// BREAK/SESSION CHANGE
// *************************************************************************
function toggleBreakSession() {
const currentPhase = timerLabel.dataset.phase;
const nextPhase = currentPhase === 'session' ? 'break' : 'session';
timerLabel.dataset.phase = nextPhase;
const {newLabel, newTime} = nextPhase === 'session'
? {newLabel : 'SESSION', newTime : sessionLength.innerText}
: {newLabel : 'BREAK', newTime : breakLength.innerText};
timerLabel.innerText = newLabel;
setTime.minutes = newTime;
updateTime();
};
// *************************************************************************
// FINAL COUNTDOWN :)
// *************************************************************************
function finalCountDown() {
if (setTime.seconds > 0) {
setTime.seconds = setTime.seconds - 1;
}
else if (setTime.seconds === 0 && setTime.minutes > 0) {
setTime.minutes = setTime.minutes - 1;
setTime.seconds = 59;
}
else if (setTime.seconds === 0 && setTime.minutes === 0) {
beep.play();
toggleBreakSession();
}
};
// *************************************************************************
// START_STOP BUTTON IS CHANGING ON CLICK
// *************************************************************************
startStop.addEventListener('click', startStopTimer);
var countingDown;
function startStopTimer(event) {
let action = startStop.dataset.action;
let start;
let remaining = 1000;
if (action === 'start') {
startStop.parentNode.classList.add('running');
stopButton.style.display = 'block';
startButton.style.display = 'none';
adjustTime.style.opacity = 0;
clearInterval(countingDown);
start = new Date();
countingDown = setInterval(pomodoro, remaining);
changeTimeButtons.forEach(button => button.disabled = true);
}
if (action === 'pause') {
startStop.parentNode.classList.remove('running');
stopButton.style.display = 'none';
startButton.style.display = 'block';
adjustTime.style.opacity = 1;
clearInterval(countingDown);
remaining -= new Date() - start;
changeTimeButtons.forEach(button => button.disabled = false);
}
startStop.dataset.action = action === 'start' ? 'pause' : 'start';
}
// *************************************************************************
// *waving with wand* POMODORO! WORK!
// *************************************************************************
function pomodoro() {
finalCountDown();
updateTime();
}