fetch chats with userid

This commit is contained in:
litongjava 2025-02-03 00:17:55 -10:00
parent 66b48146a3
commit 3558dc2ed2
2 changed files with 11 additions and 11 deletions

View file

@ -20,8 +20,8 @@ const Page = () => {
useEffect(() => { useEffect(() => {
const fetchChats = async () => { const fetchChats = async () => {
setLoading(true); setLoading(true);
let userId = localStorage.getItem("userId");
const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/chats`, { const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/chats?userId=` + userId, {
method: 'GET', method: 'GET',
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
@ -65,14 +65,14 @@ const Page = () => {
</div> </div>
<hr className="border-t border-[#2B2C2C] my-4 w-full"/> <hr className="border-t border-[#2B2C2C] my-4 w-full"/>
</div> </div>
{chats.length === 0 && ( {chats && chats.length === 0 && (
<div className="flex flex-row items-center justify-center min-h-screen"> <div className="flex flex-row items-center justify-center min-h-screen">
<p className="text-black/70 dark:text-white/70 text-sm"> <p className="text-black/70 dark:text-white/70 text-sm">
No chats found. No chats found.
</p> </p>
</div> </div>
)} )}
{chats.length > 0 && ( {chats && chats.length > 0 && (
<div className="flex flex-col pb-20 lg:pb-2"> <div className="flex flex-col pb-20 lg:pb-2">
{chats.map((chat, i) => ( {chats.map((chat, i) => (
<div <div

View file

@ -525,7 +525,7 @@ const ChatWindow = ({id}: { id?: string }) => {
focusMode: focusMode, focusMode: focusMode,
copilotEnabled: copilotEnabled, copilotEnabled: copilotEnabled,
optimizationMode: optimizationMode, optimizationMode: optimizationMode,
history: [...chatHistory, ['human', message]], history: [],
}), }),
); );