mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import { useGlobal } from '@/lib/global'
|
|
import BlogPostListEmpty from './BlogPostListEmpty'
|
|
import PaginationNumber from './PaginationNumber'
|
|
import ProductCard from './ProductCard'
|
|
|
|
/**
|
|
* 文章列表分页表格
|
|
* @param page 当前页
|
|
* @param posts 所有文章
|
|
* @param tags 所有标签
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
const BlogPostListPage = ({ page = 1, posts = [], postCount, siteInfo }) => {
|
|
const { NOTION_CONFIG } = useGlobal()
|
|
const POSTS_PER_PAGE = siteConfig('POSTS_PER_PAGE', 12, NOTION_CONFIG)
|
|
const totalPage = Math.ceil(postCount / POSTS_PER_PAGE)
|
|
const showPagination = postCount >= POSTS_PER_PAGE
|
|
if (!posts || posts.length === 0 || page > totalPage) {
|
|
return <BlogPostListEmpty />
|
|
} else {
|
|
return (
|
|
<div id='container' className='w-full'>
|
|
{/* 文章列表 */}
|
|
<div className='py-4 gap-4 grid grid-cols-3'>
|
|
{posts?.map(post => (
|
|
<ProductCard
|
|
index={posts.indexOf(post)}
|
|
key={post.id}
|
|
post={post}
|
|
siteInfo={siteInfo}
|
|
/>
|
|
))}
|
|
</div>
|
|
{showPagination && (
|
|
<PaginationNumber page={page} totalPage={totalPage} />
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default BlogPostListPage
|