vision-agent / components /chat /ChatServer.tsx
MingruiZhang's picture
feat: Chat selector in Header (#59)
009c95b unverified
raw
history blame
502 Bytes
import { Chat } from './ChatClient';
import { auth } from '@/auth';
import { dbGetChat } from '@/lib/db/functions';
import { redirect } from 'next/navigation';
import { revalidatePath } from 'next/cache';
interface ChatServerProps {
id: string;
}
export default async function ChatServer({ id }: ChatServerProps) {
const chat = await dbGetChat(id);
if (!chat) {
revalidatePath('/');
redirect('/');
}
const session = await auth();
return <Chat chat={chat} session={session} />;
}