import UserContext from '@/contexts/UserContext'; import { FC, MutableRefObject, useContext, useRef } from 'react'; import { z } from 'zod'; import { useRouter } from 'next/router'; import BeerStyleQueryResult from '@/services/posts/beer-style-post/schema/BeerStyleQueryResult'; import useBeerStyleComments from '@/hooks/data-fetching/beer-style-comments/useBeerStyleComments'; import { sendDeleteBeerStyleCommentRequest, sendEditBeerStyleCommentRequest, } from '@/requests/comments/beer-style-comment'; import CommentLoadingComponent from '../Comments/CommentLoadingComponent'; import CommentsComponent from '../Comments/CommentsComponent'; import BeerStyleCommentForm from './BeerStyleCommentForm'; interface BeerStyleCommentsSectionProps { beerStyle: z.infer; } const BeerStyleCommentsSection: FC = ({ beerStyle }) => { const { user } = useContext(UserContext); const router = useRouter(); const pageNum = parseInt(router.query.comments_page as string, 10) || 1; const PAGE_SIZE = 15; const { comments, isLoading, mutate, setSize, size, isLoadingMore, isAtEnd } = useBeerStyleComments({ id: beerStyle.id, pageNum, pageSize: PAGE_SIZE }); const commentSectionRef: MutableRefObject = useRef(null); return (
{user ? ( ) : (
Log in to leave a comment.
)}
{ /** * If the comments are loading, show a loading component. Otherwise, show the * comments. */ isLoading ? (
) : ( { return sendDeleteBeerStyleCommentRequest({ beerStyleId: beerStyle.id, commentId: id, }); }} handleEditCommentRequest={(id, data) => { return sendEditBeerStyleCommentRequest({ beerStyleId: beerStyle.id, commentId: id, body: data, }); }} /> ) }
); }; export default BeerStyleCommentsSection;