From 501d3a170597239b62591bad32cfa6e871a37adb Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 18 Aug 2024 14:40:59 +0500 Subject: [PATCH] feat: add button to show collections containing the release on release page feat: add release in list widget to release page fix: redirecting if viewing not favorites collection for unauthorized user --- .../InfoLists.tsx} | 31 +++++-- .../ReleaseInfo/ReleaseInfo.UserList.tsx | 87 +++++++++++-------- app/pages/CollectionsFull.tsx | 29 +++++-- app/pages/Release.tsx | 26 ++++-- app/pages/ViewCollection.tsx | 5 +- 5 files changed, 117 insertions(+), 61 deletions(-) rename app/components/{CollectionInfo/CollectionInfoLists.tsx => InfoLists/InfoLists.tsx} (78%) diff --git a/app/components/CollectionInfo/CollectionInfoLists.tsx b/app/components/InfoLists/InfoLists.tsx similarity index 78% rename from app/components/CollectionInfo/CollectionInfoLists.tsx rename to app/components/InfoLists/InfoLists.tsx index e65b8c3..041cbe4 100644 --- a/app/components/CollectionInfo/CollectionInfoLists.tsx +++ b/app/components/InfoLists/InfoLists.tsx @@ -1,13 +1,21 @@ import { Card } from "flowbite-react"; -export const CollectionInfoLists = (props: { +export const InfoLists = (props: { completed: number; planned: number; abandoned: number; delayed: number; watching: number; - total: number; + total?: number; }) => { + const total = + props.total || + props.watching + + props.planned + + props.completed + + props.delayed + + props.abandoned; + return (
diff --git a/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx b/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx index 6909950..139ec98 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx @@ -1,5 +1,6 @@ import { Card, Dropdown, Button } from "flowbite-react"; import { ENDPOINTS } from "#/api/config"; +import Link from "next/link"; const lists = [ { list: 0, name: "Не смотрю" }, @@ -12,8 +13,7 @@ const lists = [ const DropdownTheme = { floating: { - target: - "flex-1", + target: "flex-1", }, }; @@ -24,6 +24,7 @@ export const ReleaseInfoUserList = (props: { token: string | null; setUserList: any; setIsFavorite: any; + collection_count: number; }) => { function _addToFavorite() { if (props.token) { @@ -51,39 +52,57 @@ export const ReleaseInfoUserList = (props: { return ( - {props.token ? ( -
- - {lists.map((list) => ( - _addToList(list.list)} - > - {list.name} - - ))} - - + {props.token && ( + -
- ) : ( -

Войдите что-бы добавить в избранное или список

- )} + )} + {props.token ? ( + <> + + {lists.map((list) => ( + _addToList(list.list)} + > + {list.name} + + ))} + + + + ) : ( +

Войдите что-бы добавить список, избранное или коллекцию

+ )} +
); }; diff --git a/app/pages/CollectionsFull.tsx b/app/pages/CollectionsFull.tsx index 5fce7b2..a541a36 100644 --- a/app/pages/CollectionsFull.tsx +++ b/app/pages/CollectionsFull.tsx @@ -35,15 +35,22 @@ export function CollectionsFullPage(props: { const getKey = (pageIndex: number, previousPageData: any) => { if (previousPageData && !previousPageData.content.length) return null; - if (userStore.token) { - if (props.type == "favorites") { - return `${ENDPOINTS.collection.favoriteCollections}/all/${pageIndex}?token=${userStore.token}`; - } else if (props.type == "profile") { - return `${ENDPOINTS.collection.userCollections}/${props.profile_id}/${pageIndex}?token=${userStore.token}`; - } else if (props.type == "release") { - return `${ENDPOINTS.collection.releaseInCollections}/${props.release_id}/${pageIndex}?token=${userStore.token}`; - } + + let url; + + if (props.type == "favorites") { + url = `${ENDPOINTS.collection.favoriteCollections}/all/${pageIndex}`; + } else if (props.type == "profile") { + url = `${ENDPOINTS.collection.userCollections}/${props.profile_id}/${pageIndex}`; + } else if (props.type == "release") { + url = `${ENDPOINTS.collection.releaseInCollections}/${props.release_id}/${pageIndex}`; } + + if (userStore.token) { + url += `?token=${userStore.token}`; + } + + return url; }; const { data, error, isLoading, size, setSize } = useSWRInfinite( @@ -72,7 +79,11 @@ export function CollectionsFullPage(props: { }, [scrollPosition]); useEffect(() => { - if (userStore.state === "finished" && !userStore.token) { + if ( + userStore.state === "finished" && + !userStore.token && + props.type == "favorites" + ) { router.push(`/login?redirect=/collections/favorites`); } }, [userStore.state, userStore.token]); diff --git a/app/pages/Release.tsx b/app/pages/Release.tsx index 6399463..353bcc4 100644 --- a/app/pages/Release.tsx +++ b/app/pages/Release.tsx @@ -15,6 +15,7 @@ import { ReleaseInfoRating } from "#/components/ReleaseInfo/ReleaseInfo.Rating"; import { ReleaseInfoRelated } from "#/components/ReleaseInfo/ReleaseInfo.Related"; import { ReleaseInfoScreenshots } from "#/components/ReleaseInfo/ReleaseInfo.Screenshots"; import { CommentsMain } from "#/components/Comments/Comments.Main"; +import { InfoLists } from "#/components/InfoLists/InfoLists"; export const ReleasePage = (props: any) => { const token = useUserStore((state) => state.token); @@ -68,7 +69,7 @@ export const ReleasePage = (props: any) => { released: data.release.episodes_released, }} season={data.release.season} - status={data.release.status.name} + status={data.release.status ? data.release.status.name : "Анонс"} duration={data.release.duration} category={data.release.category.name} broadcast={data.release.broadcast} @@ -86,14 +87,15 @@ export const ReleasePage = (props: any) => { token={token} setUserList={setUserList} setIsFavorite={setUserFavorite} + collection_count={data.release.collection_count} /> - {data.release.status.name.toLowerCase() != "анонс" && ( -
+ {data.release.status && data.release.status.name.toLowerCase() != "анонс" && ( +
)} - {data.release.status.name.toLowerCase() != "анонс" && ( + {data.release.status && data.release.status.name.toLowerCase() != "анонс" && (
{ />
)} +
+ +
+ {data.release.screenshot_images.length > 0 && ( -
+
)} {data.release.related_releases.length > 0 && ( -
+
{
)} -
+
{ @@ -101,7 +100,7 @@ export const ViewCollectionPage = (props: { id: number }) => { /> {userStore.token && !isLoading && (
-