From d0b72e833cd1e9ab1d452db6ca4177956c569448 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 23 Apr 2024 20:28:54 +0200 Subject: [PATCH] Update timer --- src/routes/timer/+page.svelte | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/routes/timer/+page.svelte b/src/routes/timer/+page.svelte index e7882bc..17accc7 100644 --- a/src/routes/timer/+page.svelte +++ b/src/routes/timer/+page.svelte @@ -15,11 +15,9 @@ import { writable } from "svelte/store" import type { Writable } from "svelte/store" - const MINI_BREAK_DURATION = 0.15 * 60 * 1000 // 1 minutes - // const MINI_BREAK_DURATION = 20 * 60 * 1000; // 20 minutes - const MINI_BREAK_INTERVAL = 5 * 1000 // 20 seconds - // const LONG_BREAK_DURATION = 5 * 60 * 1000; // 5 minutes - const LONG_BREAK_DURATION = 0.3 * 60 * 1000 // 2 minutes + const MINI_BREAK_DURATION = 20 * 60 * 1000; // 20 minutes + const MINI_BREAK_INTERVAL = 20 * 1000 // 20 seconds + const LONG_BREAK_DURATION = 5 * 60 * 1000; // 5 minutes let timer: number | null = null let miniBreakCount = 0 @@ -28,20 +26,20 @@ const playSound = () => { if (audio) { - // audio.pause(); + audio.pause(); audio.src = "/sounds/Bells.mp3" audio.volume = 0.4 - // audio.play(); + audio.play(); } } const showNotification = (title: string, options: NotificationOptions) => { if (Notification.permission === "granted") { - // new Notification(title, options); + new Notification(title, options); } else if (Notification.permission !== "denied") { Notification.requestPermission().then((permission) => { if (permission === "granted") { - // new Notification(title, options); + new Notification(title, options); } }) } @@ -63,7 +61,7 @@ miniBreakCount++ timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION)) showNotification("Ready", { body: "Continue working!" }) - playSound() // Adjust volume as needed + playSound() return MINI_BREAK_DURATION } if (miniBreakCount === 3) { @@ -73,16 +71,15 @@ showNotification("Long Break", { body: "Take a 5-minute break now!", }) - playSound() // Adjust volume as needed + playSound() return LONG_BREAK_DURATION } else { state.set("Mini Break") - // miniBreakCount++; timeLeftDisplay.set(formatTime(MINI_BREAK_INTERVAL)) showNotification("Mini Break", { body: "Take a 20-second break now!", }) - playSound() // Adjust volume as needed + playSound() return MINI_BREAK_INTERVAL } }