This commit is contained in:
Santiago Lo Coco 2024-05-09 10:54:00 +02:00
parent 07ca080032
commit b47096f048
6 changed files with 22 additions and 38 deletions

View File

@ -1,18 +1,18 @@
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
binaryTargets = ["native", "rhel-openssl-1.0.x"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
url = env("DATABASE_URL")
}
model User {
id Int @id @default(autoincrement())
id Int @id @default(autoincrement())
username String @unique
passwordHash String
username String @unique
passwordHash String
userAuthToken String @unique
createdAt DateTime @default(now())

View File

@ -1,7 +1,7 @@
<script lang="ts">
import { enhance } from "$app/forms"
import type { User } from "$lib"
import ThemePicker, { type Theme } from "./ThemePicker.svelte"
import type { Theme, User } from "$lib"
import ThemePicker from "./ThemePicker.svelte"
let { theme, user } = $props<{ theme: Theme; user: User }>()

View File

@ -1,10 +1,6 @@
<script lang="ts" context="module">
export const themes = ["light", "dark"] as const
export type Theme = "light" | "dark"
</script>
<script lang="ts">
import { browser } from "$app/environment"
import { themes, type Theme } from "$lib"
let { theme } = $props<{ theme: Theme }>()

View File

@ -1,3 +1,7 @@
export type User = {
username: string
}
export const themes = ["light", "dark"] as const
export type Theme = "light" | "dark"

View File

@ -1,11 +1,8 @@
<script lang="ts">
import NavBar from "$lib/components/NavBar.svelte"
import type { Theme, User } from "$lib"
import "../app.css"
import type { Theme } from "$lib/components/ThemePicker.svelte"
import type { User } from "$lib"
let { data } = $props()
let user = $state(data.user as User)

View File

@ -3,8 +3,8 @@
import { writable } from "svelte/store"
import type { Writable } from "svelte/store"
const MINI_BREAK_DURATION = 20 * 60 * 1000 // 20 minutes
const MINI_BREAK_INTERVAL = 20 * 1000 // 20 seconds
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
let timer: number | null = null
@ -35,7 +35,7 @@
const state: Writable<string> = writable("Ready")
const timeLeftDisplay: Writable<string> = writable("")
const timeLeft: Writable<number> = writable(MINI_BREAK_DURATION)
const timeLeft: Writable<number> = writable(BREAK_INTERVAL)
const startTimer = () => {
if (timer) clearInterval(timer)
@ -47,10 +47,10 @@
if ($state !== "Ready") {
state.set("Ready")
miniBreakCount++
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION))
timeLeftDisplay.set(formatTime(BREAK_INTERVAL))
showNotification("Ready", { body: "Continue working!" })
playSound()
return MINI_BREAK_DURATION
return BREAK_INTERVAL
}
if (miniBreakCount === 3) {
state.set("Long Break")
@ -63,12 +63,12 @@
return LONG_BREAK_DURATION
} else {
state.set("Mini Break")
timeLeftDisplay.set(formatTime(MINI_BREAK_INTERVAL))
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION))
showNotification("Mini Break", {
body: "Take a 20-second break now!",
})
playSound()
return MINI_BREAK_INTERVAL
return MINI_BREAK_DURATION
}
}
timeLeftDisplay.set(formatTime(newTimeLeft))
@ -88,31 +88,18 @@
})
const skipBreak = () => {
// if (timer) clearInterval(timer);
if ($state === "Ready") {
return
}
state.set("Ready")
timeLeft.set(MINI_BREAK_DURATION)
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION))
// startTimer();
}
const postponeBreak = () => {
// if (timer) clearInterval(timer);
state.set("Ready")
// setTimeout(startTimer, 2 * MINI_BREAK_INTERVAL); // Postpone for 2 mini-break intervals
timeLeft.set(MINI_BREAK_DURATION) // Corrected line
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION)) // Use MINI_BREAK_INTERVAL directly
timeLeft.set(BREAK_INTERVAL)
timeLeftDisplay.set(formatTime(BREAK_INTERVAL))
}
function formatTime(milliseconds: number) {
const totalSeconds = Math.floor(milliseconds / 1000)
const minutes = Math.floor(totalSeconds / 60)
const seconds = totalSeconds % 60
console.log(
`${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`
)
return `${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`
}