-
-
Notifications
You must be signed in to change notification settings - Fork 319
Birmingham | 26-ITP-May | Toluwalase Tiamiyu | Sprint 3 | Alarmclock App #1321
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
Open
TTiamiyu
wants to merge
3
commits into
CodeYourFuture:main
Choose a base branch
from
TTiamiyu:data-groups-sprint3-alarmclock
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+43
−1
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
b59497e
Implement setAlarm function to parse input value and handle invalid o…
TTiamiyu c1008ba
Add timer clearing logic to setAlarm function for repeated button clicks
TTiamiyu d0e8ded
Refactor setAlarm function to improve countdown timer logic and ensur…
TTiamiyu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,46 @@ | ||
| function setAlarm() {} | ||
| let timerInterval = null; | ||
|
|
||
| function setAlarm() { | ||
| const inputEl = document.getElementById("alarmSet"); | ||
| const timeRemainingEl = document.getElementById("timeRemaining"); | ||
|
|
||
| let totalSeconds = parseInt(inputEl.value, 10); | ||
|
|
||
| // If input is invalid or empty, default to 0 | ||
| if (isNaN(totalSeconds) || totalSeconds < 0) { | ||
| totalSeconds = 0; | ||
| } | ||
| // Clear any existing timer if the button is clicked again | ||
| if (timerInterval) { | ||
| clearInterval(timerInterval); | ||
| } | ||
| // Function to render the formatted time (MM:SS) to the DOM | ||
| function updateDisplay() { | ||
|
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. Good job putting the code for formatting and setting the countdown into an own function. This makes it reusable and easier to change the formtting if needed |
||
| const minutes = Math.floor(totalSeconds / 60); | ||
| const seconds = totalSeconds % 60; | ||
|
|
||
| const formattedMinutes = String(minutes).padStart(2, "0"); | ||
| const formattedSeconds = String(seconds).padStart(2, "0"); | ||
|
|
||
| timeRemainingEl.innerText = `Time Remaining: ${formattedMinutes}:${formattedSeconds}`; | ||
| } | ||
| // 1. Immediately set heading on button click | ||
| updateDisplay(); | ||
|
|
||
| // 2. Start the countdown timer | ||
| timerInterval = setInterval(() => { | ||
| totalSeconds -= 1; | ||
|
|
||
| if (totalSeconds >= 0) { | ||
| updateDisplay(); | ||
| } | ||
|
|
||
| if (totalSeconds === 0) { | ||
| playAlarm(); | ||
| clearInterval(timerInterval); | ||
| } | ||
| }, 1000); | ||
| } | ||
|
|
||
| // DO NOT EDIT BELOW HERE | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I am not sure if the expected user behaviour for invalid inputs is to set the seconds to 0. What else could you do instead?