From 9265fe5db5a866fde8c0fd06a172f82fea482071 Mon Sep 17 00:00:00 2001 From: al Date: Wed, 12 Mar 2025 17:00:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AD=98=E5=9C=A8=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/found/page.js | 15 ++++++---- app/messageDetail/page.js | 32 ++++++++++++++++---- app/my/relationship/page.js | 2 ++ app/space/page.js | 11 +++++-- components/InfiniteScrollContent/index.jsx | 34 ++++++++++++---------- 5 files changed, 67 insertions(+), 27 deletions(-) diff --git a/app/found/page.js b/app/found/page.js index 3f23271..7ac5da8 100644 --- a/app/found/page.js +++ b/app/found/page.js @@ -39,7 +39,7 @@ export default function Found() { const [activeIndex, setActiveIndex] = useState(0); const [account, setAccount] = useState(null); const [scrollHeight, setScrollHeight] = useState(0); - + const [loading, setLoading] = useState(false); // useEffect(() => { // const info = get("account"); // console.log("info",info) @@ -48,11 +48,14 @@ export default function Found() { // } // }, [] // ) - const childrenFunc = () => { + const childrenFunc = async () => { + setLoading(true); if (!activeIndex) { - recommPostRef.current?.doRefresh(); + await recommPostRef.current?.doRefresh(); + setLoading(false); } else { - followPostRef.current?.doRefresh(); + await followPostRef.current?.doRefresh(); + setLoading(false); } }; useEffect(() => { @@ -119,7 +122,9 @@ export default function Found() {
prev + 1); //请求接口发送私信 + setSendding(true); try { const data = await requireAPI( "POST", @@ -224,6 +226,7 @@ export default function MessageDetail({}) { }, } ); + setSendding(false); if (data.ret === -1) { Toast.show({ icon: "error", @@ -240,6 +243,7 @@ export default function MessageDetail({}) { }); } catch (error) { // console.error(error); + setSendding(false); } // //每次发送都缓存信息到本地 // addArr(`${selfData.mid}_to_${params.mid}_messages`, messages); @@ -415,11 +419,16 @@ export default function MessageDetail({}) {

触发按钮:

    - {btns.map((item) => { + {btns.map((item, index) => { return (
  • { - onSend(item, oldMessages[0]?.id || -1, oldMessages); + onSend( + item, + oldMessages[0]?.id || -1, + oldMessages.list + ); }} className="bg-[#3333331A] rounded text-center px-4 py-1" > @@ -549,9 +558,22 @@ export default function MessageDetail({}) {
@@ -434,7 +436,12 @@ const SpacePostList = forwardRef(({ scrollHeight }, ref) => { )} {spacePostList?.map((item, index) => ( - + ))} {!spacePostList?.length && ( @@ -442,7 +449,7 @@ const SpacePostList = forwardRef(({ scrollHeight }, ref) => { className={`flex flex-col items-center justify-center h-screen`} style={{ height: `calc(100vh - 133px)` }} > - +
)} diff --git a/components/InfiniteScrollContent/index.jsx b/components/InfiniteScrollContent/index.jsx index 179ea64..a5dfcbe 100644 --- a/components/InfiniteScrollContent/index.jsx +++ b/components/InfiniteScrollContent/index.jsx @@ -8,6 +8,8 @@ export default function InfiniteScrollContent({ hasMore = 0, isEmpty, showNoMore = true, + zoneEmpty = false, + type = "nodata", }) { const router = useRouter(); return ( @@ -24,21 +26,23 @@ export default function InfiniteScrollContent({ className={`flex flex-col items-center mt-28`} // style={{ height: `${scrollHeight}px` }} > - -
-

router.push("/search")} - className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]" - > - 搜索空间 -

-

router.push("/found")} - className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]" - > - 查看推荐 -

-
+ + {zoneEmpty && ( +
+

router.push("/search")} + className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]" + > + 搜索空间 +

+

router.push("/found")} + className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]" + > + 查看推荐 +

+
+ )} )}