chatbot-template/app/share/[id]/page.tsx

54 lines
1.4 KiB
TypeScript
Raw Normal View History

import { type Metadata } from 'next'
import { notFound } from 'next/navigation'
2023-06-16 17:06:23 +04:00
import { formatDate } from '@/lib/utils'
import { getSharedChat } from '@/app/actions'
import { ChatList } from '@/components/chat-list'
import { FooterText } from '@/components/footer'
// export const runtime = 'edge'
export const preferredRegion = 'home'
2023-06-16 18:41:22 +04:00
interface SharePageProps {
params: {
id: string
}
}
export async function generateMetadata({
params
}: SharePageProps): Promise<Metadata> {
2023-06-16 17:06:23 +04:00
const chat = await getSharedChat(params.id)
return {
title: chat?.title.slice(0, 50) ?? 'Chat'
}
}
export default async function SharePage({ params }: SharePageProps) {
const chat = await getSharedChat(params.id)
if (!chat || !chat?.sharePath) {
notFound()
}
2023-06-16 17:06:23 +04:00
return (
<>
<div className="flex-1 space-y-6">
<div className="border-b bg-background px-4 py-6 md:px-6 md:py-8">
<div className="mx-auto max-w-2xl md:px-6">
<div className="space-y-1">
<h1 className="text-2xl font-bold">{chat.title}</h1>
<div className="text-sm text-muted-foreground">
{formatDate(chat.createdAt)} · {chat.messages.length} messages
</div>
</div>
</div>
</div>
<ChatList messages={chat.messages} />
</div>
<FooterText className="py-8" />
</>
)
}