mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			536 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			31 lines
		
	
	
		
			536 B
		
	
	
	
		
			TypeScript
		
	
import NewPost from "@components/new-post"
 | 
						|
import { useRouter } from "next/navigation"
 | 
						|
import { getPostWithFiles } from "@lib/server/prisma"
 | 
						|
import Header from "@components/header"
 | 
						|
 | 
						|
const NewFromExisting = async ({
 | 
						|
	params
 | 
						|
}: {
 | 
						|
	params: {
 | 
						|
		id: string
 | 
						|
	}
 | 
						|
}) => {
 | 
						|
	const { id } = params
 | 
						|
	const router = useRouter()
 | 
						|
 | 
						|
	if (!id) {
 | 
						|
		return router.push("/new")
 | 
						|
	}
 | 
						|
 | 
						|
	const post = await getPostWithFiles(id)
 | 
						|
 | 
						|
	return (
 | 
						|
		<>
 | 
						|
			<Header signedIn />
 | 
						|
			<NewPost initialPost={post} newPostParent={id} />
 | 
						|
		</>
 | 
						|
	)
 | 
						|
}
 | 
						|
 | 
						|
export default NewFromExisting
 |