2024-06-24 22:12:13 +08:00
|
|
|
"use client";
|
|
|
|
|
2024-06-27 18:34:03 +08:00
|
|
|
import React, { useEffect, useRef, useState, Suspense } from "react";
|
2024-06-25 20:18:37 +08:00
|
|
|
import {
|
|
|
|
Tabs,
|
|
|
|
Swiper,
|
|
|
|
PullToRefresh,
|
|
|
|
Toast,
|
|
|
|
InfiniteScroll,
|
|
|
|
List,
|
2024-06-25 22:47:18 +08:00
|
|
|
Image,
|
2024-06-25 20:18:37 +08:00
|
|
|
} from "antd-mobile";
|
2024-06-27 18:34:03 +08:00
|
|
|
|
2024-06-25 20:18:37 +08:00
|
|
|
import PostItem from "../components/PostItem";
|
|
|
|
import { sleep } from "antd-mobile/es/utils/sleep";
|
|
|
|
import "./index.css";
|
2024-06-25 22:47:18 +08:00
|
|
|
import PostItemSkeleton from "@/components/skeletons/PostItemSkeleton";
|
2024-06-29 12:07:37 +08:00
|
|
|
import Link from "next/link";
|
2024-06-25 20:18:37 +08:00
|
|
|
const variables = {
|
|
|
|
"@active-line-color": "#f00", // 将主题色改为红色
|
|
|
|
};
|
2024-06-24 22:12:13 +08:00
|
|
|
const tabItems = [
|
2024-06-25 20:18:37 +08:00
|
|
|
{ key: "commend", title: "推荐" },
|
|
|
|
{ key: "follow", title: "关注" },
|
|
|
|
];
|
|
|
|
let count = 0;
|
2024-06-29 12:07:37 +08:00
|
|
|
|
2024-06-25 20:18:37 +08:00
|
|
|
// const scrollHeight = 700;
|
|
|
|
// const scrollHeight = window.innerHeight-126
|
2024-06-24 22:12:13 +08:00
|
|
|
export default function Home() {
|
2024-06-25 20:18:37 +08:00
|
|
|
const swiperRef = useRef(null);
|
|
|
|
const [activeIndex, setActiveIndex] = useState(0);
|
|
|
|
const [data, setData] = useState([]);
|
|
|
|
const [hasMore, setHasMore] = useState(true);
|
|
|
|
const [scrollHeight, setScrollHeight] = useState(0);
|
|
|
|
|
|
|
|
// 获取屏幕高度
|
|
|
|
// const scrollHeight = 600;
|
|
|
|
useEffect(() => {
|
|
|
|
setScrollHeight(window.innerHeight - 126);
|
2024-06-27 18:34:03 +08:00
|
|
|
}, []);
|
2024-06-25 20:18:37 +08:00
|
|
|
async function mockRequest() {
|
|
|
|
if (count >= 5) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
await sleep(2000);
|
|
|
|
count++;
|
|
|
|
return [
|
|
|
|
"A",
|
|
|
|
"B",
|
|
|
|
"C",
|
|
|
|
"D",
|
|
|
|
"E",
|
|
|
|
"F",
|
|
|
|
"G",
|
|
|
|
"H",
|
|
|
|
"I",
|
|
|
|
"J",
|
|
|
|
"K",
|
|
|
|
"L",
|
|
|
|
"M",
|
|
|
|
"N",
|
|
|
|
"O",
|
|
|
|
"P",
|
|
|
|
"Q",
|
|
|
|
];
|
|
|
|
}
|
|
|
|
async function doRefresh() {
|
|
|
|
await sleep(1000);
|
|
|
|
Toast.show({
|
|
|
|
icon: "fail",
|
|
|
|
content: "刷新失败",
|
|
|
|
});
|
|
|
|
throw new Error("刷新失败");
|
|
|
|
}
|
|
|
|
async function loadMore() {
|
|
|
|
const append = await mockRequest();
|
|
|
|
setData((val) => [...val, ...append]);
|
|
|
|
setHasMore(append.length > 0);
|
|
|
|
}
|
2024-06-24 22:12:13 +08:00
|
|
|
return (
|
2024-07-02 15:09:48 +08:00
|
|
|
<div className="h-screen">
|
2024-06-27 18:34:03 +08:00
|
|
|
<div className="flex justify-between items-center px-2 custom-tabs text-gray-400 sticky top-0 z-10 bg-deepBg">
|
2024-06-25 20:18:37 +08:00
|
|
|
<Tabs
|
2024-06-24 22:12:13 +08:00
|
|
|
activeKey={tabItems[activeIndex].key}
|
2024-06-25 20:18:37 +08:00
|
|
|
onChange={(key) => {
|
|
|
|
const index = tabItems.findIndex((item) => item.key === key);
|
|
|
|
setActiveIndex(index);
|
|
|
|
swiperRef.current?.swipeTo(index);
|
2024-06-24 22:12:13 +08:00
|
|
|
}}
|
|
|
|
>
|
2024-06-25 20:18:37 +08:00
|
|
|
{tabItems.map((item) => (
|
|
|
|
<Tabs.Tab
|
|
|
|
forceRender={false}
|
|
|
|
title={item.title}
|
|
|
|
key={item.key}
|
|
|
|
className="text-left"
|
|
|
|
/>
|
2024-06-24 22:12:13 +08:00
|
|
|
))}
|
|
|
|
</Tabs>
|
2024-06-29 12:07:37 +08:00
|
|
|
<Link href="search" className="w-9 h-9 flex items-center justify-center bg-[#FFFFFF1A] rounded-full"><Image src="/icons/search.png"/></Link>
|
2024-06-25 20:18:37 +08:00
|
|
|
</div>
|
|
|
|
<Swiper
|
|
|
|
className="overflow-visible"
|
|
|
|
direction="horizontal"
|
|
|
|
loop
|
|
|
|
indicator={() => null}
|
|
|
|
ref={swiperRef}
|
|
|
|
defaultIndex={activeIndex}
|
|
|
|
onIndexChange={(index) => {
|
|
|
|
setActiveIndex(index);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Swiper.Item>
|
|
|
|
<PullToRefresh onRefresh={doRefresh}>
|
2024-06-27 18:34:03 +08:00
|
|
|
<List className="px-4 overflow-y-auto scrollbarBox_hidden">
|
|
|
|
<PostItemSkeleton />
|
2024-06-25 20:18:37 +08:00
|
|
|
<List.Item className="!p-0">
|
2024-06-29 12:07:37 +08:00
|
|
|
<PostItem type="post" photos={[
|
2024-06-27 18:34:03 +08:00
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"video"},
|
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"img"},
|
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"img"},
|
|
|
|
]}/>
|
2024-06-25 20:18:37 +08:00
|
|
|
</List.Item>
|
|
|
|
<List.Item className="!p-0">
|
2024-06-29 12:07:37 +08:00
|
|
|
<PostItem type="post" photos={[
|
2024-06-27 18:34:03 +08:00
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"img"},
|
|
|
|
]}/>
|
2024-06-25 20:18:37 +08:00
|
|
|
</List.Item>
|
|
|
|
<List.Item className="!p-0">
|
2024-06-29 12:07:37 +08:00
|
|
|
<PostItem type="post" photos={[
|
2024-06-27 18:34:03 +08:00
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"img"},
|
|
|
|
{url:"https://picsum.photos/seed/picsum/200/300",type:"img"},
|
|
|
|
]}/>
|
2024-06-25 20:18:37 +08:00
|
|
|
</List.Item>
|
|
|
|
<InfiniteScroll loadMore={loadMore} hasMore={hasMore} />
|
|
|
|
</List>
|
|
|
|
</PullToRefresh>
|
|
|
|
</Swiper.Item>
|
|
|
|
<Swiper.Item>
|
2024-06-27 18:34:03 +08:00
|
|
|
<PullToRefresh onRefresh={doRefresh}>
|
2024-06-25 20:18:37 +08:00
|
|
|
<List
|
|
|
|
className="p-2 overflow-y-auto scrollbarBox_hidden"
|
|
|
|
style={{ maxHeight: `${scrollHeight}px` }}
|
|
|
|
>
|
|
|
|
<List.Item className="!p-0">
|
2024-06-29 12:07:37 +08:00
|
|
|
<PostItem follow={true} type="post"/>
|
2024-06-25 20:18:37 +08:00
|
|
|
</List.Item>
|
|
|
|
<InfiniteScroll loadMore={loadMore} hasMore={hasMore} />
|
|
|
|
</List>
|
|
|
|
</PullToRefresh>
|
|
|
|
</Swiper.Item>
|
|
|
|
</Swiper>
|
2024-07-02 15:09:48 +08:00
|
|
|
</div>
|
2024-06-25 20:18:37 +08:00
|
|
|
);
|
2024-06-24 22:12:13 +08:00
|
|
|
}
|