51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
|
|
import React from 'react'
|
||
|
|
import { useTranslate } from 'react-admin'
|
||
|
|
import { IconButton, Tooltip, Link, useMediaQuery } from '@material-ui/core'
|
||
|
|
|
||
|
|
import { ImLastfm2 } from 'react-icons/im'
|
||
|
|
import MusicBrainz from '../icons/MusicBrainz'
|
||
|
|
import { intersperse } from '../utils'
|
||
|
|
|
||
|
|
const ArtistExternalLinks = ({ artistInfo, record }) => {
|
||
|
|
const translate = useTranslate()
|
||
|
|
let links = []
|
||
|
|
let linkButtons = []
|
||
|
|
const lastFMlink = artistInfo?.biography?.match(
|
||
|
|
/<a\s+(?:[^>]*?\s+)?href=(["'])(.*?)\1/
|
||
|
|
)
|
||
|
|
|
||
|
|
if (lastFMlink) {
|
||
|
|
links.push(lastFMlink[2])
|
||
|
|
}
|
||
|
|
if (artistInfo && artistInfo.musicBrainzId) {
|
||
|
|
links.push(`https://musicbrainz.org/artist/${artistInfo.musicBrainzId}`)
|
||
|
|
}
|
||
|
|
|
||
|
|
const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('sm'))
|
||
|
|
|
||
|
|
const addLink = (url, title, icon) => {
|
||
|
|
const translatedTitle = translate(title)
|
||
|
|
const link = (
|
||
|
|
<Link href={url} target="_blank" rel="noopener noreferrer">
|
||
|
|
<Tooltip title={translatedTitle}>
|
||
|
|
<IconButton size={'small'} aria-label={translatedTitle}>
|
||
|
|
{icon}
|
||
|
|
</IconButton>
|
||
|
|
</Tooltip>
|
||
|
|
</Link>
|
||
|
|
)
|
||
|
|
const id = linkButtons.length
|
||
|
|
linkButtons.push(<span key={`link-${record.id}-${id}`}>{link}</span>)
|
||
|
|
}
|
||
|
|
|
||
|
|
isDesktop && addLink(links[0], 'message.openIn.lastfm', <ImLastfm2 />)
|
||
|
|
|
||
|
|
isDesktop &&
|
||
|
|
artistInfo?.musicBrainzId &&
|
||
|
|
addLink(links[1], 'message.openIn.musicbrainz', <MusicBrainz />)
|
||
|
|
|
||
|
|
return isDesktop && <div>{intersperse(linkButtons, ' ')}</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ArtistExternalLinks
|