Spaces:
Running
Running
File size: 7,103 Bytes
5012205 7984c85 5012205 7984c85 5012205 7984c85 5012205 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
"use client";
import { defaultModel, type modelID } from "@/ai/providers";
import { Message, useChat } from "@ai-sdk/react";
import { useState, useEffect, useMemo, useCallback } from "react";
import { Textarea } from "./textarea";
import { ProjectOverview } from "./project-overview";
import { Messages } from "./messages";
import { toast } from "sonner";
import { useRouter, useParams } from "next/navigation";
import { getUserId } from "@/lib/user-id";
import { useLocalStorageValue, useLocalStorage } from "@/lib/hooks/use-local-storage";
import { STORAGE_KEYS } from "@/lib/constants";
import { useQuery, useQueryClient } from "@tanstack/react-query";
import { convertToUIMessages } from "@/lib/chat-store";
import { type Message as DBMessage } from "@/lib/db/schema";
import { nanoid } from "nanoid";
// Define types for MCP server
interface KeyValuePair {
key: string;
value: string;
}
interface MCPServer {
id: string;
name: string;
url: string;
type: 'sse' | 'stdio';
command?: string;
args?: string[];
env?: KeyValuePair[];
headers?: KeyValuePair[];
}
interface ChatData {
id: string;
messages: DBMessage[];
createdAt: string;
updatedAt: string;
}
export default function Chat() {
const router = useRouter();
const params = useParams();
const chatId = params?.id as string | undefined;
const queryClient = useQueryClient();
const [selectedModel, setSelectedModel] = useLocalStorage<modelID>("selectedModel", defaultModel);
const [userId, setUserId] = useState<string>('');
const [generatedChatId, setGeneratedChatId] = useState<string>('');
// Get MCP server data from localStorage via our custom hooks
const mcpServers = useLocalStorageValue<MCPServer[]>(STORAGE_KEYS.MCP_SERVERS, []);
const selectedMcpServers = useLocalStorageValue<string[]>(STORAGE_KEYS.SELECTED_MCP_SERVERS, []);
// Initialize userId
useEffect(() => {
setUserId(getUserId());
}, []);
// Generate a chat ID if needed
useEffect(() => {
if (!chatId) {
setGeneratedChatId(nanoid());
}
}, [chatId]);
// Use React Query to fetch chat history
const { data: chatData, isLoading: isLoadingChat } = useQuery({
queryKey: ['chat', chatId, userId] as const,
queryFn: async ({ queryKey }) => {
const [_, chatId, userId] = queryKey;
if (!chatId || !userId) return null;
try {
const response = await fetch(`/api/chats/${chatId}`, {
headers: {
'x-user-id': userId
}
});
if (!response.ok) {
throw new Error('Failed to load chat');
}
const data = await response.json();
return data as ChatData;
} catch (error) {
console.error('Error loading chat history:', error);
toast.error('Failed to load chat history');
throw error;
}
},
enabled: !!chatId && !!userId,
retry: 1,
staleTime: 1000 * 60 * 5, // 5 minutes
refetchOnWindowFocus: false
});
// Memoize MCP server configuration for API
const mcpServersForApi = useMemo(() => {
if (!selectedMcpServers.length) return [];
return selectedMcpServers
.map(id => mcpServers.find(server => server.id === id))
.filter((server): server is MCPServer => Boolean(server))
.map(server => ({
type: server.type,
url: server.url,
command: server.command,
args: server.args,
env: server.env,
headers: server.headers
}));
}, [mcpServers, selectedMcpServers]);
// Prepare initial messages from query data
const initialMessages = useMemo(() => {
if (!chatData || !chatData.messages || chatData.messages.length === 0) {
return [];
}
// Convert DB messages to UI format, then ensure it matches the Message type from @ai-sdk/react
const uiMessages = convertToUIMessages(chatData.messages);
return uiMessages.map(msg => ({
id: msg.id,
role: msg.role as Message['role'], // Ensure role is properly typed
content: msg.content,
parts: msg.parts,
} as Message));
}, [chatData]);
const { messages, input, handleInputChange, handleSubmit, status, stop } =
useChat({
id: chatId || generatedChatId, // Use generated ID if no chatId in URL
initialMessages,
maxSteps: 20,
body: {
selectedModel,
mcpServers: mcpServersForApi,
chatId: chatId || generatedChatId, // Use generated ID if no chatId in URL
userId,
},
experimental_throttle: 500,
onFinish: () => {
// Invalidate the chats query to refresh the sidebar
if (userId) {
queryClient.invalidateQueries({ queryKey: ['chats', userId] });
}
},
onError: (error) => {
toast.error(
error.message.length > 0
? error.message
: "An error occured, please try again later.",
{ position: "top-center", richColors: true },
);
},
});
// Custom submit handler
const handleFormSubmit = useCallback((e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
if (!chatId && generatedChatId && input.trim()) {
// If this is a new conversation, redirect to the chat page with the generated ID
const effectiveChatId = generatedChatId;
// Submit the form
handleSubmit(e);
// Redirect to the chat page with the generated ID
router.push(`/chat/${effectiveChatId}`);
} else {
// Normal submission for existing chats
handleSubmit(e);
}
}, [chatId, generatedChatId, input, handleSubmit, router]);
const isLoading = status === "streaming" || status === "submitted" || isLoadingChat;
return (
<div className="h-dvh flex flex-col justify-center w-full max-w-3xl mx-auto px-4 sm:px-6 md:py-4">
{messages.length === 0 && !isLoadingChat ? (
<div className="max-w-xl mx-auto w-full">
<ProjectOverview />
<form
onSubmit={handleFormSubmit}
className="mt-4 w-full mx-auto"
>
<Textarea
selectedModel={selectedModel}
setSelectedModel={setSelectedModel}
handleInputChange={handleInputChange}
input={input}
isLoading={isLoading}
status={status}
stop={stop}
/>
</form>
</div>
) : (
<>
<div className="flex-1 overflow-y-auto min-h-0 pb-2">
<Messages messages={messages} isLoading={isLoading} status={status} />
</div>
<form
onSubmit={handleFormSubmit}
className="mt-2 w-full mx-auto mb-4"
>
<Textarea
selectedModel={selectedModel}
setSelectedModel={setSelectedModel}
handleInputChange={handleInputChange}
input={input}
isLoading={isLoading}
status={status}
stop={stop}
/>
</form>
</>
)}
</div>
);
}
|