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

View File

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

View File

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

View File

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

View File

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