forked from tangly1024/NotionNext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
88 lines (78 loc) · 2.49 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import BLOG from '@/blog.config'
import { siteConfig } from '@/lib/config'
import { getGlobalData, getPostBlocks } from '@/lib/db/getSiteData'
import { generateRobotsTxt } from '@/lib/robots.txt'
import { generateRss } from '@/lib/rss'
import { generateSitemapXml } from '@/lib/sitemap.xml'
import { DynamicLayout } from '@/themes/theme'
import { generateRedirectJson } from '@/lib/redirect'
import { SpeedInsights } from "@vercel/speed-insights/next" //2024年2月9日 加入Vercel的Speed Insights,用于优化网站加载速度
import { Analytics } from "@vercel/analytics/react" //2024年2月9日 加入Vercel的Analytics,用于统计网站访问数据
/**
* 首页布局
* @param {*} props
* @returns
*/
const Index = props => {
const theme = siteConfig('THEME', BLOG.THEME, props.NOTION_CONFIG)
return <DynamicLayout theme={theme} layoutName='LayoutIndex' {...props} />
}
/**
* SSG 获取数据
* @returns
*/
export async function getStaticProps(req) {
const { locale } = req
const from = 'index'
const props = await getGlobalData({ from, locale })
const POST_PREVIEW_LINES = siteConfig(
'POST_PREVIEW_LINES',
12,
props?.NOTION_CONFIG
)
props.posts = props.allPages?.filter(
page => page.type === 'Post' && page.status === 'Published'
)
// 处理分页
if (siteConfig('POST_LIST_STYLE') === 'scroll') {
// 滚动列表默认给前端返回所有数据
} else if (siteConfig('POST_LIST_STYLE') === 'page') {
props.posts = props.posts?.slice(
0,
siteConfig('POSTS_PER_PAGE', 12, props?.NOTION_CONFIG)
)
}
// 预览文章内容
if (siteConfig('POST_LIST_PREVIEW', false, props?.NOTION_CONFIG)) {
for (const i in props.posts) {
const post = props.posts[i]
if (post.password && post.password !== '') {
continue
}
post.blockMap = await getPostBlocks(post.id, 'slug', POST_PREVIEW_LINES)
}
}
// 生成robotTxt
generateRobotsTxt(props)
// 生成Feed订阅
generateRss(props)
// 生成
generateSitemapXml(props)
if (siteConfig('UUID_REDIRECT', false, props?.NOTION_CONFIG)) {
// 生成重定向 JSON
generateRedirectJson(props)
}
// 生成全文索引 - 仅在 yarn build 时执行 && process.env.npm_lifecycle_event === 'build'
delete props.allPages
return {
props,
revalidate: process.env.EXPORT
? undefined
: siteConfig(
'NEXT_REVALIDATE_SECOND',
BLOG.NEXT_REVALIDATE_SECOND,
props.NOTION_CONFIG
)
}
}
export default Index