"use client"; import React from "react"; import { DialogClose } from "@radix-ui/react-dialog"; import { ChatBubbleIcon, GearIcon, TrashIcon } from "@radix-ui/react-icons"; import * as Tabs from "@radix-ui/react-tabs"; import { Message } from "ai/react"; import Link from "next/link"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { ChatOptions } from "./chat/chat-options"; import Settings from "./settings"; import SidebarSkeleton from "./sidebar-skeleton"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "./ui/dialog"; interface Chats { [key: string]: { chatId: string; messages: Message[] }[]; } interface SidebarTabsProps { isLoading: boolean; localChats: Chats; selectedChatId: string; chatOptions: ChatOptions; setChatOptions: React.Dispatch>; handleDeleteChat: (chatId: string) => void; } const SidebarTabs = ({ localChats, selectedChatId, isLoading, chatOptions, setChatOptions, handleDeleteChat, }: SidebarTabsProps) => (
{Object.keys(localChats).length > 0 && ( <> {Object.keys(localChats).map((group, index) => (

{group}

    {localChats[group].map( ({ chatId, messages }, chatIndex) => { const isSelected = chatId.substring(5) === selectedChatId; return (
  1. {messages.length > 0 ? messages[0].content : ""}
    Delete chat? Are you sure you want to delete this chat? This action cannot be undone.
    Cancel handleDeleteChat(chatId)} > Delete
  2. ); } )}
))} )} {isLoading && }
{/* Chats */} {/* Settings */}
); export default SidebarTabs;