mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
- Add `checkDataFromAlgolia` function to identify and delete unused data - Implement `deletePostDataFromAlgolia` helper function - Execute Algolia data check during homepage generation - Handle password-protected and draft pages deletion Fixes 1526
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
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 { checkDataFromAlgolia } from '@/lib/plugins/algolia'
|
|
|
|
/**
|
|
* 首页布局
|
|
* @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)
|
|
// 检查数据是否需要从algolia删除
|
|
checkDataFromAlgolia(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
|