/* * 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 React, { useContext, useEffect, useState } from 'react'; import { useParams, useHistory } from 'react-router-dom'; import IconButton from '@mui/material/IconButton'; import MangaGrid from 'components/MangaGrid'; import NavbarContext from 'components/context/NavbarContext'; import client from 'util/client'; import SettingsIcon from '@mui/icons-material/Settings'; export default function SourceMangas(props: { popular: boolean }) { const { setTitle, setAction } = useContext(NavbarContext); const history = useHistory(); const { sourceId } = useParams<{ sourceId: string }>(); const [isConfigurable, setIsConfigurable] = useState(false); const [mangas, setMangas] = useState([]); const [hasNextPage, setHasNextPage] = useState(false); const [lastPageNum, setLastPageNum] = useState(1); const [fetched, setFetched] = useState(false); useEffect(() => { setTitle('Source'); // title is later set after a fetch but we set it here once }, []); useEffect(() => { setAction( <> {isConfigurable && ( history.push(`/sources/${sourceId}/configure/`)} aria-label="display more actions" edge="end" color="inherit" size="large" > )} , ); }, [isConfigurable]); useEffect(() => { client.get(`/api/v1/source/${sourceId}`) .then((response) => response.data) .then((data: ISource) => { setTitle(data.displayName); setIsConfigurable(data.isConfigurable); }); }, []); useEffect(() => { const sourceType = props.popular ? 'popular' : 'latest'; client.get(`/api/v1/source/${sourceId}/${sourceType}/${lastPageNum}`) .then((response) => response.data) .then((data: { mangaList: IManga[], hasNextPage: boolean }) => { setMangas([ ...mangas, ...data.mangaList.map((it) => ({ title: it.title, thumbnailUrl: it.thumbnailUrl, id: it.id, }))]); setHasNextPage(data.hasNextPage); setFetched(true); }); }, [lastPageNum]); let message; let messageExtra; if (fetched) { message = 'No manga was found!'; if (sourceId === '0') { messageExtra = ( <> Check out Local source guide ); } } return ( ); }