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

35 lines
651 B
TypeScript
Raw Normal View History

2022-11-12 04:28:06 -05:00
import NewPost from "../../components/new"
2022-11-14 21:39:42 -05:00
import { notFound, redirect } from "next/navigation"
2022-11-12 04:28:06 -05:00
import { getPostById } from "@lib/server/prisma"
2022-11-14 21:39:42 -05:00
import { getSession } from "@lib/server/session"
2022-11-10 02:11:36 -05:00
const NewFromExisting = async ({
params
}: {
params: {
id: string
}
}) => {
2022-11-14 21:39:42 -05: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 21:38:05 -05:00
}
export default NewFromExisting