CoastalCommitsPastes/client/app/(posts)/new/from/[id]/page.tsx

35 lines
651 B
TypeScript
Raw Normal View History

2022-11-12 01:28:06 -08:00
import NewPost from "../../components/new"
2022-11-14 18:39:42 -08:00
import { notFound, redirect } from "next/navigation"
2022-11-12 01:28:06 -08:00
import { getPostById } from "@lib/server/prisma"
2022-11-14 18:39:42 -08:00
import { getSession } from "@lib/server/session"
2022-11-09 23:11:36 -08:00
const NewFromExisting = async ({
params
}: {
params: {
id: string
}
}) => {
2022-11-14 18:39:42 -08:00
const session = await getSession()
if (!session?.user) {
return redirect("/signin")
}
const { id } = params
if (!id) {
return notFound()
}
const post = await getPostById(id, {
withFiles: true,
withAuthor: false
})
const serialized = JSON.stringify(post)
return <NewPost initialPost={serialized} newPostParent={id} />
2022-11-09 18:38:05 -08:00
}
export default NewFromExisting