2022-11-12 04:28:06 -05:00
|
|
|
import NewPost from "../../components/new"
|
2022-11-12 19:06:23 -05:00
|
|
|
import { notFound } from "next/navigation"
|
2022-11-12 04:28:06 -05:00
|
|
|
import { getPostById } from "@lib/server/prisma"
|
2022-11-10 02:11:36 -05:00
|
|
|
|
2022-11-09 22:46:12 -05:00
|
|
|
const NewFromExisting = async ({
|
|
|
|
params
|
|
|
|
}: {
|
|
|
|
params: {
|
|
|
|
id: string
|
|
|
|
}
|
|
|
|
}) => {
|
|
|
|
const { id } = params
|
|
|
|
|
|
|
|
if (!id) {
|
2022-11-12 19:06:23 -05:00
|
|
|
return notFound()
|
2022-11-09 22:46:12 -05:00
|
|
|
}
|
|
|
|
|
2022-11-14 04:28:40 -05:00
|
|
|
const post = await getPostById(id, {
|
|
|
|
withFiles: true,
|
|
|
|
})
|
2022-11-09 22:46:12 -05:00
|
|
|
|
2022-11-12 21:39:03 -05:00
|
|
|
return <NewPost initialPost={post} newPostParent={id} />
|
2022-11-09 21:38:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NewFromExisting
|