mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add all user ratings modal
This commit is contained in:
parent
7cbaef351d
commit
076d51eca0
3 changed files with 162 additions and 5 deletions
1
TODO.md
1
TODO.md
|
@ -26,7 +26,6 @@
|
||||||
|
|
||||||
- [ ] Просмотр комментариев пользователя к релизам и коллекциям.
|
- [ ] Просмотр комментариев пользователя к релизам и коллекциям.
|
||||||
- [ ] Редактирование профиля.
|
- [ ] Редактирование профиля.
|
||||||
- [ ] Просмотр всех оценок
|
|
||||||
|
|
||||||
## Баги
|
## Баги
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
import { Card, Carousel, RatingStar, Rating } from "flowbite-react";
|
import {
|
||||||
|
Card,
|
||||||
|
Carousel,
|
||||||
|
RatingStar,
|
||||||
|
Rating,
|
||||||
|
Modal,
|
||||||
|
Button,
|
||||||
|
} from "flowbite-react";
|
||||||
import type {
|
import type {
|
||||||
FlowbiteCarouselIndicatorsTheme,
|
FlowbiteCarouselIndicatorsTheme,
|
||||||
FlowbiteCarouselControlTheme,
|
FlowbiteCarouselControlTheme,
|
||||||
|
@ -6,6 +13,10 @@ import type {
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { unixToDate } from "#/api/utils";
|
import { unixToDate } from "#/api/utils";
|
||||||
import Link from "next/link";
|
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 = {
|
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
||||||
active: {
|
active: {
|
||||||
|
@ -27,9 +38,15 @@ const CarouselTheme = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ProfileReleaseRatings = (props: any) => {
|
export const ProfileReleaseRatings = (props: any) => {
|
||||||
|
const [modal, setModal] = useState(false);
|
||||||
return (
|
return (
|
||||||
<Card className="h-fit">
|
<Card className="h-fit">
|
||||||
<h1 className="text-2xl font-bold">Оценки</h1>
|
<div className="flex justify-between">
|
||||||
|
<h1 className="text-2xl font-bold">Оценки</h1>
|
||||||
|
<Button color={"light"} onClick={() => setModal(true)} size={"xs"}>
|
||||||
|
Посмотреть все
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
<div className="max-w-[700px] min-h-[200px]">
|
<div className="max-w-[700px] min-h-[200px]">
|
||||||
<Carousel theme={CarouselTheme}>
|
<Carousel theme={CarouselTheme}>
|
||||||
{props.ratings.map((release) => {
|
{props.ratings.map((release) => {
|
||||||
|
@ -62,6 +79,147 @@ export const ProfileReleaseRatings = (props: any) => {
|
||||||
})}
|
})}
|
||||||
</Carousel>
|
</Carousel>
|
||||||
</div>
|
</div>
|
||||||
|
<ProfileReleaseRatingsModal
|
||||||
|
profile_id={props.profile_id}
|
||||||
|
token={props.token}
|
||||||
|
isOpen={modal}
|
||||||
|
setIsOpen={setModal}
|
||||||
|
/>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const ProfileReleaseRatingsModal = (props: {
|
||||||
|
isOpen: boolean;
|
||||||
|
setIsOpen: any;
|
||||||
|
profile_id: number;
|
||||||
|
token: string | null;
|
||||||
|
}) => {
|
||||||
|
const [isLoadingEnd, setIsLoadingEnd] = useState(false);
|
||||||
|
const [currentRef, setCurrentRef] = useState<any>(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 (
|
||||||
|
<Modal
|
||||||
|
dismissible
|
||||||
|
show={props.isOpen}
|
||||||
|
onClose={() => props.setIsOpen(false)}
|
||||||
|
size={"4xl"}
|
||||||
|
>
|
||||||
|
<Modal.Header>Оценки</Modal.Header>
|
||||||
|
<div
|
||||||
|
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
||||||
|
onScroll={handleScroll}
|
||||||
|
ref={modalRef}
|
||||||
|
>
|
||||||
|
{!isLoadingEnd && isLoading && <Spinner />}
|
||||||
|
{isLoadingEnd && !isLoading && content.length > 0 ? (
|
||||||
|
content.map((release) => {
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
href={`/release/${release.id}`}
|
||||||
|
key={`vote-modal-${release.id}`}
|
||||||
|
>
|
||||||
|
<div className="flex gap-4 xl:mx-20">
|
||||||
|
<Image
|
||||||
|
src={release.image}
|
||||||
|
width={100}
|
||||||
|
height={125}
|
||||||
|
alt=""
|
||||||
|
className="object-cover border-gray-200 rounded-lg shadow-md dark:border-gray-700 dark:bg-gray-800 w-[100px] h-[125px]"
|
||||||
|
/>
|
||||||
|
<div className="flex flex-col gap-1 py-2">
|
||||||
|
<h2 className="text-lg">{release.title_ru}</h2>
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
<p className="text-md">
|
||||||
|
{release.episodes_total ? release.episodes_total : "?"}{" "}
|
||||||
|
эп.
|
||||||
|
</p>
|
||||||
|
<span className="mx-1.5 h-1 w-1 rounded-full bg-gray-500 dark:bg-gray-400 hidden lg:block" />
|
||||||
|
<p className="text-md">
|
||||||
|
<Rating size="xs">
|
||||||
|
<RatingStar filled={true} />{" "}
|
||||||
|
{release.grade ? release.grade.toFixed(1) : "?"} из 5
|
||||||
|
</Rating>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Rating size="md">
|
||||||
|
<RatingStar filled={release.my_vote >= 1} />
|
||||||
|
<RatingStar filled={release.my_vote >= 2} />
|
||||||
|
<RatingStar filled={release.my_vote >= 3} />
|
||||||
|
<RatingStar filled={release.my_vote >= 4} />
|
||||||
|
<RatingStar filled={release.my_vote >= 5} />
|
||||||
|
</Rating>
|
||||||
|
<h2 className="text-gray-500 text-md dark:text-gray-400">
|
||||||
|
{unixToDate(release.voted_at, "full")}
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
) : (
|
||||||
|
<h1>Оценок нет</h1>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
|
@ -154,7 +154,7 @@ export const ProfilePage = (props: any) => {
|
||||||
{!user.is_stats_hidden && (
|
{!user.is_stats_hidden && (
|
||||||
<div className="flex-col hidden gap-2 xl:flex">
|
<div className="flex-col hidden gap-2 xl:flex">
|
||||||
{user.votes && user.votes.length > 0 && (
|
{user.votes && user.votes.length > 0 && (
|
||||||
<ProfileReleaseRatings ratings={user.votes} />
|
<ProfileReleaseRatings ratings={user.votes} token={authUser.token} profile_id={user.id} />
|
||||||
)}
|
)}
|
||||||
{user.history && user.history.length > 0 && (
|
{user.history && user.history.length > 0 && (
|
||||||
<ProfileReleaseHistory history={user.history} />
|
<ProfileReleaseHistory history={user.history} />
|
||||||
|
@ -192,7 +192,7 @@ export const ProfilePage = (props: any) => {
|
||||||
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
||||||
<div className="flex flex-col gap-2 xl:hidden">
|
<div className="flex flex-col gap-2 xl:hidden">
|
||||||
{user.votes && user.votes.length > 0 && (
|
{user.votes && user.votes.length > 0 && (
|
||||||
<ProfileReleaseRatings ratings={user.votes} />
|
<ProfileReleaseRatings ratings={user.votes} token={authUser.token} profile_id={user.id} />
|
||||||
)}
|
)}
|
||||||
{user.history && user.history.length > 0 && (
|
{user.history && user.history.length > 0 && (
|
||||||
<ProfileReleaseHistory history={user.history} />
|
<ProfileReleaseHistory history={user.history} />
|
||||||
|
|
Loading…
Add table
Reference in a new issue