From 5524503d75516f2b50a988534ff7da5659fbcd1e Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 9 May 2024 12:37:42 +0200 Subject: [PATCH] Add more configurations for the timer --- src/routes/timer/+page.svelte | 140 +++++++++++++++++++++++++++------- 1 file changed, 111 insertions(+), 29 deletions(-) diff --git a/src/routes/timer/+page.svelte b/src/routes/timer/+page.svelte index f6124e4..2101dcb 100644 --- a/src/routes/timer/+page.svelte +++ b/src/routes/timer/+page.svelte @@ -3,17 +3,40 @@ import { writable } from "svelte/store" import type { Writable } from "svelte/store" - const BREAK_INTERVAL = 20 * 60 * 1000 // 20 minutes - const MINI_BREAK_DURATION = 20 * 1000 // 20 seconds - const LONG_BREAK_DURATION = 5 * 60 * 1000 // 5 minutes + const BREAK_INTERVAL_STORE: Writable = writable(0.2) + const MINI_BREAK_DURATION_STORE: Writable = writable(20) + const LONG_BREAK_DURATION_STORE: Writable = writable(5) + const SOUND_ENABLED: Writable = writable(true) + const NOTIFICATIONS_ENABLED: Writable = writable(true) + + let BREAK_INTERVAL: number + let MINI_BREAK_DURATION: number + let LONG_BREAK_DURATION: number + let SOUND_ENABLED_STATE: boolean + let NOTIFICATIONS_ENABLED_STATE: boolean let timer: number | null = null + + const state: Writable = writable("Ready") + const timeLeftDisplay: Writable = writable("") + const timeLeft: Writable = writable($BREAK_INTERVAL_STORE) + + BREAK_INTERVAL_STORE.subscribe((value) => { + BREAK_INTERVAL = value * 60 * 1000 + timeLeft.set(BREAK_INTERVAL) + timeLeftDisplay.set(formatTime(BREAK_INTERVAL)) + }) + MINI_BREAK_DURATION_STORE.subscribe((value) => (MINI_BREAK_DURATION = value * 1000)) + LONG_BREAK_DURATION_STORE.subscribe((value) => (LONG_BREAK_DURATION = value * 60 * 1000)) + SOUND_ENABLED.subscribe((value) => (SOUND_ENABLED_STATE = value)) + NOTIFICATIONS_ENABLED.subscribe((value) => (NOTIFICATIONS_ENABLED_STATE = value)) + let miniBreakCount = 0 let audio: HTMLAudioElement | null = null const playSound = () => { - if (audio) { + if (SOUND_ENABLED_STATE && audio) { audio.pause() audio.src = "/sounds/Bells.mp3" audio.volume = 0.4 @@ -22,21 +45,19 @@ } const showNotification = (title: string, options: NotificationOptions) => { - if (Notification.permission === "granted") { - new Notification(title, options) - } else if (Notification.permission !== "denied") { - Notification.requestPermission().then((permission) => { - if (permission === "granted") { - new Notification(title, options) - } - }) + if (NOTIFICATIONS_ENABLED_STATE) { + if (Notification.permission === "granted") { + new Notification(title, options) + } else if (Notification.permission !== "denied") { + Notification.requestPermission().then((permission) => { + if (permission === "granted") { + new Notification(title, options) + } + }) + } } } - const state: Writable = writable("Ready") - const timeLeftDisplay: Writable = writable("") - const timeLeft: Writable = writable(BREAK_INTERVAL) - const startTimer = () => { if (timer) clearInterval(timer) @@ -57,7 +78,8 @@ miniBreakCount = 0 timeLeftDisplay.set(formatTime(LONG_BREAK_DURATION)) showNotification("Long Break", { - body: "Take a 5-minute break now!", + body: `Take a ${LONG_BREAK_DURATION / (60 * 1000)}-second break now!`, + }) playSound() return LONG_BREAK_DURATION @@ -65,7 +87,7 @@ state.set("Mini Break") timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION)) showNotification("Mini Break", { - body: "Take a 20-second break now!", + body: `Take a ${MINI_BREAK_DURATION / 1000}-second break now!`, }) playSound() return MINI_BREAK_DURATION @@ -106,32 +128,88 @@
-
-

Prevent CVS

- {#if $state !== "Ready"} -

{$state}

-

Time left until end of break: {$timeLeftDisplay}

- {:else} -

Time left until break: {$timeLeftDisplay}

- {/if} - {#if $state !== "Ready"} - - {/if} +
+
+

Prevent CVS

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ +
+ +
+
+ +
+
+ {#if $state !== "Ready"} +
+

{$state}

+

Time left until end of break: {$timeLeftDisplay}

+ +
+ {:else} +

Time left until break: {$timeLeftDisplay}

+ {/if} +
+
+