2025-01-12 15:02:33 +01:00
|
|
|
/*
|
|
|
|
|
* 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 Box from '@mui/material/Box';
|
|
|
|
|
import CardActionArea from '@mui/material/CardActionArea';
|
|
|
|
|
import Card from '@mui/material/Card';
|
|
|
|
|
import CardContent from '@mui/material/CardContent';
|
|
|
|
|
import IconButton from '@mui/material/IconButton';
|
|
|
|
|
import { Link, useLocation } from 'react-router-dom';
|
|
|
|
|
import Refresh from '@mui/icons-material/Refresh';
|
|
|
|
|
import { useTranslation } from 'react-i18next';
|
2025-01-12 19:41:59 +01:00
|
|
|
import { memo } from 'react';
|
2025-02-01 14:24:38 +01:00
|
|
|
import { CustomTooltip } from '@/modules/core/components/CustomTooltip.tsx';
|
2025-01-12 15:02:33 +01:00
|
|
|
import { DownloadStateIndicator } from '@/modules/core/components/DownloadStateIndicator.tsx';
|
|
|
|
|
import { ChapterUpdateListFieldsFragment, DownloadState } from '@/lib/graphql/generated/graphql.ts';
|
|
|
|
|
import { AppRoutes } from '@/modules/core/AppRoute.constants.ts';
|
|
|
|
|
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
|
|
|
|
import { makeToast } from '@/modules/core/utils/Toast.ts';
|
|
|
|
|
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
|
|
|
|
|
import { Chapters } from '@/modules/chapter/services/Chapters.ts';
|
2025-03-10 22:20:46 +01:00
|
|
|
import { ChapterCardThumbnail } from '@/modules/chapter/components/cards/ChapterCardThumbnail.tsx';
|
2025-03-10 22:59:21 +01:00
|
|
|
import { ChapterCardMetadata } from '@/modules/chapter/components/cards/ChapterCardMetadata.tsx';
|
2025-03-10 23:08:13 +01:00
|
|
|
import { ChapterDownloadButton } from '@/modules/chapter/components/buttons/ChapterDownloadButton.tsx';
|
2025-01-12 15:02:33 +01:00
|
|
|
|
2025-01-12 19:41:59 +01:00
|
|
|
export const ChapterUpdateCard = memo(({ chapter }: { chapter: ChapterUpdateListFieldsFragment }) => {
|
2025-01-12 15:02:33 +01:00
|
|
|
const { manga } = chapter;
|
2025-01-12 15:05:09 +01:00
|
|
|
const download = Chapters.useDownloadStatusFromCache(chapter.id);
|
2025-01-12 15:02:33 +01:00
|
|
|
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
const location = useLocation();
|
|
|
|
|
|
|
|
|
|
const handleRetry = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await requestManager.addChapterToDownloadQueue(chapter.id).response;
|
|
|
|
|
} catch (e) {
|
2025-03-10 21:52:52 +01:00
|
|
|
makeToast(t('download.queue.error.label.failed_to_retry'), 'error', getErrorMessage(e));
|
2025-01-12 15:02:33 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Card>
|
|
|
|
|
<CardActionArea
|
|
|
|
|
component={Link}
|
|
|
|
|
to={AppRoutes.reader.path(chapter.manga.id, chapter.sourceOrder)}
|
|
|
|
|
state={location.state}
|
|
|
|
|
sx={{
|
|
|
|
|
color: (theme) => theme.palette.text[chapter.isRead ? 'disabled' : 'primary'],
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<CardContent
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: 1.5,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box sx={{ display: 'flex', flexGrow: 1 }}>
|
2025-03-10 22:20:46 +01:00
|
|
|
<ChapterCardThumbnail
|
|
|
|
|
mangaId={manga.id}
|
|
|
|
|
mangaTitle={manga.title}
|
|
|
|
|
thumbnailUrl={manga.thumbnailUrl}
|
|
|
|
|
thumbnailUrlLastFetched={manga.thumbnailUrlLastFetched}
|
|
|
|
|
/>
|
2025-03-10 22:59:21 +01:00
|
|
|
<ChapterCardMetadata title={manga.title} secondaryText={chapter.name} />
|
2025-01-12 15:02:33 +01:00
|
|
|
</Box>
|
2025-01-12 15:05:09 +01:00
|
|
|
<DownloadStateIndicator chapterId={chapter.id} />
|
2025-01-12 15:02:33 +01:00
|
|
|
{download?.state === DownloadState.Error && (
|
2025-02-01 14:24:38 +01:00
|
|
|
<CustomTooltip title={t('global.button.retry')}>
|
2025-01-12 15:02:33 +01:00
|
|
|
<IconButton
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
handleRetry();
|
|
|
|
|
}}
|
|
|
|
|
size="large"
|
|
|
|
|
>
|
|
|
|
|
<Refresh />
|
|
|
|
|
</IconButton>
|
2025-02-01 14:24:38 +01:00
|
|
|
</CustomTooltip>
|
2025-01-12 15:02:33 +01:00
|
|
|
)}
|
2025-03-10 23:08:13 +01:00
|
|
|
<ChapterDownloadButton chapterId={chapter.id} isDownloaded={chapter.isDownloaded} />
|
2025-01-12 15:02:33 +01:00
|
|
|
</CardContent>
|
|
|
|
|
</CardActionArea>
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
2025-01-12 19:41:59 +01:00
|
|
|
});
|