-
-
Notifications
You must be signed in to change notification settings - Fork 321
London | 26-ITP-May | Dagim Daniel | Sprint 3 | Alarm clock #1331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,65 @@ | ||
| function setAlarm() {} | ||
| const display = document.querySelector("#timeRemaining"); | ||
| const totalSeconds = document.querySelector("#alarmSet"); | ||
| const setButton = document.querySelector("#set"); | ||
| const stopButton = document.querySelector("#stop"); | ||
| let conuntdownInterval; | ||
|
|
||
| // time management function | ||
| function formatTime(totalSeconds) { | ||
| const minutes = Math.floor(totalSeconds / 60); | ||
| const seconds = totalSeconds % 60; | ||
|
|
||
| const paddedMinutes = String(minutes).padStart(2, "0"); | ||
| const paddedSeconds = String(seconds).padStart(2, "0"); | ||
| return `Time Remaining: ${paddedMinutes}:${paddedSeconds}`; | ||
| } | ||
|
|
||
| // to clear every change made with conditions | ||
| function clearEverything() { | ||
| display.style.color = "black"; | ||
| setButton.disabled = false; | ||
| document.body.style.background = ""; | ||
| } | ||
|
|
||
| // button event handler | ||
| setButton.addEventListener("click", () => { | ||
| let timeleft = Number(totalSeconds.value); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some unusual input values can make your app behave abnormally. Can you add code to sanitise them? |
||
| setButton.disabled = true; | ||
|
|
||
| // time 0 | ||
|
|
||
| if (timeleft <= 0) { | ||
| alert("please enter a number greater than 0!"); | ||
| return; | ||
| } | ||
|
Comment on lines
+28
to
+35
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it be better to disable the button only when a countdown is successfully set? |
||
|
|
||
| display.textContent = formatTime(timeleft); | ||
|
|
||
| conuntdownInterval = setInterval(() => { | ||
| if (timeleft == 0) { | ||
| clearInterval(conuntdownInterval); | ||
| document.body.style.backgroundColor = "grey"; | ||
| playAlarm(); | ||
| } | ||
|
|
||
| if (timeleft <= 10) { | ||
| display.style.color = "red"; | ||
| } | ||
|
Comment on lines
+46
to
+48
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does this 10 represent? Numbers other than 0 and 1 are generally considered magic numbers, so it is good practice to replace them with named constants. |
||
|
|
||
| if (timeleft >= 0) { | ||
| display.textContent = formatTime(timeleft); | ||
| timeleft--; | ||
| } | ||
| }, 1000); | ||
|
Comment on lines
+39
to
+54
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When a user clicks the "Set" button with 1 second as input, the user will only see "00:00" 2 seconds later. Is the extra 1 second delay at the beginning by design? |
||
| }); | ||
|
|
||
| //stop button clicked | ||
| stopButton.addEventListener("click", () => { | ||
| clearInterval(conuntdownInterval); | ||
| clearEverything(); | ||
| pauseAlarm(); | ||
| }); | ||
|
|
||
| // DO NOT EDIT BELOW HERE | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about calling it "reset..."?
Could also consider resetting the display time to "00:00" here.