Spaces:
Runtime error
Runtime error
File size: 7,123 Bytes
0971cc4 |
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 |
"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<React.SetStateAction<ChatOptions>>;
handleDeleteChat: (chatId: string) => void;
}
const SidebarTabs = ({
localChats,
selectedChatId,
isLoading,
chatOptions,
setChatOptions,
handleDeleteChat,
}: SidebarTabsProps) => (
<Tabs.Root
className="overflow-hidden h-full bg-accent/20 dark:bg-card/35"
defaultValue="chats"
>
<div className=" text-sm o h-full">
<Tabs.Content className="h-screen overflow-y-auto" value="chats">
<div className="h-full mb-28">
{Object.keys(localChats).length > 0 && (
<>
{Object.keys(localChats).map((group, index) => (
<div key={index} className="flex flex-col py-2 pl-3 pr-1 gap-2 mb-8">
<p className="px-2 text-xs font-medium text-muted-foreground">
{group}
</p>
<ol>
{localChats[group].map(
({ chatId, messages }, chatIndex) => {
const isSelected =
chatId.substring(5) === selectedChatId;
return (
<li
className="flex w-full items-center relative"
key={chatIndex}
>
<div className="flex-col w-full truncate">
<Link
href={`/chats/${chatId.substring(5)}`}
className={cn(
{
[buttonVariants({
variant: "secondaryLink",
})]: isSelected,
[buttonVariants({ variant: "ghost" })]:
!isSelected,
},
"flex gap-2 p-2 justify-start"
)}
>
<span className="text-sm font-normal max-w-[184px] truncate">
{messages.length > 0
? messages[0].content
: ""}
</span>
</Link>
</div>
<div className="absolute right-0 rounded-xs">
<Dialog>
<DialogTrigger
className={
"items-center whitespace-nowrap font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 h-8 rounded-sm px-3 text-xs justify-start gap-2 w-full hover:text-red-500 hover:bg-card dark:hover:bg-accent" +
(isSelected
? " bg-accent dark:bg-card"
: " ")
}
>
<TrashIcon className="w-4 h-4" />
</DialogTrigger>
<DialogContent>
<DialogHeader className="space-y-4">
<DialogTitle>Delete chat?</DialogTitle>
<DialogDescription>
Are you sure you want to delete this chat?
This action cannot be undone.
</DialogDescription>
<div className="flex justify-end gap-2">
<DialogClose className="border border-input bg-background hover:bg-accent hover:text-accent-foreground px-4 py-2 rounded-sm">
Cancel
</DialogClose>
<DialogClose
className="bg-destructive text-destructive-foreground hover:bg-destructive/90 px-4 py-2 rounded-sm"
onClick={() => handleDeleteChat(chatId)}
>
Delete
</DialogClose>
</div>
</DialogHeader>
</DialogContent>
</Dialog>
</div>
</li>
);
}
)}
</ol>
</div>
))}
</>
)}
{isLoading && <SidebarSkeleton />}
</div>
</Tabs.Content>
<Tabs.Content className="h-screen overflow-y-auto" value="settings">
<div className="h-full mb-16 pl-2">
<Settings chatOptions={chatOptions} setChatOptions={setChatOptions} />
</div>
</Tabs.Content>
</div>
<div className="sticky left-0 right-0 bottom-0 z-20 m-0 overflow-hidden">
<Tabs.List
className="flex flex-wrap -mb-px py-2 text-sm font-medium text-center justify-center gap-2 bg-accent dark:bg-card"
aria-label="Navigation"
>
<Tabs.Trigger
className="inline-flex items-center justify-center p-0.5 rounded-sm data-[state=active]:bg-gray-200 dark:data-[state=active]:bg-gray-700 h-10 w-10"
value="chats"
>
<ChatBubbleIcon className="w-5 h-5" />
{/* <span className="text-xs">Chats</span> */}
</Tabs.Trigger>
<Tabs.Trigger
className="inline-flex items-center justify-center p-0.5 rounded-sm data-[state=active]:bg-gray-200 dark:data-[state=active]:bg-gray-700 h-10 w-10"
value="settings"
>
<GearIcon className="w-5 h-5" />
{/* <span className="text-xs">Settings</span> */}
</Tabs.Trigger>
</Tabs.List>
</div>
</Tabs.Root>
);
export default SidebarTabs;
|