mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
import Link from 'next/link'
|
|
import { useGlobal } from '@/lib/global'
|
|
import formatDate from '@/lib/formatDate'
|
|
|
|
export const ArticleInfo = (props) => {
|
|
const { post } = props
|
|
|
|
const { locale } = useGlobal()
|
|
const date = formatDate(post?.date?.start_date || post?.createdTime, locale.LOCALE)
|
|
|
|
return (
|
|
<section className="flex-wrap flex mt-2 text-gray-400 dark:text-gray-400 font-light leading-8">
|
|
<div>
|
|
{post?.type !== 'Page' && <>
|
|
<Link
|
|
href={`/category/${post.category}`}
|
|
passHref
|
|
className="cursor-pointer text-md mr-2 hover:text-black dark:hover:text-white border-b dark:border-gray-500 border-dashed">
|
|
|
|
<i className="mr-1 fas fa-folder-open" />
|
|
{post.category}
|
|
|
|
</Link>
|
|
<span className='mr-2'>|</span>
|
|
</>}
|
|
|
|
{post?.type !== 'Page' && (<>
|
|
<Link
|
|
href={`/archive#${post?.date?.start_date?.substr(0, 7)}`}
|
|
passHref
|
|
className="pl-1 mr-2 cursor-pointer hover:text-gray-700 dark:hover:text-gray-200 border-b dark:border-gray-500 border-dashed">
|
|
|
|
{date}
|
|
|
|
</Link>
|
|
<span className='mr-2'>|</span>
|
|
<span className='mx-2 text-gray-400 dark:text-gray-500'>
|
|
{locale.COMMON.LAST_EDITED_TIME}: {post.lastEditedTime}
|
|
</span>
|
|
<span className='mr-2'>|</span>
|
|
<span className="hidden busuanzi_container_page_pv font-light mr-2">
|
|
<i className='mr-1 fas fa-eye' />
|
|
|
|
<span className="mr-2 busuanzi_value_page_pv" />
|
|
</span>
|
|
</>)}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
);
|
|
}
|