mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-29 07:26:46 +00:00
Notion-Auth
This commit is contained in:
33
pages/auth/result.js
Normal file
33
pages/auth/result.js
Normal file
@@ -0,0 +1,33 @@
|
||||
// pages/sitemap.xml.js
|
||||
import { getGlobalData } from '@/lib/db/getSiteData'
|
||||
import { useRouter } from 'next/router'
|
||||
import Slug from '../[prefix]'
|
||||
|
||||
/**
|
||||
/**
|
||||
* 服务端接收参数处理
|
||||
* @param {*} ctx
|
||||
* @returns
|
||||
*/
|
||||
export const getServerSideProps = async ctx => {
|
||||
const from = `auth`
|
||||
const props = await getGlobalData({ from })
|
||||
|
||||
delete props.allPages
|
||||
return {
|
||||
props
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据notion的slug访问页面
|
||||
* 解析二级目录 /article/about
|
||||
* @param {*} props
|
||||
* @returns
|
||||
*/
|
||||
const UI = props => {
|
||||
const router = useRouter()
|
||||
return <Slug {...props} msg={router?.query?.msg} title={'授权结果'} />
|
||||
}
|
||||
|
||||
export default UI
|
||||
Reference in New Issue
Block a user