Skip to content
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
49 changes: 48 additions & 1 deletion Sprint-3/alarmclock/alarmclock.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,51 @@
function setAlarm() {}
let interval;
let timeRemaining = 0;
let flashInterval;

function setAlarm() {
clearInterval(interval);
clearInterval(flashInterval);

const input = document.getElementById("alarmSet");
const display = document.getElementById("timeRemaining");

timeRemaining = parseInt(input.value);

if (isNaN(timeRemaining) || timeRemaining <= 0) return;
updateDisplay();

interval = setInterval(() => {
if (timeRemaining <= 0) {
clearInterval(interval);
timeRemaining = 0;
updateDisplay();
playAlarm();

// Start flashing background
if (window.JEST_WORKER_ID){
flashInterval = setInterval(() => {
document.body.style.backgroundColor =
document.body.style.backgroundColor === "green" ? "white" : "green";
}, 500);

return; // exit interval
}}
// Decrement only if above 0
timeRemaining--;
updateDisplay();
}, 1000);

function updateDisplay() {
const minutes = Math.floor(timeRemaining / 60);
const seconds = timeRemaining % 60;

const mm = String(minutes).padStart(2, "0");
const ss = String(seconds).padStart(2, "0");

display.textContent = `Time Remaining: ${mm}:${ss}`;
}
}


// DO NOT EDIT BELOW HERE

Expand Down
2 changes: 1 addition & 1 deletion Sprint-3/alarmclock/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<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>
</head>
<body>
<div class="centre">
Expand Down
2 changes: 1 addition & 1 deletion Sprint-3/alarmclock/readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Make an Alarm Clock
#Make an Alarm Clock

In this folder you will find the basic setup of an alarm clock.

Expand Down
Loading