mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 03:41:44 +03:00
2def1af77f
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
"use client";
|
|
import { UUID } from "crypto";
|
|
import { AnimatePresence, motion } from "framer-motion";
|
|
|
|
import { LoaderIcon } from "@/lib/components/ui/LoaderIcon/LoaderIcon";
|
|
import { MessageInfoBox } from "@/lib/components/ui/MessageInfoBox/MessageInfoBox";
|
|
import QuivrButton from "@/lib/components/ui/QuivrButton/QuivrButton";
|
|
import { useKnowledgeToFeedContext } from "@/lib/context/KnowledgeToFeedProvider/hooks/useKnowledgeToFeedContext";
|
|
|
|
import styles from "./KnowledgeTab.module.scss";
|
|
import { KnowledgeTable } from "./KnowledgeTable/KnowledgeTable";
|
|
import { useAddedKnowledge } from "./hooks/useAddedKnowledge";
|
|
|
|
type KnowledgeTabProps = {
|
|
brainId: UUID;
|
|
hasEditRights: boolean;
|
|
};
|
|
export const KnowledgeTab = ({ brainId }: KnowledgeTabProps): JSX.Element => {
|
|
const { isPending, allKnowledge } = useAddedKnowledge({
|
|
brainId,
|
|
});
|
|
const { setShouldDisplayFeedCard } = useKnowledgeToFeedContext();
|
|
|
|
if (isPending) {
|
|
return <LoaderIcon size="big" color="accent" />;
|
|
}
|
|
|
|
if (allKnowledge.length === 0) {
|
|
return (
|
|
<div className={styles.knowledge_tab_wrapper}>
|
|
<MessageInfoBox type="warning">
|
|
This brain is empty! You can add knowledge by clicking on
|
|
<QuivrButton
|
|
label="Add knowledge"
|
|
color="primary"
|
|
iconName="add"
|
|
onClick={() => setShouldDisplayFeedCard(true)}
|
|
/>
|
|
.
|
|
</MessageInfoBox>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className={styles.knowledge_tab_wrapper}>
|
|
<motion.div layout className="w-full flex flex-col gap-5">
|
|
<AnimatePresence mode="popLayout">
|
|
<KnowledgeTable knowledgeList={allKnowledge} />
|
|
</AnimatePresence>
|
|
</motion.div>
|
|
</div>
|
|
);
|
|
};
|