mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 01:38:39 +08:00
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import { formatDuration } from '@/web/utils/common'
|
|
import { css, cx } from '@emotion/css'
|
|
import { useMemo } from 'react'
|
|
import { player } from '@/web/store'
|
|
import { useSnapshot } from 'valtio'
|
|
import Wave from './Wave'
|
|
import Icon from '@/web/components/Icon'
|
|
|
|
const TrackList = ({
|
|
tracks,
|
|
onPlay,
|
|
className,
|
|
}: {
|
|
tracks?: Track[]
|
|
onPlay: (id: number) => void
|
|
className?: string
|
|
}) => {
|
|
const playerSnapshot = useSnapshot(player)
|
|
const playingTrack = useMemo(
|
|
() => playerSnapshot.track,
|
|
[playerSnapshot.track]
|
|
)
|
|
|
|
const handleClick = (e: React.MouseEvent<HTMLElement>, trackID: number) => {
|
|
if (e.detail === 2) onPlay?.(trackID)
|
|
}
|
|
|
|
const playing = useMemo(
|
|
() => playerSnapshot.state === 'playing',
|
|
[playerSnapshot.state]
|
|
)
|
|
|
|
return (
|
|
<div className={className}>
|
|
{tracks?.map(track => (
|
|
<div
|
|
key={track.id}
|
|
onClick={e => handleClick(e, track.id)}
|
|
className='group relative flex items-center py-2 text-16 font-medium text-neutral-200 transition duration-300 ease-in-out'
|
|
>
|
|
<div className='mr-6'>{String(track.no).padStart(2, '0')}</div>
|
|
<div className='flex flex-grow items-center'>
|
|
{track.name}
|
|
{playingTrack?.id === track.id && playing && (
|
|
<div className='ml-4'>
|
|
<Wave playing={playing} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className='mr-12 flex opacity-0 transition-opacity group-hover:opacity-100'>
|
|
<div className='mr-3 flex h-10 w-10 items-center justify-center rounded-full bg-brand-600 text-white/80'>
|
|
{/* <Icon name='play' className='h-7 w-7' /> */}
|
|
</div>
|
|
<div className='mr-3 flex h-10 w-10 items-center justify-center rounded-full bg-night-900 text-white/80'>
|
|
{/* <Icon name='play' className='h-7 w-7' /> */}
|
|
</div>
|
|
<div className='flex h-10 w-10 items-center justify-center rounded-full bg-night-900 text-white/80'>
|
|
{/* <Icon name='play' className='h-7 w-7' /> */}
|
|
</div>
|
|
</div>
|
|
<div className='text-right'>
|
|
{formatDuration(track.dt, 'en', 'hh:mm:ss')}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TrackList
|