/* * 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 from 'react'; 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, CardContent, Grid } from '@mui/material'; import useLocalStorage from 'util/useLocalStorage'; import SpinnerImage from 'components/util/SpinnerImage'; import { Box, styled } from '@mui/system'; import { useLibraryOptionsContext } from 'components/context/LibraryOptionsContext'; import { BACK } from 'util/useBackTo'; 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)({ position: 'absolute', bottom: 0, padding: '0.5em', 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', }, }); const truncateText = (str: string, maxLength: number) => { const ending = '...'; // trim the string to the maximum length const trimmedString = str.substr(0, maxLength - ending.length); if (trimmedString.length < str.length) { return trimmedString + ending; } return str; }; interface IProps { manga: IMangaCard gridLayout: number | undefined dimensions: number inLibraryIndicator?: boolean } const MangaCard = React.forwardRef((props: IProps, ref) => { const { manga: { // eslint-disable-next-line @typescript-eslint/no-unused-vars id, title, thumbnailUrl, downloadCount, unreadCount: unread, inLibrary, }, gridLayout, dimensions, inLibraryIndicator, } = props; const { options: { showUnreadBadge, showDownloadBadge } } = useLibraryOptionsContext(); const [serverAddress] = useLocalStorage('serverBaseURL', ''); const [useCache] = useLocalStorage('useCache', true); const [ItemWidth] = useLocalStorage('ItemWidth', 300); const mangaLinkTo = { pathname: `/manga/${id}/`, state: { backLink: BACK } }; if (gridLayout !== 2) { const cols = Math.ceil(dimensions / ItemWidth); return ( {inLibraryIndicator && inLibrary && ( In library )} { showUnreadBadge && unread! > 0 && ( {unread} )} { showDownloadBadge && downloadCount! > 0 && ( {downloadCount} )} {(gridLayout === 1) ? (<>) : ( <> )} {(gridLayout === 1) ? ( <> ) : ( {truncateText(title, 61)} )} {(gridLayout === 1) ? ( {truncateText(title, 61)} ) : (<>)} ); } return ( {truncateText(title, 61)} {inLibraryIndicator && inLibrary && ( In library )} { showUnreadBadge && unread! > 0 && ( {unread} )} { showDownloadBadge && downloadCount! > 0 && ( {downloadCount} )} ); }); export default MangaCard;