mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
import BLOG from '@/blog.config'
|
|
import { getGlobalData, getPostBlocks } from '@/lib/db/getSiteData'
|
|
import { generateRss } from '@/lib/rss'
|
|
import { generateRobotsTxt } from '@/lib/robots.txt'
|
|
import { getLayoutByTheme } from '@/themes/theme'
|
|
import { siteConfig } from '@/lib/config'
|
|
import { useRouter } from 'next/router'
|
|
|
|
/**
|
|
* 首页布局
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const Index = props => {
|
|
// 根据页面路径加载不同Layout文件
|
|
const Layout = getLayoutByTheme({ theme: siteConfig('THEME'), router: useRouter() })
|
|
return <Layout {...props} />
|
|
}
|
|
|
|
/**
|
|
* SSG 获取数据
|
|
* @returns
|
|
*/
|
|
export async function getStaticProps() {
|
|
const from = 'index'
|
|
const props = await getGlobalData({ from })
|
|
|
|
props.posts = props.allPages?.filter(page => page.type === 'Post' && page.status === 'Published')
|
|
|
|
// 处理分页
|
|
if (BLOG.POST_LIST_STYLE === 'scroll') {
|
|
// 滚动列表默认给前端返回所有数据
|
|
} else if (BLOG.POST_LIST_STYLE === 'page') {
|
|
props.posts = props.posts?.slice(0, BLOG.POSTS_PER_PAGE)
|
|
}
|
|
|
|
// 预览文章内容
|
|
if (BLOG.POST_LIST_PREVIEW === 'true') {
|
|
for (const i in props.posts) {
|
|
const post = props.posts[i]
|
|
if (post.password && post.password !== '') {
|
|
continue
|
|
}
|
|
post.blockMap = await getPostBlocks(post.id, 'slug', BLOG.POST_PREVIEW_LINES)
|
|
}
|
|
}
|
|
|
|
// 生成robotTxt
|
|
generateRobotsTxt()
|
|
// 生成Feed订阅
|
|
if (JSON.parse(BLOG.ENABLE_RSS)) {
|
|
generateRss(props?.latestPosts || [])
|
|
}
|
|
|
|
// 生成全文索引 - 仅在 yarn build 时执行 && process.env.npm_lifecycle_event === 'build'
|
|
|
|
delete props.allPages
|
|
|
|
return {
|
|
props,
|
|
revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND)
|
|
}
|
|
}
|
|
|
|
export default Index
|