give schema to allow drizzle queries

This commit is contained in:
2025-01-08 04:26:16 +01:00
parent c302efc18c
commit e7383877df
4 changed files with 26 additions and 10 deletions

View File

@@ -1,8 +1,12 @@
import { db, tasks } from "$lib/db/schema"
import { eq } from "drizzle-orm"
import { db } from "$lib/db"
export const load = async ({ params }) => {
export const load = async () => {
return {
task: (await db.select().from(tasks).where(eq(tasks.id, params.id)))[0]
task: (await db.query.tasks.findFirst({
with: {
tasksToTopics: true
}
})
)
}
}

View File

@@ -2,4 +2,13 @@
let { data } = $props();
</script>
<h1 class="my-4 text-2xl font-bold text-center">{data.task.name} lol lo</h1>
<h1 class="my-4 text-2xl font-bold text-center">{data.task?.name}</h1>
<h2>Topics ({data.task?.tasksToTopics.length})</h2>
{#if data.task?.tasksToTopics}
{#each data.task?.tasksToTopics as topic}
<div class="rounded px-4 py-2 bg-gray-300">
{topic.topicId}
</div>
{/each}
{/if}