mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import { useGlobal } from '@/lib/global'
|
|
import Link from 'next/link'
|
|
import CONFIG from '../config'
|
|
|
|
const MenuGroupCard = props => {
|
|
const { postCount, categoryOptions, tagOptions } = props
|
|
const { locale } = useGlobal()
|
|
const archiveSlot = <div className='text-center'>{postCount}</div>
|
|
const categorySlot = (
|
|
<div className='text-center'>{categoryOptions?.length}</div>
|
|
)
|
|
const tagSlot = <div className='text-center'>{tagOptions?.length}</div>
|
|
|
|
const links = [
|
|
{
|
|
name: locale.COMMON.ARTICLE,
|
|
href: '/archive',
|
|
slot: archiveSlot,
|
|
show: siteConfig('HEXO_MENU_ARCHIVE', null, CONFIG)
|
|
},
|
|
{
|
|
name: locale.COMMON.CATEGORY,
|
|
href: '/category',
|
|
slot: categorySlot,
|
|
show: siteConfig('HEXO_MENU_CATEGORY', null, CONFIG)
|
|
},
|
|
{
|
|
name: locale.COMMON.TAGS,
|
|
href: '/tag',
|
|
slot: tagSlot,
|
|
show: siteConfig('HEXO_MENU_TAG', null, CONFIG)
|
|
}
|
|
]
|
|
|
|
for (let i = 0; i < links.length; i++) {
|
|
if (links[i].id !== i) {
|
|
links[i].id = i
|
|
}
|
|
}
|
|
|
|
return (
|
|
<nav
|
|
id='nav'
|
|
className='leading-8 flex justify-center dark:text-gray-200 w-full'>
|
|
{links.map(link => {
|
|
if (link.show) {
|
|
return (
|
|
<Link
|
|
key={`${link.href}`}
|
|
title={link.href}
|
|
href={link.href}
|
|
target={link?.target}
|
|
className={
|
|
'py-1.5 my-1 px-2 duration-300 text-base justify-center items-center cursor-pointer'
|
|
}>
|
|
<div className='w-full items-center justify-center hover:scale-105 duration-200 transform dark:hover:text-indigo-400 hover:text-indigo-600'>
|
|
<div className='text-center'>{link.name}</div>
|
|
<div className='text-center font-semibold'>{link.slot}</div>
|
|
</div>
|
|
</Link>
|
|
)
|
|
} else {
|
|
return null
|
|
}
|
|
})}
|
|
</nav>
|
|
)
|
|
}
|
|
export default MenuGroupCard
|