mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-08 06:11:07 +03:00
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
import React from 'react'
|
|
import { Card, CardContent, Typography } from '@material-ui/core'
|
|
import { makeStyles } from '@material-ui/core/styles'
|
|
import { useTranslate } from 'react-admin'
|
|
import { DurationField } from '../common'
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
container: {
|
|
[theme.breakpoints.down('xs')]: {
|
|
padding: '0.7em',
|
|
minWidth: '24em',
|
|
},
|
|
[theme.breakpoints.up('sm')]: {
|
|
padding: '1em',
|
|
minWidth: '32em',
|
|
},
|
|
},
|
|
details: {
|
|
display: 'inline-block',
|
|
verticalAlign: 'top',
|
|
[theme.breakpoints.down('xs')]: {
|
|
width: '14em',
|
|
},
|
|
[theme.breakpoints.up('sm')]: {
|
|
width: '26em',
|
|
},
|
|
[theme.breakpoints.up('lg')]: {
|
|
width: '38em',
|
|
},
|
|
},
|
|
title: {
|
|
whiteSpace: 'nowrap',
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
},
|
|
}))
|
|
|
|
const PlaylistDetails = ({ record }) => {
|
|
const translate = useTranslate()
|
|
const classes = useStyles()
|
|
|
|
return (
|
|
<Card className={classes.container}>
|
|
<CardContent className={classes.details}>
|
|
<Typography variant="h5" className={classes.title}>
|
|
{record.name}
|
|
</Typography>
|
|
<Typography component="h6">{record.comment}</Typography>
|
|
<Typography component="p">
|
|
{record.songCount}{' '}
|
|
{translate('resources.song.name', { smart_count: record.songCount })}{' '}
|
|
· <DurationField record={record} source={'duration'} />
|
|
</Typography>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export default PlaylistDetails
|