import React, { useMemo } from 'react' import { Card, CardContent, CardMedia, Typography, Collapse, makeStyles, IconButton, useMediaQuery, } from '@material-ui/core' import classnames from 'classnames' import { useTranslate } from 'react-admin' import Lightbox from 'react-image-lightbox' import 'react-image-lightbox/style.css' import ExpandMoreIcon from '@material-ui/icons/ExpandMore' import subsonic from '../subsonic' import { DurationField, StarButton, SizeField, ArtistLinkField, formatRange, MultiLineTextField, } from '../common' const useStyles = makeStyles((theme) => ({ root: { [theme.breakpoints.down('xs')]: { padding: '0.7em', minWidth: '24em', }, [theme.breakpoints.up('sm')]: { padding: '1em', minWidth: '32em', }, }, cardContents: { display: 'flex', }, details: { display: 'flex', flexDirection: 'column', }, content: { flex: '2 0 auto', }, coverParent: { [theme.breakpoints.down('xs')]: { height: '8em', width: '8em', minWidth: '8em', }, [theme.breakpoints.up('sm')]: { height: '10em', width: '10em', minWidth: '10em', }, [theme.breakpoints.up('lg')]: { height: '15em', width: '15em', minWidth: '15em', }, }, cover: { objectFit: 'contain', cursor: 'pointer', display: 'block', width: '100%', height: '100%', }, starButton: { top: theme.spacing(-0.2), left: theme.spacing(0.5), }, comment: { whiteSpace: 'nowrap', marginTop: '1em', display: 'inline-block', [theme.breakpoints.down('xs')]: { width: '10em', }, [theme.breakpoints.up('sm')]: { width: '10em', }, [theme.breakpoints.up('lg')]: { width: '10em', }, }, commentFirstLine: { float: 'left', marginRight: '5px', whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis', }, expand: { marginTop: '-5px', transform: 'rotate(0deg)', marginLeft: 'auto', transition: theme.transitions.create('transform', { duration: theme.transitions.duration.shortest, }), }, expandOpen: { transform: 'rotate(180deg)', }, })) const AlbumComment = ({ classes, record, commentNumLines }) => { const [expanded, setExpanded] = React.useState(false) const handleExpandClick = React.useCallback(() => { commentNumLines > 1 && setExpanded(!expanded) }, [expanded, setExpanded, commentNumLines]) return (