mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 11:51:41 +03:00
80be40ad34
* feat: remove react-mentions * feat: add chat header * feat: remove v2/chat * feat: add fature flag * feat: add new chat UI * feat: add prompt and brain name to messages
76 lines
2.6 KiB
TypeScript
76 lines
2.6 KiB
TypeScript
"use client";
|
|
import { motion, MotionConfig } from "framer-motion";
|
|
import { MdChevronRight } from "react-icons/md";
|
|
|
|
import { useChatsContext } from "@/lib/context/ChatsProvider/hooks/useChatsContext";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
import { ChatsListItem } from "./components/ChatsListItem";
|
|
import { MiniFooter } from "./components/ChatsListItem/components/MiniFooter";
|
|
import { NewChatButton } from "./components/NewChatButton";
|
|
import { useChatsList } from "./hooks/useChatsList";
|
|
import { useSelectedChatPage } from "../../[chatId]/hooks/useSelectedChatPage";
|
|
|
|
export const ChatsList = (): JSX.Element => {
|
|
const { allChats } = useChatsContext();
|
|
const { open, setOpen } = useChatsList();
|
|
useSelectedChatPage();
|
|
|
|
return (
|
|
<MotionConfig transition={{ mass: 1, damping: 10 }}>
|
|
<motion.div
|
|
drag="x"
|
|
dragConstraints={{ right: 0, left: 0 }}
|
|
dragElastic={0.15}
|
|
onDragEnd={(event, info) => {
|
|
if (info.offset.x > 100 && !open) {
|
|
setOpen(true);
|
|
} else if (info.offset.x < -100 && open) {
|
|
setOpen(false);
|
|
}
|
|
}}
|
|
className="flex flex-col lg:sticky fixed top-16 left-0 bottom-0 lg:h-[90vh] overflow-visible z-30 border-r border-black/10 dark:border-white/25 bg-white dark:bg-black"
|
|
>
|
|
<motion.div
|
|
animate={{
|
|
width: open ? "fit-content" : "0px",
|
|
opacity: open ? 1 : 0.5,
|
|
boxShadow: open
|
|
? "10px 10px 16px rgba(0, 0, 0, 0)"
|
|
: "10px 10px 16px rgba(0, 0, 0, 0.5)",
|
|
}}
|
|
className={cn("overflow-hidden flex flex-col flex-1")}
|
|
data-testid="chats-list"
|
|
>
|
|
<div className="flex flex-col flex-1">
|
|
<NewChatButton />
|
|
<div
|
|
data-testid="chats-list-items"
|
|
className="flex-1 overflow-auto scrollbar h-full"
|
|
>
|
|
{allChats.map((chat) => (
|
|
<ChatsListItem key={chat.chat_id} chat={chat} />
|
|
))}
|
|
</div>
|
|
<MiniFooter />
|
|
</div>
|
|
</motion.div>
|
|
<button
|
|
onClick={() => {
|
|
setOpen(!open);
|
|
}}
|
|
className="absolute left-full top-16 text-3xl bg-black dark:bg-white text-white dark:text-black rounded-r-full p-3 pl-1"
|
|
data-testid="chats-list-toggle"
|
|
>
|
|
<motion.div
|
|
whileTap={{ scale: 0.9 }}
|
|
animate={{ scaleX: open ? -1 : 1 }}
|
|
>
|
|
<MdChevronRight />
|
|
</motion.div>
|
|
</button>
|
|
</motion.div>
|
|
</MotionConfig>
|
|
);
|
|
};
|