mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import PostCard from 'components/pages/blog/post-card';
|
|
import PostCardLoading from 'components/pages/blog/post-card-loading';
|
|
import Pagination from 'components/rua/rua-pagination';
|
|
import { PostPerPage, getPostListPath, postLists } from 'lib/posts';
|
|
import { notFound } from 'next/navigation';
|
|
import { Fragment, Suspense } from 'react';
|
|
|
|
export async function generateStaticParams() {
|
|
return await getPostListPath();
|
|
}
|
|
|
|
export default async function Page({
|
|
params,
|
|
}: {
|
|
params: Promise<{ page: string }>;
|
|
}) {
|
|
const { page: pageNumber } = await params;
|
|
const page = Number(pageNumber);
|
|
if (!page) notFound();
|
|
|
|
const allPosts = await postLists();
|
|
const posts = allPosts.slice((page - 1) * PostPerPage, PostPerPage * page);
|
|
const prev = page - 1;
|
|
const next = page + 1;
|
|
const total = Math.ceil(allPosts.length / PostPerPage);
|
|
|
|
return (
|
|
<>
|
|
{posts.map((post) => (
|
|
<Fragment key={post.slug}>
|
|
<Suspense fallback={<PostCardLoading />}>
|
|
<PostCard post={post} />
|
|
</Suspense>
|
|
</Fragment>
|
|
))}
|
|
|
|
<Pagination
|
|
className="py-6 mt-4 px-7 lg:px-5"
|
|
hasPrev={!!prev}
|
|
hasNext={next <= total}
|
|
prevLink={prev === 1 ? '/blog' : `/blog/${prev}`}
|
|
nextLink={`/blog/${next}`}
|
|
current={next - 1}
|
|
total={total}
|
|
/>
|
|
</>
|
|
);
|
|
}
|