Files
NotionNext/pages/category/index.js
tangly1024.com 5ccf8823a6 整理修改
2023-11-02 14:10:46 +08:00

41 lines
1.1 KiB
JavaScript

import { getGlobalData } from '@/lib/notion/getNotionData'
import React from 'react'
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
*/
export default function Category(props) {
const { locale } = useGlobal()
const { siteInfo } = props
// 根据页面路径加载不同Layout文件
const Layout = getLayoutByTheme({ theme: siteConfig('THEME'), router: useRouter() })
const meta = {
title: `${locale.COMMON.CATEGORY} | ${siteConfig('TITLE')}`,
description: siteConfig('HOME_BANNER_IMAGE'),
image: siteInfo?.pageCover,
slug: 'category',
type: 'website'
}
props = { ...props, meta }
return <Layout {...props} />
}
export async function getStaticProps() {
const props = await getGlobalData({ from: 'category-index-props' })
delete props.allPages
return {
props,
revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND)
}
}