mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
import { getGlobalData } from '@/lib/notion/getNotionData'
|
|
import { useGlobal } from '@/lib/global'
|
|
import BLOG from '@/blog.config'
|
|
import { useRouter } from 'next/router'
|
|
import { getLayoutByTheme } from '@/themes/theme'
|
|
import { siteConfig } from '@/lib/config'
|
|
|
|
/**
|
|
* 标签首页
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const TagIndex = props => {
|
|
const { locale } = useGlobal()
|
|
const { siteInfo } = props
|
|
|
|
// 根据页面路径加载不同Layout文件
|
|
const Layout = getLayoutByTheme(useRouter())
|
|
|
|
const meta = {
|
|
title: `${locale.COMMON.TAGS} | ${siteConfig('TITLE')}`,
|
|
description: siteConfig('HOME_BANNER_IMAGE'),
|
|
image: siteInfo?.pageCover,
|
|
slug: 'tag',
|
|
type: 'website'
|
|
}
|
|
props = { ...props, meta }
|
|
|
|
return <Layout {...props} />
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
const from = 'tag-index-props'
|
|
const props = await getGlobalData({ from })
|
|
delete props.allPages
|
|
return {
|
|
props,
|
|
revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND)
|
|
}
|
|
}
|
|
|
|
export default TagIndex
|