mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import { useGlobal } from '@/lib/global'
|
|
import CONFIG from '../config'
|
|
import BlogPostCard from './BlogPostCard'
|
|
import BlogPostListEmpty from './BlogPostListEmpty'
|
|
import PaginationNumber from './PaginationNumber'
|
|
|
|
/**
|
|
* 文章列表分页表格
|
|
* @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
|
|
const POST_TWO_COLS = siteConfig('HEO_HOME_POST_TWO_COLS', true, CONFIG)
|
|
if (!posts || posts.length === 0 || page > totalPage) {
|
|
return <BlogPostListEmpty />
|
|
} else {
|
|
return (
|
|
<div id='container' className='w-full'>
|
|
{/* 文章列表 */}
|
|
<div
|
|
className={`${POST_TWO_COLS && '2xl:grid 2xl:grid-cols-2'} grid-cols-1 gap-5`}>
|
|
{posts?.map(post => (
|
|
<BlogPostCard
|
|
index={posts.indexOf(post)}
|
|
key={post.id}
|
|
post={post}
|
|
siteInfo={siteInfo}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
{showPagination && (
|
|
<PaginationNumber page={page} totalPage={totalPage} />
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default BlogPostListPage
|