quivr/frontend/app/chat/[chatId]/components/ActionsBar/hooks/useActionBar.ts

25 lines
731 B
TypeScript
Raw Normal View History

import { useEffect, useState } from "react";
import { useChatContext } from "@/lib/context";
import { checkIfHasPendingRequest } from "../utils/checkIfHasPendingRequest";
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const useActionBar = () => {
const [shouldDisplayUploadCard, setShouldDisplayUploadCard] = useState(false);
const [hasPendingRequests, setHasPendingRequests] = useState(false);
const { notifications } = useChatContext();
useEffect(() => {
setHasPendingRequests(checkIfHasPendingRequest(notifications));
}, [notifications]);
return {
shouldDisplayUploadCard,
setShouldDisplayUploadCard,
hasPendingRequests,
setHasPendingRequests,
};
};