"use client"; import { useEffect, useState } from "react"; import { Pencil2Icon } from "@radix-ui/react-icons"; import { Message } from "ai/react"; import Image from "next/image"; import OllamaLogo from "../../public/ollama.png"; import { ChatOptions } from "./chat/chat-options"; import SidebarTabs from "./sidebar-tabs"; import Link from "next/link"; interface SidebarProps { isCollapsed: boolean; onClick?: () => void; isMobile: boolean; chatId: string; setChatId: React.Dispatch>; chatOptions: ChatOptions; setChatOptions: React.Dispatch>; } interface Chats { [key: string]: { chatId: string; messages: Message[] }[]; } export function Sidebar({ isCollapsed, isMobile, chatId, setChatId, chatOptions, setChatOptions, }: SidebarProps) { const [localChats, setLocalChats] = useState({}); const [isLoading, setIsLoading] = useState(true); useEffect(() => { setLocalChats(getLocalstorageChats()); const handleStorageChange = () => { setLocalChats(getLocalstorageChats()); }; window.addEventListener("storage", handleStorageChange); return () => { window.removeEventListener("storage", handleStorageChange); }; }, [chatId]); const getLocalstorageChats = (): Chats => { const chats = Object.keys(localStorage).filter((key) => key.startsWith("chat_") ); if (chats.length === 0) { setIsLoading(false); } // Map through the chats and return an object with chatId and messages const chatObjects = chats.map((chat) => { const item = localStorage.getItem(chat); return item ? { chatId: chat, messages: JSON.parse(item) } : { chatId: "", messages: [] }; }); // Sort chats by the createdAt date of the first message of each chat chatObjects.sort((a, b) => { const aDate = new Date(a.messages[0].createdAt); const bDate = new Date(b.messages[0].createdAt); return bDate.getTime() - aDate.getTime(); }); const groupChatsByDate = ( chats: { chatId: string; messages: Message[] }[] ) => { const today = new Date(); const yesterday = new Date(today); yesterday.setDate(yesterday.getDate() - 1); const groupedChats: Chats = {}; chats.forEach((chat) => { const createdAt = new Date(chat.messages[0].createdAt ?? ""); const diffInDays = Math.floor( (today.getTime() - createdAt.getTime()) / (1000 * 3600 * 24) ); let group: string; if (diffInDays === 0) { group = "Today"; } else if (diffInDays === 1) { group = "Yesterday"; } else if (diffInDays <= 7) { group = "Previous 7 Days"; } else if (diffInDays <= 30) { group = "Previous 30 Days"; } else { group = "Older"; } if (!groupedChats[group]) { groupedChats[group] = []; } groupedChats[group].push(chat); }); return groupedChats; }; setIsLoading(false); const groupedChats = groupChatsByDate(chatObjects); return groupedChats; }; const handleDeleteChat = (chatId: string) => { localStorage.removeItem(chatId); setLocalChats(getLocalstorageChats()); }; return (
{ setChatId(""); }} >
{!isCollapsed && !isMobile && ( AI )} New chat
); }