/* * 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 makeStyles from '@mui/styles/makeStyles'; 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 { Grid } from '@mui/material'; import useLocalStorage from 'util/useLocalStorage'; import SpinnerImage from 'components/util/SpinnerImage'; const useStyles = makeStyles((theme) => ({ root: { display: 'flex', // Preserve the shape of the manga cards, without this the manga card would chage it's // if all the images in a row failed to load then the whole row would change into a // square shape aspectRatio: '225/350', }, wrapper: { position: 'relative', height: '100%', }, gradient: { position: 'absolute', bottom: 0, width: '100%', height: '30%', background: 'linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)', opacity: 1, }, gradient2: { position: 'absolute', bottom: 0, width: '100%', height: '20%', background: 'linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)', }, title: { position: 'absolute', bottom: 0, padding: '0.5em', color: 'white', fontSize: '1.05rem', textShadow: '0px 0px 3px #000000', }, badge: { position: 'absolute', top: 2, left: 2, backgroundColor: theme.palette.primary.dark, borderRadius: 5, color: 'white', padding: '0.1em', paddingInline: '0.3em', fontSize: '1.05rem', }, image: { height: '100%', width: '100%', }, spinner: { minHeight: '400px', display: 'grid', placeItems: 'center', }, })); 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 } const MangaCard = React.forwardRef((props: IProps, ref) => { const { manga: { id, title, thumbnailUrl, unreadCount: unread, }, } = props; const classes = useStyles(); const [serverAddress] = useLocalStorage('serverBaseURL', ''); const [useCache] = useLocalStorage('useCache', true); return (
{unread ? ( {unread} ) : null}
{truncateText(title, 61)}
); }); export default MangaCard;