quintodrome/ui/src/album/AlbumGridView.js

87 lines
2.2 KiB
JavaScript
Raw Normal View History

import React from 'react'
2020-04-02 15:20:39 -08:00
import { GridList, GridListTile, GridListTileBar } from '@material-ui/core'
import { makeStyles } from '@material-ui/core/styles'
import withWidth from '@material-ui/core/withWidth'
import { Link } from 'react-router-dom'
import { linkToRecord } from 'ra-core'
import { Loading } from 'react-admin'
import subsonic from '../subsonic'
const useStyles = makeStyles((theme) => ({
root: {
2020-04-02 14:18:52 -08:00
margin: '20px'
},
2020-04-07 17:25:06 -08:00
gridListTile: {
2020-04-09 05:53:53 -08:00
minHeight: '180px',
minWidth: '180px'
2020-04-07 17:25:06 -08:00
},
cover: {
display: 'inline-block',
width: '100%',
height: '100%'
},
tileBar: {
textAlign: 'center',
background:
'linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.4) 70%,rgba(0,0,0,0) 100%)'
},
albumArtistName: {
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
textAlign: 'center',
fontSize: '1em'
}
}))
const getColsForWidth = (width) => {
if (width === 'xs') return 2
2020-04-07 17:25:06 -08:00
if (width === 'sm') return 4
if (width === 'md') return 5
if (width === 'lg') return 6
return 7
}
const LoadedAlbumGrid = ({ ids, data, basePath, width }) => {
const classes = useStyles()
return (
<div className={classes.root}>
2020-04-07 17:25:06 -08:00
<GridList cellHeight={'auto'} cols={getColsForWidth(width)} spacing={20}>
{ids.map((id) => (
<GridListTile
2020-04-07 17:25:06 -08:00
className={classes.gridListTile}
component={Link}
key={id}
to={linkToRecord(basePath, data[id].id, 'show')}
>
<img
src={subsonic.url(
'getCoverArt',
data[id].coverArtId || 'not_found',
{ size: 300 }
)}
alt={data[id].album}
className={classes.cover}
/>
<GridListTileBar
className={classes.tileBar}
title={data[id].name}
subtitle={
2020-04-07 17:25:06 -08:00
<div className={classes.albumArtistName}>
{data[id].albumArtist}
</div>
}
/>
</GridListTile>
))}
</GridList>
</div>
)
}
const AlbumGridView = ({ loading, ...props }) =>
loading ? <Loading /> : <LoadedAlbumGrid {...props} />
export default withWidth()(AlbumGridView)