diff --git a/src/app/blog/write/[[...slug]]/page.tsx b/src/app/blog/write/[[...slug]]/page.tsx index 68a2294..35be1b0 100644 --- a/src/app/blog/write/[[...slug]]/page.tsx +++ b/src/app/blog/write/[[...slug]]/page.tsx @@ -1,8 +1,8 @@ import { notFound, redirect } from "next/navigation"; -import { getPost } from "../../action"; import { Post } from "../../types"; import Write from "../Write"; import { isLoggedIn } from "@/components/auth"; +import { PrismaClient } from "@prisma/client"; export default async function WritePage({ params, @@ -16,10 +16,20 @@ export default async function WritePage({ const slug = (await params).slug?.[0]; let post: Post | undefined = undefined; if (slug) { - post = (await getPost(slug)) ?? undefined; - if (post == null) { + const prisma = new PrismaClient(); + const result = + (await prisma.post.findUnique({ + where: { slug }, + include: { tags: true }, + })) ?? undefined; + if (result == null) { notFound(); } + post = { + ...result, + tags: result.tags.map((tag) => tag.name), + contentRendered: result.contentRendered as { __html: string }, + }; } return ; }