/* * 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 Card from '@mui/material/Card'; import CardActionArea from '@mui/material/CardActionArea'; import Typography from '@mui/material/Typography'; import { Link } from 'react-router-dom'; import { Avatar, Box, CardContent, Stack, styled, Tooltip } from '@mui/material'; import { useTranslation } from 'react-i18next'; import React from 'react'; import PopupState, { bindMenu } from 'material-ui-popup-state'; import { requestManager } from '@/lib/requests/RequestManager.ts'; import { GridLayout, useLibraryOptionsContext } from '@/components/context/LibraryOptionsContext'; import { SpinnerImage } from '@/components/util/SpinnerImage'; import { TManga, TPartialManga } from '@/typings.ts'; import { ContinueReadingButton } from '@/components/manga/ContinueReadingButton.tsx'; import { SelectableCollectionReturnType } from '@/components/collection/useSelectableCollection.ts'; import { MangaOptionButton } from '@/components/manga/MangaOptionButton.tsx'; import { MangaActionMenu } from '@/components/manga/MangaActionMenu.tsx'; const BottomGradient = styled('div')({ position: 'absolute', bottom: 0, width: '100%', height: '30%', background: 'linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)', }); const BottomGradientDoubledDown = styled('div')({ position: 'absolute', bottom: 0, width: '100%', height: '20%', background: 'linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)', }); const MangaTitle = styled(Typography)({ lineHeight: '1.5rem', maxHeight: '3rem', display: '-webkit-box', WebkitLineClamp: '2', WebkitBoxOrient: 'vertical', overflow: 'hidden', textOverflow: 'ellipsis', }); const GridMangaTitle = styled(MangaTitle)({ fontSize: '1.05rem', }); const BadgeContainer = styled('div')({ display: 'flex', height: 'fit-content', borderRadius: '5px', overflow: 'hidden', '& p': { color: 'white', padding: '0.1em', paddingInline: '0.2em', fontSize: '1.05rem', }, }); interface IProps { manga: TPartialManga; gridLayout?: GridLayout; inLibraryIndicator?: boolean; selected?: boolean | null; handleSelection?: SelectableCollectionReturnType['handleSelection']; } export const MangaCard = (props: IProps) => { const { t } = useTranslation(); const { manga, gridLayout, inLibraryIndicator, selected, handleSelection } = props; const { id, title, thumbnailUrl: tmpThumbnailUrl, downloadCount, unreadCount: unread, inLibrary, lastReadChapter, chapters, } = manga; const thumbnailUrl = tmpThumbnailUrl ?? 'nonExistingMangaUrl'; const { options: { showContinueReadingButton, showUnreadBadge, showDownloadBadge }, } = useLibraryOptionsContext(); const mangaLinkTo = `/manga/${id}/`; const nextChapterIndexToRead = (lastReadChapter?.sourceOrder ?? 0) + 1; const isLatestChapterRead = chapters?.totalCount === lastReadChapter?.sourceOrder; if (gridLayout !== GridLayout.List) { return ( {(popupState) => ( <> { if (selected === null) { return; } e.preventDefault(); handleSelection?.(id, !selected); }} to={mangaLinkTo} style={gridLayout === GridLayout.Comfortable ? { textDecoration: 'none' } : {}} > theme.palette.primary.main, backgroundColor: (theme) => (selected ? theme.palette.primary.main : undefined), '@media (hover: hover) and (pointer: fine)': { '&:hover .manga-option-button': { visibility: 'visible', pointerEvents: 'all', }, }, }} > {inLibraryIndicator && inLibrary && ( {t('manga.button.in_library')} )} {showUnreadBadge && (unread ?? 0) > 0 && ( {unread} )} {showDownloadBadge && (downloadCount ?? 0) > 0 && ( {downloadCount} )} <> {gridLayout !== GridLayout.Comfortable && ( <> )} {gridLayout !== GridLayout.Comfortable && ( {title} )} {gridLayout === GridLayout.Comfortable && ( {title} )} {!!handleSelection && popupState.isOpen && ( ['manga']} handleSelection={handleSelection} /> )} )} ); } return ( {(popupState) => ( <> { if (selected === null) { return; } e.preventDefault(); handleSelection?.(id, !selected); }} > {title} {inLibraryIndicator && inLibrary && ( {t('manga.button.in_library')} )} {showUnreadBadge && unread! > 0 && ( {unread} )} {showDownloadBadge && downloadCount! > 0 && ( {downloadCount} )} {!!handleSelection && popupState.isOpen && ( ['manga']} handleSelection={handleSelection} /> )} )} ); };