diff --git a/app/collection/[id]/page.tsx b/app/collection/[id]/page.tsx index a8b8b1c..94d0b0a 100644 --- a/app/collection/[id]/page.tsx +++ b/app/collection/[id]/page.tsx @@ -1,28 +1,36 @@ import { ViewCollectionPage } from "#/pages/ViewCollection"; import { fetchDataViaGet } from "#/api/utils"; import type { Metadata, ResolvingMetadata } from "next"; -export const dynamic = 'force-static'; +export const dynamic = "force-static"; export async function generateMetadata( { params }, parent: ResolvingMetadata ): Promise { const id = params.id; - const collection = await fetchDataViaGet( + const { data, error } = await fetchDataViaGet( `https://api.anixart.tv/collection/${id}` ); const previousOG = (await parent).openGraph; + if (error) { + return { + title: "Ошибка", + description: "Ошибка", + }; + } + return { - title: collection.collection - ? "коллекция - " + collection.collection.title + title: + data.collection ? + "коллекция - " + data.collection.title : "Приватная коллекция", - description: collection.collection && collection.collection.description, + description: data.collection && data.collection.description, openGraph: { ...previousOG, images: [ { - url: collection.collection && collection.collection.image, // Must be an absolute URL + url: data.collection && data.collection.image, // Must be an absolute URL width: 600, height: 800, }, diff --git a/app/components/Comments/Comments.Main.tsx b/app/components/Comments/Comments.Main.tsx index 6579df4..c3fa006 100644 --- a/app/components/Comments/Comments.Main.tsx +++ b/app/components/Comments/Comments.Main.tsx @@ -4,6 +4,7 @@ import { useState, useEffect, useCallback } from "react"; import { ENDPOINTS } from "#/api/config"; import useSWRInfinite from "swr/infinite"; import { CommentsAddModal } from "./Comments.Add"; +import { useSWRfetcher } from "#/api/utils"; export const CommentsMain = (props: { release_id: number; @@ -82,20 +83,6 @@ export const CommentsMain = (props: { ); }; -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 CommentsAllModal = (props: { isOpen: boolean; setIsOpen: any; @@ -103,7 +90,6 @@ const CommentsAllModal = (props: { token: string | null; type?: "release" | "collection"; }) => { - const [isLoadingEnd, setIsLoadingEnd] = useState(false); const [currentRef, setCurrentRef] = useState(null); const modalRef = useCallback((ref) => { setCurrentRef(ref); @@ -127,7 +113,7 @@ const CommentsAllModal = (props: { const { data, error, isLoading, size, setSize } = useSWRInfinite( getKey, - fetcher, + useSWRfetcher, { initialSize: 2 } ); @@ -139,7 +125,6 @@ const CommentsAllModal = (props: { allReleases.push(...data[i].content); } setContent(allReleases); - setIsLoadingEnd(true); } }, [data]); @@ -170,7 +155,7 @@ const CommentsAllModal = (props: { Все комментарии

- всего: {!isLoadingEnd ? "загрузка..." : data[0].total_count} + всего: {isLoading ? "загрузка..." : data[0].total_count}

@@ -179,7 +164,7 @@ const CommentsAllModal = (props: { onScroll={handleScroll} ref={modalRef} > - {!isLoadingEnd ? ( + {isLoading ? ( ) : content ? ( content.map((comment: any) => ( diff --git a/app/pages/CreateCollection.tsx b/app/pages/CreateCollection.tsx index 7363e6d..ecf0581 100644 --- a/app/pages/CreateCollection.tsx +++ b/app/pages/CreateCollection.tsx @@ -545,9 +545,9 @@ export const ReleasesEditModal = (props: { })} {content.length == 1 &&
} + {isLoading && } + {error &&
Произошла ошибка
} - {isLoading && } - {error &&
Произошла ошибка
} ); }; diff --git a/app/pages/Release.tsx b/app/pages/Release.tsx index e294c5d..c29864f 100644 --- a/app/pages/Release.tsx +++ b/app/pages/Release.tsx @@ -2,8 +2,7 @@ import useSWR from "swr"; import { Spinner } from "#/components/Spinner/Spinner"; -const fetcher = (...args: any) => - fetch([...args] as any).then((res) => res.json()); +import { useSWRfetcher } from "#/api/utils"; import { useUserStore } from "#/store/auth"; import { useEffect, useState } from "react"; @@ -33,7 +32,7 @@ export const ReleasePage = (props: any) => { if (userStore.token) { url += `?token=${userStore.token}`; } - const { data, isLoading, error } = useSWR(url, fetcher); + const { data, isLoading, error } = useSWR(url, useSWRfetcher); return [data, isLoading, error]; } const [data, isLoading, error] = useFetch(props.id); @@ -49,7 +48,29 @@ export const ReleasePage = (props: any) => { } }, [data]); - return data ? ( + if (isLoading) { + return ( +
+ +
+ ); + } + + if (error) { + return ( +
+
+

Ошибка

+

+ Произошла ошибка при загрузке релиза. Попробуйте обновить страницу + или зайдите позже. +

+
+
+ ); + } + + return ( <>
@@ -99,11 +120,9 @@ export const ReleasePage = (props: any) => { {data.release.status && data.release.status.name.toLowerCase() != "анонс" && (
- {preferenceStore.params.experimental.newPlayer ? ( + {preferenceStore.params.experimental.newPlayer ? - ) : ( - - )} + : }
)} {data.release.status && @@ -160,9 +179,5 @@ export const ReleasePage = (props: any) => {
- ) : ( -
- -
); }; diff --git a/app/related/[id]/page.tsx b/app/related/[id]/page.tsx index ab89d49..3ce2b33 100644 --- a/app/related/[id]/page.tsx +++ b/app/related/[id]/page.tsx @@ -3,12 +3,31 @@ import { fetchDataViaGet } from "#/api/utils"; import type { Metadata, ResolvingMetadata } from "next"; export const dynamic = 'force-static'; +const _getData = async (url: string) => { + const { data, error } = await fetchDataViaGet(url); + return [data, error]; +} + export async function generateMetadata({ params }, parent: ResolvingMetadata): Promise { const id:string = params.id; - const related: any = await fetchDataViaGet(`https://api.anixart.tv/related/${id}/0`); - const firstRelease: any = await fetchDataViaGet(`https://api.anixart.tv/release/${related.content[0].id}`); const previousOG = (await parent).openGraph; + const [ related, relatedError ] = await _getData(`https://api.anixart.tv/related/${id}/0`); + if (relatedError || related.content.length == 0) { + return { + title: "Ошибка", + description: "Ошибка", + }; + }; + + const [ firstRelease, firstReleaseError ] = await _getData(`https://api.anixart.tv/release/${related.content[0].id}`); + if (firstReleaseError) { + return { + title: "Ошибка", + description: "Ошибка", + }; + }; + return { title: "Франшиза - " + firstRelease.release.related.name_ru || firstRelease.release.related.name, description: firstRelease.release.description, @@ -27,7 +46,25 @@ export async function generateMetadata({ params }, parent: ResolvingMetadata): P export default async function Related({ params }) { const id: string = params.id; - const related: any = await fetchDataViaGet(`https://api.anixart.tv/related/${id}/0`); - const firstRelease: any = await fetchDataViaGet(`https://api.anixart.tv/release/${related.content[0].id}`); + const [ related, relatedError ] = await _getData(`https://api.anixart.tv/related/${id}/0`); + if (relatedError || related.content.length == 0) { + return
+
+

Ошибка

+

Произошла ошибка при загрузке франшизы. Попробуйте обновить страницу или зайдите позже.

+
+
+ }; + + const [ firstRelease, firstReleaseError ] = await _getData(`https://api.anixart.tv/release/${related.content[0].id}`); + if (firstReleaseError) { + return
+
+

Ошибка

+

Произошла ошибка при загрузке франшизы. Попробуйте обновить страницу или зайдите позже.

+
+
+ }; + return ; } diff --git a/app/release/[id]/collections/page.tsx b/app/release/[id]/collections/page.tsx index 5b86a07..b9dcded 100644 --- a/app/release/[id]/collections/page.tsx +++ b/app/release/[id]/collections/page.tsx @@ -1,24 +1,33 @@ import { CollectionsFullPage } from "#/pages/CollectionsFull"; import { fetchDataViaGet } from "#/api/utils"; import type { Metadata, ResolvingMetadata } from "next"; -export const dynamic = 'force-static'; +export const dynamic = "force-static"; export async function generateMetadata( { params }, parent: ResolvingMetadata ): Promise { const id = params.id; - const release = await fetchDataViaGet(`https://api.anixart.tv/release/${id}`); + const { data, error } = await fetchDataViaGet( + `https://api.anixart.tv/release/${id}` + ); const previousOG = (await parent).openGraph; + if (error) { + return { + title: "Ошибка", + description: "Ошибка", + }; + } + return { - title: release.release.title_ru + " - в коллекциях", - description: release.release.description, + title: data.release.title_ru + " - в коллекциях", + description: data.release.description, openGraph: { ...previousOG, images: [ { - url: release.release.image, // Must be an absolute URL + url: data.release.image, // Must be an absolute URL width: 600, height: 800, }, @@ -28,13 +37,26 @@ export async function generateMetadata( } export default async function Collections({ params }) { - const release: any = await fetchDataViaGet( + const { data, error } = await fetchDataViaGet( `https://api.anixart.tv/release/${params.id}` ); + + if (error) { +
+
+

Ошибка

+

+ Произошла ошибка при загрузке коллекций. Попробуйте обновить страницу + или зайдите позже. +

+
+
; + }; + return ( ); diff --git a/app/release/[id]/page.tsx b/app/release/[id]/page.tsx index 57a9e72..ba70944 100644 --- a/app/release/[id]/page.tsx +++ b/app/release/[id]/page.tsx @@ -1,24 +1,33 @@ import { ReleasePage } from "#/pages/Release"; import { fetchDataViaGet } from "#/api/utils"; import type { Metadata, ResolvingMetadata } from "next"; -export const dynamic = 'force-static'; +export const dynamic = "force-static"; export async function generateMetadata( { params }, parent: ResolvingMetadata ): Promise { const id = params.id; - const release = await fetchDataViaGet(`https://api.anixart.tv/release/${id}`); + const { data, error } = await fetchDataViaGet( + `https://api.anixart.tv/release/${id}` + ); const previousOG = (await parent).openGraph; + if (error) { + return { + title: "Ошибка", + description: "Ошибка", + }; + } + return { - title: release.release.title_ru, - description: release.release.description, + title: data.release.title_ru, + description: data.release.description, openGraph: { ...previousOG, images: [ { - url: release.release.image, // Must be an absolute URL + url: data.release.image, // Must be an absolute URL width: 600, height: 800, },