mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 15:09:28 +00:00
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
import LazyImage from '@/components/LazyImage'
|
|
import NotionIcon from '@/components/NotionIcon'
|
|
import { siteConfig } from '@/lib/config'
|
|
import { useGlobal } from '@/lib/global'
|
|
import { formatDateFmt } from '@/lib/utils/formatDate'
|
|
import Link from 'next/link'
|
|
|
|
/**
|
|
* 普通的博客卡牌
|
|
* 带封面图
|
|
*/
|
|
const PostItemCard = ({ post, className }) => {
|
|
const { siteInfo } = useGlobal()
|
|
const cover = post?.pageCoverThumbnail || siteInfo?.pageCover
|
|
return (
|
|
<div key={post?.id} className={className}>
|
|
<div className='space-y-3 relative justify-center items-center text-gray-500'>
|
|
<div className='h-full overflow-hidden'>
|
|
<LazyImage
|
|
alt={post?.title}
|
|
src={cover}
|
|
style={cover ? {} : { height: '0px' }}
|
|
className='h-full max-h-[70vh] object-cover select-none pointer-events-none'
|
|
/>
|
|
</div>
|
|
|
|
<div className='text-center'>
|
|
<Link
|
|
href={post?.href}
|
|
passHref
|
|
className={
|
|
'cursor-pointer hover:underline leading-tight dark:text-gray-300 '
|
|
}>
|
|
<h2 className='select-none pointer-events-none'>
|
|
{siteConfig('POST_TITLE_ICON') && (
|
|
<NotionIcon icon={post?.pageIcon} />
|
|
)}
|
|
{post?.title}
|
|
</h2>
|
|
</Link>
|
|
|
|
{/* 发布日期 */}
|
|
<Link
|
|
className='text-sm'
|
|
href={`/archive#${formatDateFmt(post?.publishDate, 'yyyy-MM')}`}
|
|
passHref>
|
|
{formatDateFmt(post?.publishDate, 'yyyy-MM')}
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default PostItemCard
|