quivr/frontend/app/chat/[chatId]/components/ActionsBar/hooks/useActionBar.ts
Mamadou DICKO 7cc90ef258
feat: add polling for pending notifications (#1152)
* feat: add notification controller

* feat: add polling logic on pending notifications

* feat: refecth notifications on Feed
2023-09-12 18:00:46 +02:00

25 lines
731 B
TypeScript

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,
};
};