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 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
}
}