mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
37 lines
903 B
JavaScript
37 lines
903 B
JavaScript
import BLOG from '@/blog.config'
|
|
import { siteConfig } from '@/lib/config'
|
|
import { getGlobalData } from '@/lib/db/getSiteData'
|
|
import { DynamicLayout } from '@/themes/theme'
|
|
import { useRouter } from 'next/router'
|
|
|
|
/**
|
|
* 标签首页
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const TagIndex = props => {
|
|
const router = useRouter()
|
|
const theme = siteConfig('THEME', BLOG.THEME, props.NOTION_CONFIG)
|
|
return <DynamicLayout theme={theme} layoutName='LayoutPostList' {...props} />
|
|
}
|
|
|
|
export async function getStaticProps(req) {
|
|
const { locale } = req
|
|
|
|
const from = 'tag-index-props'
|
|
const props = await getGlobalData({ from, locale })
|
|
delete props.allPages
|
|
return {
|
|
props,
|
|
revalidate: process.env.EXPORT
|
|
? undefined
|
|
: siteConfig(
|
|
'NEXT_REVALIDATE_SECOND',
|
|
BLOG.NEXT_REVALIDATE_SECOND,
|
|
props.NOTION_CONFIG
|
|
)
|
|
}
|
|
}
|
|
|
|
export default TagIndex
|