mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-11 02:51:43 +08:00
140 lines
3.8 KiB
TypeScript
140 lines
3.8 KiB
TypeScript
import { player } from '@/web/store'
|
|
import { resizeImage } from '@/web/utils/common'
|
|
import SvgIcon from './SvgIcon'
|
|
import ArtistInline from './ArtistsInline'
|
|
import {
|
|
State as PlayerState,
|
|
Mode as PlayerMode,
|
|
} from '@/web/utils/player'
|
|
import useCoverColor from '../hooks/useCoverColor'
|
|
import cx from 'classnames'
|
|
import { useNavigate } from 'react-router-dom'
|
|
import { useSnapshot } from 'valtio'
|
|
import { useMemo } from 'react'
|
|
|
|
const MediaControls = () => {
|
|
const classes =
|
|
'btn-pressed-animation btn-hover-animation mr-1 cursor-default rounded-lg p-1.5 transition duration-200 after:bg-white/10'
|
|
|
|
const playerSnapshot = useSnapshot(player)
|
|
const state = useMemo(() => playerSnapshot.state, [playerSnapshot.state])
|
|
|
|
const playOrPause = () => {
|
|
if (playerSnapshot.mode === PlayerMode.FM) {
|
|
player.playOrPause()
|
|
} else {
|
|
player.playFM()
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<button
|
|
key='dislike'
|
|
className={classes}
|
|
onClick={() => player.fmTrash()}
|
|
>
|
|
<SvgIcon name='dislike' className='h-6 w-6' />
|
|
</button>
|
|
|
|
<button key='play' className={classes} onClick={playOrPause}>
|
|
<SvgIcon
|
|
className='h-6 w-6'
|
|
name={
|
|
playerSnapshot.mode === PlayerMode.FM &&
|
|
[PlayerState.Playing, PlayerState.Loading].includes(state)
|
|
? 'pause'
|
|
: 'play'
|
|
}
|
|
/>
|
|
</button>
|
|
|
|
<button
|
|
key='next'
|
|
className={classes}
|
|
onClick={() => player.nextTrack(true)}
|
|
>
|
|
<SvgIcon name='next' className='h-6 w-6' />
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const FMCard = () => {
|
|
const navigate = useNavigate()
|
|
|
|
const playerSnapshot = useSnapshot(player)
|
|
const track = useMemo(() => playerSnapshot.fmTrack, [playerSnapshot.fmTrack])
|
|
const coverUrl = useMemo(
|
|
() => resizeImage(track?.al?.picUrl ?? '', 'md'),
|
|
[track?.al?.picUrl]
|
|
)
|
|
|
|
const bgColor = useCoverColor(track?.al?.picUrl ?? '')
|
|
|
|
return (
|
|
<div
|
|
className='relative flex h-[198px] overflow-hidden rounded-2xl bg-gray-100 p-4 dark:bg-gray-800'
|
|
style={{
|
|
background: `linear-gradient(to bottom, ${bgColor.from}, ${bgColor.to})`,
|
|
}}
|
|
>
|
|
{coverUrl ? (
|
|
<img
|
|
onClick={() => track?.al?.id && navigate(`/album/${track.al.id}`)}
|
|
className='rounded-lg shadow-2xl'
|
|
src={coverUrl}
|
|
/>
|
|
) : (
|
|
<div className='aspect-square h-full rounded-lg bg-gray-200 dark:bg-white/5'></div>
|
|
)}
|
|
|
|
<div className='ml-5 flex w-full flex-col justify-between text-white'>
|
|
{/* Track info */}
|
|
<div>
|
|
{track ? (
|
|
<div className='line-clamp-2 text-xl font-semibold'>
|
|
{track?.name}
|
|
</div>
|
|
) : (
|
|
<div className='flex'>
|
|
<div className='bg-gray-200 text-xl text-transparent dark:bg-white/5'>
|
|
PLACEHOLDER12345
|
|
</div>
|
|
</div>
|
|
)}
|
|
{track ? (
|
|
<ArtistInline
|
|
className='line-clamp-2 opacity-75'
|
|
artists={track?.ar ?? []}
|
|
/>
|
|
) : (
|
|
<div className='mt-1 flex'>
|
|
<div className='bg-gray-200 text-transparent dark:bg-white/5'>
|
|
PLACEHOLDER
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className='-mb-1 flex items-center justify-between'>
|
|
{track ? <MediaControls /> : <div className='h-9'></div>}
|
|
|
|
{/* FM logo */}
|
|
<div
|
|
className={cx(
|
|
'right-4 bottom-5 flex opacity-20',
|
|
track ? 'text-white ' : 'text-gray-700 dark:text-white'
|
|
)}
|
|
>
|
|
<SvgIcon name='fm' className='mr-1 h-6 w-6' />
|
|
<span className='font-semibold'>私人FM</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FMCard
|