Reformat
This commit is contained in:
parent
2603c57018
commit
d93640c9ba
|
@ -2,11 +2,23 @@
|
||||||
import { onDestroy, onMount } from "svelte"
|
import { onDestroy, onMount } from "svelte"
|
||||||
import { browser } from "$app/environment"
|
import { browser } from "$app/environment"
|
||||||
|
|
||||||
let BREAK_INTERVAL_STORE = $state(browser ? (localStorage.getItem('breakInterval') || 20) : 20)
|
let BREAK_INTERVAL_STORE = $state(
|
||||||
let MINI_BREAK_DURATION_STORE = $state(browser ? (localStorage.getItem('miniBreakDuration') || 20) : 20)
|
browser ? localStorage.getItem("breakInterval") || 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 MINI_BREAK_DURATION_STORE = $state(
|
||||||
let NOTIFICATIONS_ENABLED = $state(browser ? ((localStorage.getItem('notificationsEnabled') || 'true') === 'true') : true)
|
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 BREAK_INTERVAL: number
|
||||||
let MINI_BREAK_DURATION: number
|
let MINI_BREAK_DURATION: number
|
||||||
|
@ -27,20 +39,20 @@
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
MINI_BREAK_DURATION = MINI_BREAK_DURATION_STORE * 1000
|
MINI_BREAK_DURATION = MINI_BREAK_DURATION_STORE * 1000
|
||||||
localStorage.setItem('miniBreakDuration', MINI_BREAK_DURATION_STORE)
|
localStorage.setItem("miniBreakDuration", MINI_BREAK_DURATION_STORE)
|
||||||
})
|
})
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
LONG_BREAK_DURATION = LONG_BREAK_DURATION_STORE * 60 * 1000
|
LONG_BREAK_DURATION = LONG_BREAK_DURATION_STORE * 60 * 1000
|
||||||
localStorage.setItem('longBreakDuration', LONG_BREAK_DURATION_STORE)
|
localStorage.setItem("longBreakDuration", LONG_BREAK_DURATION_STORE)
|
||||||
})
|
})
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
localStorage.setItem('soundEnabled', SOUND_ENABLED)
|
localStorage.setItem("soundEnabled", SOUND_ENABLED)
|
||||||
})
|
})
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
localStorage.setItem('notificationsEnabled', NOTIFICATIONS_ENABLED)
|
localStorage.setItem("notificationsEnabled", NOTIFICATIONS_ENABLED)
|
||||||
})
|
})
|
||||||
|
|
||||||
let miniBreakCount = 0
|
let miniBreakCount = 0
|
||||||
|
@ -142,87 +154,82 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
{#if !browser}
|
||||||
{#if !browser}
|
<div class="loading-spinner" />
|
||||||
<div class="loading-spinner"/>
|
{:else}
|
||||||
{:else}
|
<div class="container">
|
||||||
|
<div class="settings">
|
||||||
|
<div class="setting">
|
||||||
<div class="container">
|
<label for="break-interval"
|
||||||
<div class="settings">
|
>Break interval: {BREAK_INTERVAL_STORE} minutes</label
|
||||||
|
>
|
||||||
<div class="setting">
|
<input
|
||||||
<label for="break-interval"
|
type="range"
|
||||||
>Break interval: {BREAK_INTERVAL_STORE} minutes</label
|
min="1"
|
||||||
>
|
max="60"
|
||||||
<input
|
step="1"
|
||||||
type="range"
|
bind:value={BREAK_INTERVAL_STORE}
|
||||||
min="1"
|
/>
|
||||||
max="60"
|
|
||||||
step="1"
|
|
||||||
bind:value={BREAK_INTERVAL_STORE}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="setting">
|
|
||||||
<label for="mini-break-duration"
|
|
||||||
>Mini break duration: {MINI_BREAK_DURATION_STORE} seconds</label
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="range"
|
|
||||||
min="5"
|
|
||||||
max="60"
|
|
||||||
step="1"
|
|
||||||
bind:value={MINI_BREAK_DURATION_STORE}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="setting">
|
|
||||||
<label for="long-break-duration"
|
|
||||||
>Long break duration: {LONG_BREAK_DURATION_STORE} minutes</label
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="range"
|
|
||||||
min="1"
|
|
||||||
max="30"
|
|
||||||
step="1"
|
|
||||||
bind:value={LONG_BREAK_DURATION_STORE}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="setting">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" bind:checked={SOUND_ENABLED} />
|
|
||||||
Sound
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="setting">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" bind:checked={NOTIFICATIONS_ENABLED} />
|
|
||||||
Notifications
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<h1>Prevent CVS</h1>
|
|
||||||
|
|
||||||
<div class="timer">
|
|
||||||
{#if timerState !== "Ready"}
|
|
||||||
<div class="timer-content">
|
|
||||||
<p class="state">{timerState}</p>
|
|
||||||
<p>Time left until end of break: {timeLeftDisplay}</p>
|
|
||||||
<button on:click={skipBreak}>Skip break</button>
|
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
|
||||||
<p>Time left until break: {timeLeftDisplay}</p>
|
<div class="setting">
|
||||||
{/if}
|
<label for="mini-break-duration"
|
||||||
|
>Mini break duration: {MINI_BREAK_DURATION_STORE} seconds</label
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
type="range"
|
||||||
|
min="5"
|
||||||
|
max="60"
|
||||||
|
step="1"
|
||||||
|
bind:value={MINI_BREAK_DURATION_STORE}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="setting">
|
||||||
|
<label for="long-break-duration"
|
||||||
|
>Long break duration: {LONG_BREAK_DURATION_STORE} minutes</label
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
type="range"
|
||||||
|
min="1"
|
||||||
|
max="30"
|
||||||
|
step="1"
|
||||||
|
bind:value={LONG_BREAK_DURATION_STORE}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="setting">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" bind:checked={SOUND_ENABLED} />
|
||||||
|
Sound
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="setting">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" bind:checked={NOTIFICATIONS_ENABLED} />
|
||||||
|
Notifications
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
<div class="container">
|
||||||
{/if}
|
<h1>Prevent CVS</h1>
|
||||||
|
|
||||||
|
<div class="timer">
|
||||||
|
{#if timerState !== "Ready"}
|
||||||
|
<div class="timer-content">
|
||||||
|
<p class="state">{timerState}</p>
|
||||||
|
<p>Time left until end of break: {timeLeftDisplay}</p>
|
||||||
|
<button on:click={skipBreak}>Skip break</button>
|
||||||
|
</div>
|
||||||
|
{:else}
|
||||||
|
<p>Time left until break: {timeLeftDisplay}</p>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style lang="postcss">
|
<style lang="postcss">
|
||||||
|
@ -293,6 +300,4 @@
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue