Skip to content
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

West-Midlands ITP-Jan-2025 | Ifeanyi Madubugwu | Module-Data-Group | Sprint -3| alarm-clock #453

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 58 additions & 7 deletions Sprint-3/alarmclock/alarmclock.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,72 @@
function setAlarm() {}
const typedInput = document.getElementById("alarmSet"); // Assuming the input field is named "alarmSet"
const timeRemaining = document.getElementById("timeRemaining"); // Assuming the span element is named "timeRemaining"
const button = document.getElementById("set"); // Assuming the button element is named "set"
const stopButton = document.getElementById("stop"); /// Assuming the button element is named "stop"

let alarmTime; // declaring a Variable to store the alarm time

function setAlarm() {
const alarmTimeInput = parseInt(typedInput.value); // Getting the value from the input field and converting it to an integer
if (isNaN(alarmTimeInput) || alarmTimeInput <= 0) {
// Checking if the value is not a number or less than 0
alert("Please enter a valid number"); // Displaying an alert message if the value is not a number or less than 0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice validation

return; // Returning nothing if the value is not a number or less than 0
}

typedInput.value = ""; // Clearing the input field after setting the alarm

let remainingTime = alarmTimeInput; // assigning the value of alarmTimeInput to remainingTime.
timeRemaining.textContent = `Time Remaining: ${formatTime(remainingTime)}`; // this would display the remaining time on the screen using a time formatting function.
alarmTime = setInterval(() => {
// setInterval method is used to repeatedly call a function that will delay the alarm until the remaining time gets to 0.

remainingTime--; // decrementing the remaining time by 1.

timeRemaining.textContent = `Time Remaining: ${formatTime(remainingTime)}`; // this would display the remaining time on the screen using a time formatting function.

if (remainingTime === 0) {
clearInterval(alarmTime); // stopping the alarm time when it gets to 0
playAlarm(); // call the function to play the alarm sound immediately the alarm time gets to 0.
document.body.style.backgroundColor = "red"; // changing the background color to red when the alarm time gets to 0.
}
}, 1000); // this would make the alarm time countdown by 1 second. we could also use setTimeout method.
}

function stopAlarm() {
// this function is called when the stop button is clicked

clearInterval(alarmTime); // we using clearInterval to stop the alarm time from counting.
pauseAlarm(); // we call the function to pause the alarm sound.
}
function formatTime(seconds) {
// this function formats the time into minutes and seconds
let minutes = Math.floor(seconds / 60); // we get the minutes by dividing the seconds by 60 and rounding it down using Math.floor.
let sec = seconds % 60; // we get the sec by getting the remainder of the seconds divided by 60.
return `${String(minutes).padStart(2, "0")}:${String(sec).padStart(2, "0")}`;
}

// DO NOT EDIT BELOW HERE

var audio = new Audio("alarmsound.mp3");

function setup() {
document.getElementById("set").addEventListener("click", () => {
setAlarm();
});
document.getElementById("set").addEventListener("click", setAlarm);

document.getElementById("stop").addEventListener("click", () => {
pauseAlarm();
});
document.getElementById("stop").addEventListener("click", stopAlarm);
}

function playAlarm() {
audio.play();
let backgroundColorChange = true; //we used a boolean variable to toggle the background color by changing it to true or false.
let flashAlarm = setInterval(() => {
// setInterval method is used to repeatedly call a function that will flash the background color until the alarm stops.
document.body.style.backgroundColor = backgroundColorChange
? "#7c0404"
: "#b5a1c4";
////we used a boolean variable to toggle the background color by changing it to true or false using the ternary operator.

backgroundColorChange = !backgroundColorChange; // if backgroundColorChange is true, it will be changed to false and vice versa.
}, 500);
}

function pauseAlarm() {
Expand Down
4 changes: 2 additions & 2 deletions Sprint-3/alarmclock/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Title here</title>
<title>Alarm clock app</title>
<script defer src="alarmclock.js"></script>
</head>
<body>
<div class="centre">
Expand All @@ -15,6 +16,5 @@ <h1 id="timeRemaining">Time Remaining: 00:00</h1>
<button id="set" type="button">Set Alarm</button>
<button id="stop" type="button">Stop Alarm</button>
</div>
<script src="alarmclock.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion Sprint-3/alarmclock/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ If you have time and want to do more why not try

- Make the background change color when the alarm clock finishes
- Try making the background flash!
- Could you add `pause` functionality so that the count down stops and then you restart it later?
- Could you add `pause` functionality so that the count down stops and then you restart it later??
5 changes: 5 additions & 0 deletions Sprint-3/alarmclock/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@

h1 {
text-align: center;
margin: 0%;
}

body {
background-color: #b5a1c4;
}