Fix artist image not caching on browser

This commit is contained in:
Deluan 2023-01-20 21:28:44 -05:00
parent b9934799ec
commit 33f033beba
4 changed files with 32 additions and 31 deletions

View file

@ -20,7 +20,6 @@ const ArtistDetails = (props) => {
const biography = const biography =
artistInfo?.biography?.replace(new RegExp('<.*>', 'g'), '') || artistInfo?.biography?.replace(new RegExp('<.*>', 'g'), '') ||
record.biography record.biography
const img = artistInfo?.largeImageUrl || record.largeImageUrl
useEffect(() => { useEffect(() => {
subsonic subsonic
@ -40,7 +39,6 @@ const ArtistDetails = (props) => {
return ( return (
<> <>
{createElement(component, { {createElement(component, {
img,
artistInfo, artistInfo,
record, record,
biography, biography,

View file

@ -12,6 +12,7 @@ import { AddToPlaylistDialog } from '../dialogs'
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog' import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
import AlbumInfo from '../album/AlbumInfo' import AlbumInfo from '../album/AlbumInfo'
import DownloadMenuDialog from '../dialogs/DownloadMenuDialog' import DownloadMenuDialog from '../dialogs/DownloadMenuDialog'
import subsonic from '../subsonic'
const useStyles = makeStyles( const useStyles = makeStyles(
(theme) => ({ (theme) => ({
@ -70,9 +71,9 @@ const useStyles = makeStyles(
{ name: 'NDDesktopArtistDetails' } { name: 'NDDesktopArtistDetails' }
) )
const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => { const DesktopArtistDetails = ({ artistInfo, record, biography }) => {
const [expanded, setExpanded] = useState(false) const [expanded, setExpanded] = useState(false)
const classes = useStyles({ img, expanded }) const classes = useStyles()
const title = record.name const title = record.name
const [isLightboxOpen, setLightboxOpen] = React.useState(false) const [isLightboxOpen, setLightboxOpen] = React.useState(false)
@ -89,7 +90,7 @@ const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => {
{artistInfo && ( {artistInfo && (
<CardMedia <CardMedia
className={classes.cover} className={classes.cover}
image={artistInfo.mediumImageUrl} image={subsonic.getCoverArtUrl(record, 300)}
onClick={handleOpenLightbox} onClick={handleOpenLightbox}
title={title} title={title}
/> />
@ -103,16 +104,15 @@ const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => {
className={classes.artistName} className={classes.artistName}
> >
{title} {title}
{config.enableFavourites && ( <ArtistContextMenu
<ArtistContextMenu showLove={config.enableFavourites}
className={classes.contextMenu} className={classes.contextMenu}
record={record} record={record}
resource={'artist'} resource={'artist'}
size={'default'} size={'default'}
aria-label="artist context menu" aria-label="artist context menu"
color="primary" color="primary"
/> />
)}
</Typography> </Typography>
{config.enableStarRating && ( {config.enableStarRating && (
<div> <div>
@ -147,7 +147,7 @@ const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => {
imagePadding={50} imagePadding={50}
animationDuration={200} animationDuration={200}
imageTitle={record.name} imageTitle={record.name}
mainSrc={artistInfo.largeImageUrl} mainSrc={subsonic.getCoverArtUrl(record)}
onCloseRequest={handleCloseLightbox} onCloseRequest={handleCloseLightbox}
/> />
)} )}

View file

@ -4,8 +4,9 @@ import { makeStyles } from '@material-ui/core/styles'
import Card from '@material-ui/core/Card' import Card from '@material-ui/core/Card'
import CardMedia from '@material-ui/core/CardMedia' import CardMedia from '@material-ui/core/CardMedia'
import config from '../config' import config from '../config'
import { LoveButton, RatingField } from '../common' import { ArtistContextMenu, RatingField } from '../common'
import Lightbox from 'react-image-lightbox' import Lightbox from 'react-image-lightbox'
import subsonic from '../subsonic'
const useStyles = makeStyles( const useStyles = makeStyles(
(theme) => ({ (theme) => ({
@ -74,7 +75,8 @@ const useStyles = makeStyles(
{ name: 'NDMobileArtistDetails' } { name: 'NDMobileArtistDetails' }
) )
const MobileArtistDetails = ({ img, artistInfo, biography, record }) => { const MobileArtistDetails = ({ artistInfo, biography, record }) => {
const img = subsonic.getCoverArtUrl(record)
const [expanded, setExpanded] = useState(false) const [expanded, setExpanded] = useState(false)
const classes = useStyles({ img, expanded }) const classes = useStyles({ img, expanded })
const title = record.name const title = record.name
@ -94,7 +96,7 @@ const MobileArtistDetails = ({ img, artistInfo, biography, record }) => {
{artistInfo && ( {artistInfo && (
<CardMedia <CardMedia
className={classes.cover} className={classes.cover}
image={artistInfo.mediumImageUrl} image={subsonic.getCoverArtUrl(record, 300)}
onClick={handleOpenLightbox} onClick={handleOpenLightbox}
title={title} title={title}
/> />
@ -107,16 +109,15 @@ const MobileArtistDetails = ({ img, artistInfo, biography, record }) => {
className={classes.artistName} className={classes.artistName}
> >
{title} {title}
{config.enableFavourites && ( <ArtistContextMenu
<LoveButton showLove={config.enableFavourites}
className={classes.loveButton} className={classes.loveButton}
record={record} record={record}
resource={'artist'} resource={'artist'}
size={'small'} size={'small'}
aria-label="love" aria-label="love"
color="primary" color="primary"
/> />
)}
</Typography> </Typography>
{config.enableStarRating && ( {config.enableStarRating && (
<RatingField <RatingField
@ -141,7 +142,7 @@ const MobileArtistDetails = ({ img, artistInfo, biography, record }) => {
imagePadding={50} imagePadding={50}
animationDuration={200} animationDuration={200}
imageTitle={record.name} imageTitle={record.name}
mainSrc={artistInfo.largeImageUrl} mainSrc={img}
onCloseRequest={handleCloseLightbox} onCloseRequest={handleCloseLightbox}
/> />
)} )}

View file

@ -54,8 +54,10 @@ const getCoverArtUrl = (record, size) => {
// TODO Move this logic to server. `song` and `album` should have a CoverArtID // TODO Move this logic to server. `song` and `album` should have a CoverArtID
if (record.album) { if (record.album) {
return baseUrl(url('getCoverArt', 'mf-' + record.id, options)) return baseUrl(url('getCoverArt', 'mf-' + record.id, options))
} else { } else if (record.artist) {
return baseUrl(url('getCoverArt', 'al-' + record.id, options)) return baseUrl(url('getCoverArt', 'al-' + record.id, options))
} else {
return baseUrl(url('getCoverArt', 'ar-' + record.id, options))
} }
} }