diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 3f5f598..1db07e7 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,22 +1,38 @@ -generator client { - provider = "prisma-client-js" - binaryTargets = ["native", "rhel-openssl-1.0.x"] -} - -datasource db { - provider = "postgresql" - url = env("DATABASE_URL") -} - -model User { - id Int @id @default(autoincrement()) - - username String @unique - passwordHash String - userAuthToken String @unique - - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - - @@map("user") -} +generator client { + provider = "prisma-client-js" + binaryTargets = ["native", "rhel-openssl-1.0.x"] +} + +datasource db { + provider = "postgresql" + url = env("DATABASE_URL") +} + +model User { + id Int @id @default(autoincrement()) + + username String @unique + passwordHash String + userAuthToken String @unique + + createdAt DateTime @default(now()) + updatedAt DateTime @updatedAt + Timer Timer? + + @@map("user") +} + +model Timer { + id Int @id @default(autoincrement()) + user_id Int @unique + breakInterval Int @default(20) + miniBreakDuration Int @default(20) + longBreakDuration Int @default(5) + soundEnabled Boolean @default(true) + notificationsEnabled Boolean @default(true) + + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) + @@map("Timer") +} diff --git a/src/hooks.server.ts b/src/hooks.server.ts index 92e8d45..00bf283 100644 --- a/src/hooks.server.ts +++ b/src/hooks.server.ts @@ -10,12 +10,13 @@ export const handle: Handle = async ({ event, resolve }) => { const user = await db.user.findUnique({ where: { userAuthToken: session }, - select: { username: true }, + select: { username: true, id: true }, }) if (user) { event.locals.user = { name: user.username, + id: user.id, } } diff --git a/src/lib/index.ts b/src/lib/index.ts index e9046a7..4186cef 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,5 +1,6 @@ export type User = { username: string + id: number } export const themes = ["light", "dark"] as const diff --git a/src/lib/server/timer.ts b/src/lib/server/timer.ts new file mode 100644 index 0000000..5007dd3 --- /dev/null +++ b/src/lib/server/timer.ts @@ -0,0 +1,13 @@ + +export const updateTimer = async ({ user, breakInterval, miniBreakDuration, longBreakDuration, soundEnabled, notificationsEnabled }) => { + await db.timer.update({ + where: { user_id: user.id }, + data: { + breakInterval, + miniBreakDuration, + longBreakDuration, + soundEnabled, + notificationsEnabled, + }, + }) +} \ No newline at end of file diff --git a/src/routes/timer/+page.server.ts b/src/routes/timer/+page.server.ts new file mode 100644 index 0000000..f7ed0db --- /dev/null +++ b/src/routes/timer/+page.server.ts @@ -0,0 +1,52 @@ +import { redirect, type ServerLoadEvent } from "@sveltejs/kit" +import type { PageServerLoad } from "./$types" +import { db } from "$lib/server/database" +import type { User } from "$lib/index" + +export const load: PageServerLoad = async (event) => { + if (!event.locals.user) { + return + } + + let timer = await fetchTimer(event.locals.user) + + return { timer } +} + +async function fetchTimer(user: User) { + let timer = await db.timer.findUnique({ where: { user_id: user.id } }) + + if (!timer) { + await db.timer.create({ + data: { + user_id: user.id, + }, + }) + } + + return await db.timer.findUnique({ where: { user_id: user.id } }) +} + +export const actions = { + updateTimer: async ({ request, locals }) => { + const user = locals.user + const data = await request.formData() + console.log(data) + const breakInterval = parseInt(data.get("break-interval")) + const miniBreakDuration = parseInt(data.get("mini-break-duration")) + const longBreakDuration = parseInt(data.get("long-break-duration")) + const soundEnabled = data.get("sound-enabled") === "true" + const notificationsEnabled = data.get("notifications-enabled") === "true" + + await db.timer.update({ + where: { user_id: user.id }, + data: { + breakInterval, + miniBreakDuration, + longBreakDuration, + soundEnabled, + notificationsEnabled, + }, + }) + } +} diff --git a/src/routes/timer/+page.svelte b/src/routes/timer/+page.svelte index 965aec5..2c68d7c 100644 --- a/src/routes/timer/+page.svelte +++ b/src/routes/timer/+page.svelte @@ -1,24 +1,41 @@