mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 03:41:44 +03:00
63e90a317c
* refactor: split <MessageRow /> into small components * feat: add onboarding page first step
27 lines
858 B
TypeScript
27 lines
858 B
TypeScript
import { useFeatureIsOn } from "@growthbook/growthbook-react";
|
|
|
|
import { useChatContext } from "@/lib/context";
|
|
|
|
import { ChatDialogue } from "./components/ChatDialogue";
|
|
import { ShortCuts } from "./components/ShortCuts";
|
|
import { getMergedChatMessagesWithDoneStatusNotificationsReduced } from "./utils/getMergedChatMessagesWithDoneStatusNotificationsReduced";
|
|
|
|
export const ChatDialogueArea = (): JSX.Element => {
|
|
const { messages, notifications } = useChatContext();
|
|
|
|
const chatItems = getMergedChatMessagesWithDoneStatusNotificationsReduced(
|
|
messages,
|
|
notifications
|
|
);
|
|
const shouldDisplayOnboarding = useFeatureIsOn("onboarding");
|
|
|
|
const shouldDisplayShortcuts =
|
|
chatItems.length === 0 && !shouldDisplayOnboarding;
|
|
|
|
if (!shouldDisplayShortcuts) {
|
|
return <ChatDialogue chatItems={chatItems} />;
|
|
}
|
|
|
|
return <ShortCuts />;
|
|
};
|