Refactor to use hooks (#436)

This commit is contained in:
Jeremy 2024-10-11 18:00:22 +05:30 committed by GitHub
parent 124efca9a1
commit cb60f8b143
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
139 changed files with 8871 additions and 8726 deletions

View file

@ -1,65 +1,108 @@
import { type Metadata } from 'next'
import { notFound, redirect } from 'next/navigation'
import { CoreMessage, CoreToolMessage, Message, ToolInvocation } from "ai";
import { notFound } from "next/navigation";
import { auth } from '@/auth'
import { getChat, getMissingKeys } from '@/app/actions'
import { Chat } from '@/components/chat'
import { AI } from '@/lib/chat/actions'
import { Session } from '@/lib/types'
import { auth } from "@/app/(auth)/auth";
import { Chat as PreviewChat } from "@/components/custom/chat";
import { getChatById } from "@/db/queries";
import { Chat } from "@/db/schema";
import { generateUUID } from "@/lib/utils";
export interface ChatPageProps {
params: {
id: string
}
}
function addToolMessageToChat({
toolMessage,
messages,
}: {
toolMessage: CoreToolMessage;
messages: Array<Message>;
}): Array<Message> {
return messages.map((message) => {
if (message.toolInvocations) {
return {
...message,
toolInvocations: message.toolInvocations.map((toolInvocation) => {
const toolResult = toolMessage.content.find(
(tool) => tool.toolCallId === toolInvocation.toolCallId,
);
export async function generateMetadata({
params
}: ChatPageProps): Promise<Metadata> {
const session = await auth()
if (toolResult) {
return {
...toolInvocation,
state: "result",
result: toolResult.result,
};
}
if (!session?.user) {
return {}
}
const chat = await getChat(params.id, session.user.id)
if (!chat || 'error' in chat) {
redirect('/')
} else {
return {
title: chat?.title.toString().slice(0, 50) ?? 'Chat'
}
}
}
export default async function ChatPage({ params }: ChatPageProps) {
const session = (await auth()) as Session
const missingKeys = await getMissingKeys()
if (!session?.user) {
redirect(`/login?next=/chat/${params.id}`)
}
const userId = session.user.id as string
const chat = await getChat(params.id, userId)
if (!chat || 'error' in chat) {
redirect('/')
} else {
if (chat?.userId !== session?.user?.id) {
notFound()
return toolInvocation;
}),
};
}
return (
<AI initialAIState={{ chatId: chat.id, messages: chat.messages }}>
<Chat
id={chat.id}
session={session}
initialMessages={chat.messages}
missingKeys={missingKeys}
/>
</AI>
)
}
return message;
});
}
function convertToUIMessages(messages: Array<CoreMessage>): Array<Message> {
return messages.reduce((chatMessages: Array<Message>, message) => {
if (message.role === "tool") {
return addToolMessageToChat({
toolMessage: message as CoreToolMessage,
messages: chatMessages,
});
}
let textContent = "";
let toolInvocations: Array<ToolInvocation> = [];
if (typeof message.content === "string") {
textContent = message.content;
} else if (Array.isArray(message.content)) {
for (const content of message.content) {
if (content.type === "text") {
textContent += content.text;
} else if (content.type === "tool-call") {
toolInvocations.push({
state: "call",
toolCallId: content.toolCallId,
toolName: content.toolName,
args: content.args,
});
}
}
}
chatMessages.push({
id: generateUUID(),
role: message.role,
content: textContent,
toolInvocations,
});
return chatMessages;
}, []);
}
export default async function Page({ params }: { params: any }) {
const { id } = params;
const chatFromDb = await getChatById({ id });
if (!chatFromDb) {
notFound();
}
// type casting
const chat: Chat = {
...chatFromDb,
messages: convertToUIMessages(chatFromDb.messages as Array<CoreMessage>),
};
const session = await auth();
if (!session || !session.user) {
return notFound();
}
if (session.user.id !== chat.userId) {
return notFound();
}
return <PreviewChat id={chat.id} initialMessages={chat.messages} />;
}