Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import { makeStyles } from '@material-ui/core/styles'
import React from 'react'
import PropTypes from 'prop-types'
import { useSelector } from 'react-redux'
import { FunctionField } from 'react-admin'
import { useTheme } from '@material-ui/core/styles'
import PlayingLight from '../icons/playing-light.gif'
import PlayingDark from '../icons/playing-dark.gif'
import PausedLight from '../icons/paused-light.png'
import PausedDark from '../icons/paused-dark.png'
const useStyles = makeStyles({
icon: {
width: '32px',
height: '32px',
verticalAlign: 'text-top',
marginLeft: '-8px',
marginTop: '-7px',
paddingRight: '3px',
},
text: {
subtitle: {
opacity: 0.5,
})
export const SongTitleField = ({ showTrackNumbers, ...props }) => {
const theme = useTheme()
const classes = useStyles()
const { record } = props
const currentTrack = useSelector((state) => state?.player?.current || {})
const currentId = currentTrack.trackId
const paused = currentTrack.paused
const isCurrent =
currentId && (currentId === record.id || currentId === record.mediaFileId)
const subtitle = record?.tags?.['subtitle']
const trackName = (r) => {
const name = r.title
if (r.trackNumber && showTrackNumbers) {
return r.trackNumber.toString().padStart(2, '0') + ' ' + name
}
if (subtitle) {
return (
<>
{name}
<span className={classes.subtitle}>{' (' + subtitle + ')'}</span>
</>
)
return name
const Icon = () => {
let icon
if (paused) {
icon = theme.palette.type === 'light' ? PausedLight : PausedDark
} else {
icon = theme.palette.type === 'light' ? PlayingLight : PlayingDark
<img
src={icon}
className={classes.icon}
alt={paused ? 'paused' : 'playing'}
/>
{isCurrent && <Icon />}
<FunctionField
{...props}
source="title"
render={trackName}
className={classes.text}
SongTitleField.propTypes = {
record: PropTypes.object,
showTrackNumbers: PropTypes.bool,
SongTitleField.defaultProps = {
record: {},
showTrackNumbers: false,