diff --git a/src/components/AudioPlayer/PlayerBar.tsx b/src/components/AudioPlayer/PlayerBar.tsx index 21a99f5..d04a2f2 100644 --- a/src/components/AudioPlayer/PlayerBar.tsx +++ b/src/components/AudioPlayer/PlayerBar.tsx @@ -1,6 +1,5 @@ 'use client'; -// import { useEffect, useState } from 'react'; -import { useEffect } from 'react'; +import { useEffect, useState } from 'react'; import dynamic from 'next/dynamic'; import { useShallow } from 'zustand/react/shallow'; @@ -11,13 +10,15 @@ import PlayerCard from './PlayerCard'; import useAudioStore from '@/store/audio'; const PlayerBar = ({ className }: { className?: string }) => { - const { audioId, order, playQueue, showCard, switchSongByDiff, setOrder, setShowCard } = useAudioStore( + const { show, audioId, order, playQueue, showCard, setShow, setOrder, setShowCard } = useAudioStore( useShallow((state) => { return { + show: state.show, audioId: state.audioId, order: state.order, playQueue: state.playQueue, showCard: state.showCard, + setShow: state.setShow, setOrder: state.setOrder, switchSongByDiff: state.switchSongByDiff, setShowCard: state.setShowCard, @@ -29,35 +30,23 @@ const PlayerBar = ({ className }: { className?: string }) => { setShowCard(!showCard); }; - // let oldScrollY: number = 0; - // function handleScroll() { - // if (window.scrollY > oldScrollY) { - // // 向下滚动 - // // if (oldScrollY < 0) return; - // setPositionBottom(-130); - // } else { - // // 向上滚动 - // // if (oldScrollY > 0) return; - // setPositionBottom(0); - // } - // oldScrollY = window.scrollY; - // } + let timer: NodeJS.Timeout; - useEffect(() => { - // window.addEventListener('scroll', handleScroll); - // return () => { - // window.removeEventListener('scroll', handleScroll); - // }; - }, []); + function handleScroll() { + clearInterval(timer); + setShow(false); + timer = setTimeout(() => { + setShow(true); + }, 800); + } useEffect(() => { - // window.addEventListener('scroll', handleScroll); - // return () => { - // window.removeEventListener('scroll', handleScroll); - // }; - }); - - // const [positionBottom, setPositionBottom] = useState(0); + window.addEventListener('scroll', handleScroll); + return () => { + window.removeEventListener('scroll', handleScroll); + clearInterval(timer); + }; + }, []); return ( // 注释为高斯模糊效果 @@ -65,12 +54,12 @@ const PlayerBar = ({ className }: { className?: string }) => { // className={`fixed w-[100vw] h-[130px] bg-[#000] bg-opacity-50 shadow-lg shadow-black-[0_0_10px] z-10 ${className} backdrop-blur-[4px]`} // style={{ bottom: 0 }} // > -
+
{/* 播放器 */} -
+
{/* 单曲卡片 */} diff --git a/src/components/Header/HeaderAvatar.tsx b/src/components/Header/HeaderAvatar.tsx index c8caf7b..ba16c8b 100644 --- a/src/components/Header/HeaderAvatar.tsx +++ b/src/components/Header/HeaderAvatar.tsx @@ -20,7 +20,7 @@ export default function HeaderAvatar({ className }: { className?: string }) {
- + diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 2f91363..638f66b 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -51,10 +51,10 @@ export default function Header() { {/* 登录按钮/头像 */} {!!userInfo.id ? ( - + ) : (