import { Button, Card, Modal, ModalHeader, Spinner } from "flowbite-react"; import { CommentsComment } from "./Comments.Comment"; import { useState, useEffect, useCallback } from "react"; import { ENDPOINTS } from "#/api/config"; import useSWRInfinite from "swr/infinite"; import { CommentsAddModal } from "./Comments.Add"; import { useSWRfetcher } from "#/api/utils"; export const CommentsMain = (props: { release_id: number; token: string | null; comments: any; type?: "release" | "collection"; }) => { const [isAllCommentsOpen, setIsAllCommentsOpen] = useState(false); const [isAddCommentsOpen, setIsAddCommentsOpen] = useState(false); const type = props.type || "release"; return ( <>

Комментарии

Популярные и актуальные

{props.token && ( )}
{props.comments.map((comment: any) => ( ))}
); }; const CommentsAllModal = (props: { isOpen: boolean; setIsOpen: any; release_id: number; token: string | null; type?: "release" | "collection"; }) => { const [currentRef, setCurrentRef] = useState(null); const modalRef = useCallback((ref) => { setCurrentRef(ref); }, []); const type = props.type || "release"; const getKey = (pageIndex: number, previousPageData: any) => { if (previousPageData && !previousPageData.content.length) return null; let url; if (type == "release") { url = `${ENDPOINTS.release.info}/comment/all/${props.release_id}/${pageIndex}?sort=1`; } else if (type == "collection") { url = `${ENDPOINTS.collection.base}/comment/all/${props.release_id}/${pageIndex}?sort=1`; } if (props.token) { url += `&token=${props.token}`; } return url; }; const { data, error, isLoading, size, setSize } = useSWRInfinite( getKey, useSWRfetcher, { initialSize: 2 } ); const [content, setContent] = useState(null); useEffect(() => { if (data) { let allReleases = []; for (let i = 0; i < data.length; i++) { allReleases.push(...data[i].content); } setContent(allReleases); } }, [data]); const [scrollPosition, setScrollPosition] = useState(0); function handleScroll() { const height = currentRef.scrollHeight - currentRef.clientHeight; const windowScroll = currentRef.scrollTop; const scrolled = (windowScroll / height) * 100; setScrollPosition(Math.floor(scrolled)); } useEffect(() => { if (scrollPosition >= 95 && scrollPosition <= 96) { setSize(size + 1); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [scrollPosition]); return ( props.setIsOpen(false)} >

Все комментарии

всего: {isLoading ? "загрузка..." : data[0].total_count}

{isLoading ? ( ) : content ? ( content.map((comment: any) => ( )) ) : (

Комментариев нет

)}
); };