1d742cf8c7
* Seperate mobile desktop components * Fix err * Rename classes and fix some styles * Add lastFM button and remove console log * Add Mbiz Icon * render bio as dangerouslySetInnerHTML and remove unused css classes * Add Fav and Stars * Remove unstandardised class selector * Remove ext link from m view * Fix naming and simplify rounded styling * Refactor ArtistShow: - Extracted DesktopArtistDetails to its own file - Removed album count as it was incorrect, it is not considering compilations - Show bio and image from Native API, if it is available, before calling `getArtistInfo` Co-authored-by: Deluan <deluan@navidrome.org>
87 lines
2.2 KiB
JavaScript
87 lines
2.2 KiB
JavaScript
import React, { useState, createElement, useEffect } from 'react'
|
|
import { useMediaQuery } from '@material-ui/core'
|
|
import {
|
|
useShowController,
|
|
ShowContextProvider,
|
|
useRecordContext,
|
|
useShowContext,
|
|
ReferenceManyField,
|
|
} from 'react-admin'
|
|
import subsonic from '../subsonic'
|
|
import AlbumGridView from '../album/AlbumGridView'
|
|
import MobileArtistDetails from './MobileArtistDetails'
|
|
import DesktopArtistDetails from './DesktopArtistDetails'
|
|
|
|
const ArtistDetails = (props) => {
|
|
const record = useRecordContext(props)
|
|
const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('sm'))
|
|
const [artistInfo, setArtistInfo] = useState()
|
|
|
|
const biography =
|
|
artistInfo?.biography?.replace(new RegExp('<.*>', 'g'), '') ||
|
|
record.biography
|
|
const img = artistInfo?.largeImageUrl || record.largeImageUrl
|
|
|
|
useEffect(() => {
|
|
subsonic
|
|
.getArtistInfo(record.id)
|
|
.then((resp) => resp.json['subsonic-response'])
|
|
.then((data) => {
|
|
if (data.status === 'ok') {
|
|
setArtistInfo(data.artistInfo)
|
|
}
|
|
})
|
|
.catch((e) => {
|
|
console.error('error on artist page', e)
|
|
})
|
|
}, [record])
|
|
|
|
const component = isDesktop ? DesktopArtistDetails : MobileArtistDetails
|
|
return (
|
|
<>
|
|
{createElement(component, {
|
|
img,
|
|
artistInfo,
|
|
record,
|
|
biography,
|
|
})}
|
|
</>
|
|
)
|
|
}
|
|
|
|
const AlbumShowLayout = (props) => {
|
|
const showContext = useShowContext(props)
|
|
const record = useRecordContext()
|
|
|
|
return (
|
|
<>
|
|
{record && <ArtistDetails />}
|
|
{record && (
|
|
<ReferenceManyField
|
|
{...showContext}
|
|
addLabel={false}
|
|
reference="album"
|
|
target="artist_id"
|
|
sort={{ field: 'maxYear', order: 'ASC' }}
|
|
filter={{ artist_id: record?.id }}
|
|
perPage={0}
|
|
pagination={null}
|
|
>
|
|
<AlbumGridView {...props} />
|
|
</ReferenceManyField>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
const ArtistShow = (props) => {
|
|
const controllerProps = useShowController(props)
|
|
return (
|
|
<ShowContextProvider value={controllerProps}>
|
|
<AlbumShowLayout {...controllerProps} />
|
|
</ShowContextProvider>
|
|
)
|
|
}
|
|
|
|
export default ArtistShow
|