Files
NotionNext/pages/archive/index.js
2022-10-20 13:01:32 +08:00

34 lines
927 B
JavaScript

import { getGlobalNotionData } from '@/lib/notion/getNotionData'
import React from 'react'
import { useGlobal } from '@/lib/global'
import * as ThemeMap from '@/themes'
const ArchiveIndex = props => {
const { theme, locale } = useGlobal()
const ThemeComponents = ThemeMap[theme]
const { siteInfo } = props
const meta = {
title: `${locale.NAV.ARCHIVE} | ${siteInfo?.title}`,
description: siteInfo?.description,
image: siteInfo?.pageCover,
slug: 'archive',
type: 'website'
}
return <ThemeComponents.LayoutArchive {...props} meta={meta} />
}
export async function getStaticProps() {
const props = await getGlobalNotionData({ from: 'archive-index' })
const { allPages } = props
const allPosts = allPages.filter(page => page.type === 'Post' && page.status === 'Published')
// 处理分页
props.posts = allPosts
return {
props,
revalidate: 1
}
}
export default ArchiveIndex