mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Get album info (when available) from Last.fm, add getAlbumInfo endpoint (#2061)
* lastfm album.getInfo, getAlbuminfo(2) endpoints * ... for description and reduce not found log level * address first comments * return all images * Update migration timestamp * Handle a few edge cases * Add CoverArtPriority option to retrieve albumart from external sources * Make agents methods more descriptive * Use Last.fm name consistently Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
5564f00838
commit
93adda66d9
33 changed files with 797 additions and 188 deletions
|
@ -1,4 +1,4 @@
|
|||
import React, { useMemo, useCallback } from 'react'
|
||||
import React, { useMemo, useCallback, useState, useEffect } from 'react'
|
||||
import {
|
||||
Card,
|
||||
CardContent,
|
||||
|
@ -91,6 +91,13 @@ const useStyles = makeStyles(
|
|||
float: 'left',
|
||||
wordBreak: 'break-word',
|
||||
},
|
||||
notes: {
|
||||
display: 'inline-block',
|
||||
marginTop: '1em',
|
||||
float: 'left',
|
||||
wordBreak: 'break-word',
|
||||
cursor: 'pointer',
|
||||
},
|
||||
pointerCursor: {
|
||||
cursor: 'pointer',
|
||||
},
|
||||
|
@ -211,6 +218,29 @@ const AlbumDetails = (props) => {
|
|||
const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('lg'))
|
||||
const classes = useStyles()
|
||||
const [isLightboxOpen, setLightboxOpen] = React.useState(false)
|
||||
const [expanded, setExpanded] = useState(false)
|
||||
const [albumInfo, setAlbumInfo] = useState()
|
||||
|
||||
let notes =
|
||||
albumInfo?.notes?.replace(new RegExp('<.*>', 'g'), '') || record.notes
|
||||
|
||||
if (notes !== undefined) {
|
||||
notes += '..'
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
subsonic
|
||||
.getAlbumInfo(record.id)
|
||||
.then((resp) => resp.json['subsonic-response'])
|
||||
.then((data) => {
|
||||
if (data.status === 'ok') {
|
||||
setAlbumInfo(data.albumInfo)
|
||||
}
|
||||
})
|
||||
.catch((e) => {
|
||||
console.error('error on album page', e)
|
||||
})
|
||||
}, [record])
|
||||
|
||||
const imageUrl = subsonic.getCoverArtUrl(record, 300)
|
||||
const fullImageUrl = subsonic.getCoverArtUrl(record)
|
||||
|
@ -277,11 +307,38 @@ const AlbumDetails = (props) => {
|
|||
<AlbumExternalLinks className={classes.externalLinks} />
|
||||
</Typography>
|
||||
)}
|
||||
{isDesktop && (
|
||||
<Collapse
|
||||
collapsedHeight={'2.75em'}
|
||||
in={expanded}
|
||||
timeout={'auto'}
|
||||
className={classes.notes}
|
||||
>
|
||||
<Typography
|
||||
variant={'body1'}
|
||||
onClick={() => setExpanded(!expanded)}
|
||||
>
|
||||
<span dangerouslySetInnerHTML={{ __html: notes }} />
|
||||
</Typography>
|
||||
</Collapse>
|
||||
)}
|
||||
{isDesktop && record['comment'] && <AlbumComment record={record} />}
|
||||
</CardContent>
|
||||
</div>
|
||||
</div>
|
||||
{!isDesktop && record['comment'] && <AlbumComment record={record} />}
|
||||
{!isDesktop && (
|
||||
<div className={classes.notes}>
|
||||
<Collapse collapsedHeight={'1.5em'} in={expanded} timeout={'auto'}>
|
||||
<Typography
|
||||
variant={'body1'}
|
||||
onClick={() => setExpanded(!expanded)}
|
||||
>
|
||||
<span dangerouslySetInnerHTML={{ __html: notes }} />
|
||||
</Typography>
|
||||
</Collapse>
|
||||
</div>
|
||||
)}
|
||||
{isLightboxOpen && (
|
||||
<Lightbox
|
||||
imagePadding={50}
|
||||
|
|
|
@ -63,6 +63,10 @@ const getArtistInfo = (id) => {
|
|||
return httpClient(url('getArtistInfo', id))
|
||||
}
|
||||
|
||||
const getAlbumInfo = (id) => {
|
||||
return httpClient(url('getAlbumInfo', id))
|
||||
}
|
||||
|
||||
const streamUrl = (id) => {
|
||||
return baseUrl(url('stream', id, { ts: true }))
|
||||
}
|
||||
|
@ -79,5 +83,6 @@ export default {
|
|||
getScanStatus,
|
||||
getCoverArtUrl,
|
||||
streamUrl,
|
||||
getAlbumInfo,
|
||||
getArtistInfo,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue