Update timer

This commit is contained in:
Santiago Lo Coco 2024-04-23 20:28:54 +02:00
parent cc4d705ab9
commit d0b72e833c
1 changed files with 10 additions and 13 deletions

View File

@ -15,11 +15,9 @@
import { writable } from "svelte/store" import { writable } from "svelte/store"
import type { 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_DURATION = 20 * 60 * 1000; // 20 minutes const MINI_BREAK_INTERVAL = 20 * 1000 // 20 seconds
const MINI_BREAK_INTERVAL = 5 * 1000 // 20 seconds const LONG_BREAK_DURATION = 5 * 60 * 1000; // 5 minutes
// const LONG_BREAK_DURATION = 5 * 60 * 1000; // 5 minutes
const LONG_BREAK_DURATION = 0.3 * 60 * 1000 // 2 minutes
let timer: number | null = null let timer: number | null = null
let miniBreakCount = 0 let miniBreakCount = 0
@ -28,20 +26,20 @@
const playSound = () => { const playSound = () => {
if (audio) { if (audio) {
// audio.pause(); audio.pause();
audio.src = "/sounds/Bells.mp3" audio.src = "/sounds/Bells.mp3"
audio.volume = 0.4 audio.volume = 0.4
// audio.play(); audio.play();
} }
} }
const showNotification = (title: string, options: NotificationOptions) => { const showNotification = (title: string, options: NotificationOptions) => {
if (Notification.permission === "granted") { if (Notification.permission === "granted") {
// new Notification(title, options); new Notification(title, options);
} else if (Notification.permission !== "denied") { } else if (Notification.permission !== "denied") {
Notification.requestPermission().then((permission) => { Notification.requestPermission().then((permission) => {
if (permission === "granted") { if (permission === "granted") {
// new Notification(title, options); new Notification(title, options);
} }
}) })
} }
@ -63,7 +61,7 @@
miniBreakCount++ miniBreakCount++
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION)) timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION))
showNotification("Ready", { body: "Continue working!" }) showNotification("Ready", { body: "Continue working!" })
playSound() // Adjust volume as needed playSound()
return MINI_BREAK_DURATION return MINI_BREAK_DURATION
} }
if (miniBreakCount === 3) { if (miniBreakCount === 3) {
@ -73,16 +71,15 @@
showNotification("Long Break", { showNotification("Long Break", {
body: "Take a 5-minute break now!", body: "Take a 5-minute break now!",
}) })
playSound() // Adjust volume as needed playSound()
return LONG_BREAK_DURATION return LONG_BREAK_DURATION
} else { } else {
state.set("Mini Break") state.set("Mini Break")
// miniBreakCount++;
timeLeftDisplay.set(formatTime(MINI_BREAK_INTERVAL)) timeLeftDisplay.set(formatTime(MINI_BREAK_INTERVAL))
showNotification("Mini Break", { showNotification("Mini Break", {
body: "Take a 20-second break now!", body: "Take a 20-second break now!",
}) })
playSound() // Adjust volume as needed playSound()
return MINI_BREAK_INTERVAL return MINI_BREAK_INTERVAL
} }
} }