mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
26 lines
849 B
TypeScript
26 lines
849 B
TypeScript
"use client";
|
|
|
|
import { ENDPOINTS } from "#/api/config";
|
|
import { useSWRfetcher } from "#/api/utils";
|
|
import { useUserStore } from "#/store/auth";
|
|
import { ReleaseCourusel } from "../ReleaseCourusel/ReleaseCourusel";
|
|
import useSWR from "swr";
|
|
|
|
export const RecommendedCarousel = () => {
|
|
const token = useUserStore((state) => state.token);
|
|
const { data, isLoading, error } = useSWR(
|
|
`${ENDPOINTS.discover.recommendations}/-1?previous_page=-1${token ? `&token=${token}` : ""}`,
|
|
useSWRfetcher,
|
|
{
|
|
revalidateOnFocus: false,
|
|
revalidateIfStale: false,
|
|
revalidateOnReconnect: false,
|
|
}
|
|
);
|
|
|
|
if (!token) return <></>;
|
|
if (error) return <></>;
|
|
if (isLoading) return <></>;
|
|
|
|
return <ReleaseCourusel content={data.content} sectionTitle={"Рекомендации"} showAllLink={"/discovery/recommendations"} />;
|
|
};
|