mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
* ReplayGain support - extract ReplayGain tags from files, expose via native api - use metadata to normalize audio in web player * make pre-push happy * remove unnecessary prints * remove another unnecessary print * add tooltips, see metadata * address comments, use settings instead * remove console.log * use better language for gain modes
67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
import React from 'react'
|
|
import { useMediaQuery } from '@material-ui/core'
|
|
import { Link } from 'react-router-dom'
|
|
import clsx from 'clsx'
|
|
import { QualityInfo } from '../common'
|
|
import useStyle from './styles'
|
|
|
|
const AudioTitle = React.memo(({ audioInfo, gainInfo, isMobile }) => {
|
|
const classes = useStyle()
|
|
const className = classes.audioTitle
|
|
const isDesktop = useMediaQuery('(min-width:810px)')
|
|
|
|
if (!audioInfo.song) {
|
|
return ''
|
|
}
|
|
|
|
const song = audioInfo.song
|
|
const qi = {
|
|
suffix: song.suffix,
|
|
bitRate: song.bitRate,
|
|
albumGain: song.rgAlbumGain,
|
|
trackGain: song.rgTrackGain,
|
|
}
|
|
|
|
return (
|
|
<Link
|
|
to={
|
|
audioInfo.isRadio
|
|
? `/radio/${audioInfo.trackId}/show`
|
|
: `/album/${song.albumId}/show`
|
|
}
|
|
className={className}
|
|
>
|
|
<span>
|
|
<span className={clsx(classes.songTitle, 'songTitle')}>
|
|
{song.title}
|
|
</span>
|
|
{isDesktop && (
|
|
<QualityInfo
|
|
record={qi}
|
|
className={classes.qualityInfo}
|
|
{...gainInfo}
|
|
/>
|
|
)}
|
|
</span>
|
|
{isMobile ? (
|
|
<>
|
|
<span className={classes.songInfo}>
|
|
<span className={'songArtist'}>{song.artist}</span>
|
|
</span>
|
|
<span className={clsx(classes.songInfo, classes.songAlbum)}>
|
|
<span className={'songAlbum'}>{song.album}</span>
|
|
{song.year ? ` - ${song.year}` : ''}
|
|
</span>
|
|
</>
|
|
) : (
|
|
<span className={classes.songInfo}>
|
|
<span className={'songArtist'}>{song.artist}</span> -{' '}
|
|
<span className={'songAlbum'}>{song.album}</span>
|
|
{song.year ? ` - ${song.year}` : ''}
|
|
</span>
|
|
)}
|
|
</Link>
|
|
)
|
|
})
|
|
|
|
export default AudioTitle
|