+ )}
{props.content.map((collection) => {
return (
{
- const grade = props.grade.toFixed(1);
- const profile_list_status = props.profile_list_status;
- let user_list = null;
- if (profile_list_status != null || profile_list_status != 0) {
- user_list = profile_lists[profile_list_status];
- }
return (
-
+
-
+ }}
+ >
-
- {user_list && (
-
- )}
- {props.status ? (
-
- ) : (
- props.status_id != 0 && (
-
- )
- )}
-
- {props.last_view_episode && (
-
- )}
- {props.category &&
}
{props.is_favorite && (
)}
+ {props.is_private && (
+
+
+
+ )}
+
+
- {props.title_ru}
+ {props.title}
diff --git a/app/pages/Collections.tsx b/app/pages/Collections.tsx
index 0e85376..07ba00b 100644
--- a/app/pages/Collections.tsx
+++ b/app/pages/Collections.tsx
@@ -5,96 +5,64 @@ import { Spinner } from "#/components/Spinner/Spinner";
const fetcher = (...args: any) =>
fetch([...args] as any).then((res) => res.json());
import { useUserStore } from "#/store/auth";
-import { BookmarksList } from "#/api/utils";
import { ENDPOINTS } from "#/api/config";
import { useRouter } from "next/navigation";
import { useEffect } from "react";
export function CollectionsPage() {
- const token = useUserStore((state) => state.token);
- const authState = useUserStore((state) => state.state);
+ const userStore = useUserStore();
const router = useRouter();
- // function useFetchReleases(listName: string) {
- // let url: string;
+ function useFetchReleases(section: string) {
+ let url: string;
- // if (token) {
- // url = `${ENDPOINTS.user.bookmark}/all/${BookmarksList[listName]}/0?token=${token}`;
- // }
+ if (userStore.token && userStore.user) {
+ if (section == "userCollections") {
+ url = `${ENDPOINTS.collection.userCollections}/${userStore.user.id}/0?token=${userStore.token}`;
+ } else if (section == "userFavoriteCollections") {
+ url = `${ENDPOINTS.collection.favoriteCollections}/all/0?token=${userStore.token}`;
+ }
+ }
- // const { data } = useSWR(url, fetcher);
- // return [data];
- // }
+ const { data } = useSWR(url, fetcher);
+ return [data];
+ }
- // const [watchingData] = useFetchReleases("watching");
- // const [plannedData] = useFetchReleases("planned");
- // const [watchedData] = useFetchReleases("watched");
- // const [delayedData] = useFetchReleases("delayed");
- // const [abandonedData] = useFetchReleases("abandoned");
+ const [userCollections] = useFetchReleases("userCollections");
+ const [favoriteCollections] = useFetchReleases("userFavoriteCollections");
useEffect(() => {
- if (authState === "finished" && !token) {
+ if (userStore.state === "finished" && !userStore.token) {
router.push("/login?redirect=/collections");
}
- }, [authState, token]);
+ }, [userStore.state, userStore.token]);
return (
-
- {/* {authState === "loading" &&
- (!watchingData ||
- !plannedData ||
- !watchedData ||
- !delayedData ||
- !abandonedData) && (
+ {userStore.state === "loading" &&
+ (!userCollections || !favoriteCollections) && (
- )} */}
- {/* {watchingData &&
- watchingData.content &&
- watchingData.content.length > 0 && (
-
+ )}
+ {favoriteCollections &&
+ favoriteCollections.content &&
+ favoriteCollections.content.length > 0 && (
+
)}
- {plannedData && plannedData.content && plannedData.content.length > 0 && (
-
- )}
- {watchedData && watchedData.content && watchedData.content.length > 0 && (
-
- )}
- {delayedData && delayedData.content && delayedData.content.length > 0 && (
-
- )}
- {abandonedData &&
- abandonedData.content &&
- abandonedData.content.length > 0 && (
-
- )} */}
);
}
diff --git a/app/store/auth.ts b/app/store/auth.ts
index 2c3ab47..9af7b5b 100644
--- a/app/store/auth.ts
+++ b/app/store/auth.ts
@@ -5,7 +5,7 @@ import { getJWT, removeJWT, fetchDataViaGet } from "#/api/utils";
interface userState {
_hasHydrated: boolean;
isAuth: boolean;
- user: Object | null;
+ user: any | null;
token: string | null;
state: string;
login: (user: Object, token: string) => void;