diff --git a/TODO.md b/TODO.md index 31f42dc..dc18f3c 100644 --- a/TODO.md +++ b/TODO.md @@ -26,7 +26,6 @@ - [ ] Просмотр комментариев пользователя к релизам и коллекциям. - [ ] Редактирование профиля. -- [ ] Просмотр всех оценок ## Баги diff --git a/app/components/Profile/Profile.ReleaseRatings.tsx b/app/components/Profile/Profile.ReleaseRatings.tsx index 688d08c..82ec2da 100644 --- a/app/components/Profile/Profile.ReleaseRatings.tsx +++ b/app/components/Profile/Profile.ReleaseRatings.tsx @@ -1,4 +1,11 @@ -import { Card, Carousel, RatingStar, Rating } from "flowbite-react"; +import { + Card, + Carousel, + RatingStar, + Rating, + Modal, + Button, +} from "flowbite-react"; import type { FlowbiteCarouselIndicatorsTheme, FlowbiteCarouselControlTheme, @@ -6,6 +13,10 @@ import type { import Image from "next/image"; import { unixToDate } from "#/api/utils"; import Link from "next/link"; +import { useCallback, useEffect, useState } from "react"; +import { ENDPOINTS } from "#/api/config"; +import useSWRInfinite from "swr/infinite"; +import { Spinner } from "../Spinner/Spinner"; const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = { active: { @@ -27,9 +38,15 @@ const CarouselTheme = { }; export const ProfileReleaseRatings = (props: any) => { + const [modal, setModal] = useState(false); return ( -

Оценки

+
+

Оценки

+ +
{props.ratings.map((release) => { @@ -62,6 +79,147 @@ export const ProfileReleaseRatings = (props: any) => { })}
+
); }; + +const ProfileReleaseRatingsModal = (props: { + isOpen: boolean; + setIsOpen: any; + profile_id: number; + token: string | null; +}) => { + const [isLoadingEnd, setIsLoadingEnd] = useState(false); + const [currentRef, setCurrentRef] = useState(null); + const modalRef = useCallback((ref) => { + setCurrentRef(ref); + }, []); + + const getKey = (pageIndex: number, previousPageData: any) => { + if (previousPageData && !previousPageData.content.length) return null; + let url = `${ENDPOINTS.user.profile}/vote/release/voted/${props.profile_id}/${pageIndex}?sort=1`; + if (props.token) { + url += `&token=${props.token}`; + } + return url; + }; + + const fetcher = async (url: string) => { + const res = await fetch(url); + + if (!res.ok) { + const error = new Error( + `An error occurred while fetching the data. status: ${res.status}` + ); + error.message = await res.json(); + throw error; + } + + return res.json(); + }; + + const { data, error, isLoading, size, setSize } = useSWRInfinite( + getKey, + fetcher, + { initialSize: 2 } + ); + + const [content, setContent] = useState([]); + useEffect(() => { + if (data) { + let allReleases = []; + for (let i = 0; i < data.length; i++) { + allReleases.push(...data[i].content); + } + setContent(allReleases); + setIsLoadingEnd(true); + } + }, [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)} + size={"4xl"} + > + Оценки +
+ {!isLoadingEnd && isLoading && } + {isLoadingEnd && !isLoading && content.length > 0 ? ( + content.map((release) => { + return ( + +
+ +
+

{release.title_ru}

+
+

+ {release.episodes_total ? release.episodes_total : "?"}{" "} + эп. +

+ +

+ + {" "} + {release.grade ? release.grade.toFixed(1) : "?"} из 5 + +

+
+ + = 1} /> + = 2} /> + = 3} /> + = 4} /> + = 5} /> + +

+ {unixToDate(release.voted_at, "full")} +

+
+
+ + ); + }) + ) : ( +

Оценок нет

+ )} +
+
+ ); +}; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index c9f4448..8f81a80 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -154,7 +154,7 @@ export const ProfilePage = (props: any) => { {!user.is_stats_hidden && (
{user.votes && user.votes.length > 0 && ( - + )} {user.history && user.history.length > 0 && ( @@ -192,7 +192,7 @@ export const ProfilePage = (props: any) => {
{user.votes && user.votes.length > 0 && ( - + )} {user.history && user.history.length > 0 && (