mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
41 lines
886 B
JavaScript
41 lines
886 B
JavaScript
import BLOG from '@/blog.config'
|
|
import { siteConfig } from '@/lib/config'
|
|
import { getGlobalData } from '@/lib/db/getSiteData'
|
|
import { getLayoutByTheme } from '@/themes/theme'
|
|
import { useRouter } from 'next/router'
|
|
|
|
/**
|
|
* 注册
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const SignUp = props => {
|
|
// 根据页面路径加载不同Layout文件
|
|
const Layout = getLayoutByTheme({
|
|
theme: siteConfig('THEME'),
|
|
router: useRouter()
|
|
})
|
|
return <Layout {...props} />
|
|
}
|
|
|
|
export async function getStaticProps(req) {
|
|
const { locale } = req
|
|
|
|
const from = 'SignIn'
|
|
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 SignUp
|