/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import Warning from '@mui/icons-material/Warning'; import CircularProgress from '@mui/material/CircularProgress'; import IconButton from '@mui/material/IconButton'; import Stack from '@mui/material/Stack'; import Tooltip from '@mui/material/Tooltip'; import Box from '@mui/material/Box'; import React, { useContext, useEffect, useLayoutEffect, useRef } from 'react'; import { useTranslation } from 'react-i18next'; import { useParams } from 'react-router-dom'; import { isNetworkRequestInFlight } from '@apollo/client/core/networkStatus'; import { requestManager } from '@/lib/requests/RequestManager.ts'; import { NavBarContext } from '@/components/context/NavbarContext'; import { ChapterList } from '@/components/chapter/ChapterList.tsx'; import { useRefreshManga } from '@/components/manga/useRefreshManga.ts'; import { MangaDetails } from '@/components/manga/MangaDetails'; import { MangaToolbarMenu } from '@/components/manga/MangaToolbarMenu'; import { EmptyViewAbsoluteCentered } from '@/components/util/EmptyViewAbsoluteCentered.tsx'; import { LoadingPlaceholder } from '@/components/util/LoadingPlaceholder'; import { GetMangaScreenQuery } from '@/lib/graphql/generated/graphql.ts'; import { GET_MANGA_SCREEN } from '@/lib/graphql/queries/MangaQuery.ts'; export const Manga: React.FC = () => { const { t } = useTranslation(); const { setTitle, setAction } = useContext(NavBarContext); const { id } = useParams<{ id: string }>(); const autofetchedRef = useRef(false); const { data, error: mangaError, loading: isLoading, networkStatus, refetch, } = requestManager.useGetManga(GET_MANGA_SCREEN, id); const isValidating = isNetworkRequestInFlight(networkStatus); const manga = data?.manga; const [refresh, { loading: refreshing, error: refreshError }] = useRefreshManga(id); const error = mangaError ?? refreshError; useEffect(() => { if (manga == null) return; const doFetch = !autofetchedRef.current && !manga.initialized; if (doFetch) { autofetchedRef.current = true; refresh(); } }, [manga]); useLayoutEffect(() => { setTitle(manga?.title ?? t('manga.title_one')); setAction(null); return () => { setTitle(''); setAction(null); }; }, [t, manga?.title]); useLayoutEffect(() => { setAction( {error && !isValidating && !refreshing && ( {t('manga.error.label.request_failure')}
{error.message ?? error} } > refetch()}>
)} {manga && (refreshing || isValidating) && ( )} {manga && }
, ); return () => { setAction(null); }; }, [t, error, isValidating, refreshing, manga, refresh]); if (error && !manga) { return ( ); } return ( {isLoading && } {manga && } {manga && } ); };