|
import Link from 'next/link' |
|
import CONFIG from '../config' |
|
import { useGlobal } from '@/lib/global' |
|
import LazyImage from '@/components/LazyImage' |
|
import { siteConfig } from '@/lib/config' |
|
import { checkContainHttp, sliceUrlFromHttp } from '@/lib/utils' |
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function ArticleRecommend({ recommendPosts, siteInfo }) { |
|
const { locale } = useGlobal() |
|
|
|
if ( |
|
!siteConfig('HEO_ARTICLE_RECOMMEND', null, CONFIG) || |
|
!recommendPosts || |
|
recommendPosts.length === 0 |
|
) { |
|
return <></> |
|
} |
|
|
|
return ( |
|
<div className="pt-8 hidden md:block"> |
|
|
|
{/* ζ¨θζη« */} |
|
<div className=" mb-2 px-1 flex flex-nowrap justify-between"> |
|
<div className='dark:text-gray-300 text-lg font-bold'> |
|
<i className="mr-2 fas fa-thumbs-up" /> |
|
{locale.COMMON.RELATE_POSTS} |
|
</div> |
|
</div> |
|
|
|
{/* ζη« ε葨 */} |
|
|
|
<div className="grid grid-cols-2 md:grid-cols-3 gap-4"> |
|
{recommendPosts.map(post => { |
|
const headerImage = post?.pageCoverThumbnail |
|
? post.pageCoverThumbnail |
|
: siteInfo?.pageCover |
|
const url = checkContainHttp(post.slug) ? sliceUrlFromHttp(post.slug) : `${siteConfig('SUB_PATH', '')}/${post.slug}` |
|
|
|
return ( |
|
(<Link |
|
key={post.id} |
|
title={post.title} |
|
href={url} |
|
passHref |
|
className="flex h-40 cursor-pointer overflow-hidden rounded-2xl"> |
|
|
|
<div className="h-full w-full relative group"> |
|
<div className="flex items-center justify-center w-full h-full duration-300 "> |
|
<div className="z-10 text-lg px-4 font-bold text-white text-center shadow-text select-none"> |
|
{post.title} |
|
</div> |
|
</div> |
|
<LazyImage src={headerImage} className='absolute top-0 w-full h-full object-cover object-center group-hover:scale-110 group-hover:brightness-50 transform duration-200'/> |
|
</div> |
|
|
|
</Link>) |
|
) |
|
})} |
|
</div> |
|
</div> |
|
) |
|
} |
|
|