|
|
|
@ -177,7 +177,7 @@ export default function AudioPlayer({
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className={`flex justify-between w-1200px h-full ${className}`}>
|
|
|
|
|
<div className={`flex justify-between w-1200px h-full pt-6px ${className}`}>
|
|
|
|
|
{/* left */}
|
|
|
|
|
<div className="flex flex-row w-fit h-fit mt-22px">
|
|
|
|
|
{/* 专辑封面 */}
|
|
|
|
@ -191,60 +191,57 @@ export default function AudioPlayer({
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 歌曲信息 */}
|
|
|
|
|
<div className="w-183px ml-15px mr-36px cursor-default">
|
|
|
|
|
<div className="w-183px ml-15px cursor-default">
|
|
|
|
|
{/* <AutoScrollContainer key={audio?.id} auto hover width="140px" speed={50}> */}
|
|
|
|
|
{/* <div className="w-auto h-auto"> */}
|
|
|
|
|
<p className="mt-2px text-17px leading-24px text-base text-overflow">{audio?.title ?? ''}</p>
|
|
|
|
|
<p className="text-13px leading-18px mt-2px text-[rgba(0,0,0,0.7)] text-overflow">{`${audio?.artist}/${audio?.album}`}</p>
|
|
|
|
|
<p className="mt-2px text-15px leading-24px text-base text-overflow">{audio?.title ?? ''}</p>
|
|
|
|
|
<p className="text-12px leading-18px mt-2px text-[rgba(0,0,0,0.7)] text-overflow">{`${audio?.artist}/${audio?.album}`}</p>
|
|
|
|
|
{/* </div> */}
|
|
|
|
|
{/* </AutoScrollContainer> */}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="flex h-full">
|
|
|
|
|
{/* center */}
|
|
|
|
|
<div className="flex flex-col items-center h-full">
|
|
|
|
|
{/* 按钮 */}
|
|
|
|
|
<div className="flex items-center gap-24px h-fit mt-11px">
|
|
|
|
|
<NextButton className="rotate-180" onClick={() => handleSwitchAudio(-1)} />
|
|
|
|
|
<PlayButton playState={playState} size={40} onClick={handlePlay} />
|
|
|
|
|
<NextButton onClick={() => handleSwitchAudio(1)} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 播放进度 */}
|
|
|
|
|
<div className="flex items-end justify-between h-fit mt-6px gap-6px">
|
|
|
|
|
{/* 播放时长 */}
|
|
|
|
|
<span className="block w-27px text-11px leading-14px text-center text-#000">
|
|
|
|
|
{secondToDate(trackProgress)}
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
{/* 进度条 */}
|
|
|
|
|
<ProgressBar
|
|
|
|
|
value={trackProgress}
|
|
|
|
|
duration={duration}
|
|
|
|
|
onChange={(value: number) => handleChangeProgress(value)}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{/* 总时长 */}
|
|
|
|
|
<span className="block w-27px text-11px leading-14px text-center text-#000">
|
|
|
|
|
{secondToDate(duration || 0)}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
{/* center */}
|
|
|
|
|
<div className="flex flex-col items-center h-full">
|
|
|
|
|
{/* 按钮 */}
|
|
|
|
|
<div className="flex items-center gap-18px h-fit mt-9px">
|
|
|
|
|
<NextButton className="rotate-180" onClick={() => handleSwitchAudio(-1)} />
|
|
|
|
|
<PlayButton playState={playState} size={38} onClick={handlePlay} />
|
|
|
|
|
<NextButton onClick={() => handleSwitchAudio(1)} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* right */}
|
|
|
|
|
<div className="flex items-end ml-39px">
|
|
|
|
|
<div className="flex h-full items-end h-fit mb-29px gap-18px">
|
|
|
|
|
{/* 收藏歌曲 */}
|
|
|
|
|
{<CollectButton id={audio.id || '0'} active={audio.haveCollect} collectType="0" color="dark" />}
|
|
|
|
|
{/* 播放顺序 */}
|
|
|
|
|
<OrderButton
|
|
|
|
|
order={playOrder}
|
|
|
|
|
onClick={handleChangeOrder}
|
|
|
|
|
className={`mb-1px ${playListInfo.type === 'fm' && 'hidden'}`}
|
|
|
|
|
/>
|
|
|
|
|
<VolumeButton value={volume} onChange={handleChangeVolumn} className="mb-1px" />
|
|
|
|
|
</div>
|
|
|
|
|
{/* 播放进度 */}
|
|
|
|
|
<div className="flex items-center justify-between h-fit mt-6px gap-6px">
|
|
|
|
|
{/* 播放时长 */}
|
|
|
|
|
<span className="block w-27px text-11px leading-14px text-right text-#000">
|
|
|
|
|
{secondToDate(trackProgress)}
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
{/* 进度条 */}
|
|
|
|
|
<ProgressBar
|
|
|
|
|
value={trackProgress}
|
|
|
|
|
duration={duration}
|
|
|
|
|
onChange={(value: number) => handleChangeProgress(value)}
|
|
|
|
|
className="w-710px"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{/* 总时长 */}
|
|
|
|
|
<span className="block w-27px text-11px leading-14px text-left text-#000">{secondToDate(duration || 0)}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* right */}
|
|
|
|
|
<div className="flex items-end h-full">
|
|
|
|
|
<div className="flex h-full items-end h-fit mb-21px gap-18px">
|
|
|
|
|
{/* 收藏歌曲 */}
|
|
|
|
|
{<CollectButton id={audio.id || '0'} active={audio.haveCollect} collectType="0" color="dark" />}
|
|
|
|
|
{/* 播放顺序 */}
|
|
|
|
|
<OrderButton
|
|
|
|
|
order={playOrder}
|
|
|
|
|
onClick={handleChangeOrder}
|
|
|
|
|
className={`mb-1px ${playListInfo.type === 'fm' && 'hidden'}`}
|
|
|
|
|
/>
|
|
|
|
|
<VolumeButton value={volume} onChange={handleChangeVolumn} className="mb-1px" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|