Last active
December 6, 2023 16:46
Pomodoro Tutorial — Checkpoint 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const timer = { | |
pomodoro: 25, | |
shortBreak: 5, | |
longBreak: 15, | |
longBreakInterval: 4, | |
}; | |
const modeButtons = document.querySelector('#js-mode-buttons'); | |
modeButtons.addEventListener('click', handleMode); | |
function updateClock() { | |
const { remainingTime } = timer; | |
const minutes = `${remainingTime.minutes}`.padStart(2, '0'); | |
const seconds = `${remainingTime.seconds}`.padStart(2, '0'); | |
const min = document.getElementById('js-minutes'); | |
const sec = document.getElementById('js-seconds'); | |
min.textContent = minutes; | |
sec.textContent = seconds; | |
} | |
function switchMode(mode) { | |
timer.mode = mode; | |
timer.remainingTime = { | |
total: timer[mode] * 60, | |
minutes: timer[mode], | |
seconds: 0, | |
}; | |
document | |
.querySelectorAll('button[data-mode]') | |
.forEach(e => e.classList.remove('active')); | |
document.querySelector(`[data-mode="${mode}"]`).classList.add('active'); | |
document.body.style.backgroundColor = `var(--${mode})`; | |
updateClock(); | |
} | |
function handleMode(event) { | |
const { mode } = event.target.dataset; | |
if (!mode) return; | |
switchMode(mode); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment