diff --git a/src/routes/timer/+page.svelte b/src/routes/timer/+page.svelte index 80bbad3..461d0e8 100644 --- a/src/routes/timer/+page.svelte +++ b/src/routes/timer/+page.svelte @@ -2,11 +2,23 @@ import { onDestroy, onMount } from "svelte" import { browser } from "$app/environment" - let BREAK_INTERVAL_STORE = $state(browser ? (localStorage.getItem('breakInterval') || 20) : 20) - let MINI_BREAK_DURATION_STORE = $state(browser ? (localStorage.getItem('miniBreakDuration') || 20) : 20) - let LONG_BREAK_DURATION_STORE = $state(browser ? (localStorage.getItem('longBreakDuration') || 5) : 5) - let SOUND_ENABLED = $state(browser ? ((localStorage.getItem('soundEnabled') || 'true') === 'true') : true) - let NOTIFICATIONS_ENABLED = $state(browser ? ((localStorage.getItem('notificationsEnabled') || 'true') === 'true') : true) + let BREAK_INTERVAL_STORE = $state( + browser ? localStorage.getItem("breakInterval") || 20 : 20 + ) + let MINI_BREAK_DURATION_STORE = $state( + browser ? localStorage.getItem("miniBreakDuration") || 20 : 20 + ) + let LONG_BREAK_DURATION_STORE = $state( + browser ? localStorage.getItem("longBreakDuration") || 5 : 5 + ) + let SOUND_ENABLED = $state( + browser ? (localStorage.getItem("soundEnabled") || "true") === "true" : true + ) + let NOTIFICATIONS_ENABLED = $state( + browser + ? (localStorage.getItem("notificationsEnabled") || "true") === "true" + : true + ) let BREAK_INTERVAL: number let MINI_BREAK_DURATION: number @@ -27,20 +39,20 @@ $effect(() => { MINI_BREAK_DURATION = MINI_BREAK_DURATION_STORE * 1000 - localStorage.setItem('miniBreakDuration', MINI_BREAK_DURATION_STORE) + localStorage.setItem("miniBreakDuration", MINI_BREAK_DURATION_STORE) }) $effect(() => { LONG_BREAK_DURATION = LONG_BREAK_DURATION_STORE * 60 * 1000 - localStorage.setItem('longBreakDuration', LONG_BREAK_DURATION_STORE) + localStorage.setItem("longBreakDuration", LONG_BREAK_DURATION_STORE) }) $effect(() => { - localStorage.setItem('soundEnabled', SOUND_ENABLED) + localStorage.setItem("soundEnabled", SOUND_ENABLED) }) $effect(() => { - localStorage.setItem('notificationsEnabled', NOTIFICATIONS_ENABLED) + localStorage.setItem("notificationsEnabled", NOTIFICATIONS_ENABLED) }) let miniBreakCount = 0 @@ -142,87 +154,82 @@
- -{#if !browser} -
-{:else} - - -
-
- -
- - -
- -
- - -
- -
- - -
- -
- -
- -
- -
-
-
- -
-

Prevent CVS

- -
- {#if timerState !== "Ready"} -
-

{timerState}

-

Time left until end of break: {timeLeftDisplay}

- + {#if !browser} +
+ {:else} +
+
+
+ +
- {:else} -

Time left until break: {timeLeftDisplay}

- {/if} + +
+ + +
+ +
+ + +
+ +
+ +
+ +
+ +
+
-
- -{/if} + +
+

Prevent CVS

+ +
+ {#if timerState !== "Ready"} +
+

{timerState}

+

Time left until end of break: {timeLeftDisplay}

+ +
+ {:else} +

Time left until break: {timeLeftDisplay}

+ {/if} +
+
+ {/if}