mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-08 15:10:37 +00:00
静态导出
This commit is contained in:
@@ -42,15 +42,6 @@ const CommonHead = ({ meta, children }) => {
|
|||||||
<meta name="twitter:description" content={description} />
|
<meta name="twitter:description" content={description} />
|
||||||
<meta name="twitter:title" content={title} />
|
<meta name="twitter:title" content={title} />
|
||||||
|
|
||||||
{/* 预加载字体 */}
|
|
||||||
{BLOG.FONT_AWESOME && <>
|
|
||||||
<link rel='preload' href={BLOG.FONT_AWESOME} as="style" crossOrigin="anonymous" />
|
|
||||||
<link rel="stylesheet" href={BLOG.FONT_AWESOME} crossOrigin="anonymous" referrerpolicy="no-referrer" />
|
|
||||||
</>}
|
|
||||||
{BLOG.FONT_URL?.map((fontUrl, index) => {
|
|
||||||
return <link key={index} rel='preload' href={fontUrl} as='font' type='font/woff2' />
|
|
||||||
})}
|
|
||||||
|
|
||||||
{BLOG.COMMENT_WEBMENTION.ENABLE && (
|
{BLOG.COMMENT_WEBMENTION.ENABLE && (
|
||||||
<>
|
<>
|
||||||
<link rel="webmention" href={`https://webmention.io/${BLOG.COMMENT_WEBMENTION.HOSTNAME}/webmention`} />
|
<link rel="webmention" href={`https://webmention.io/${BLOG.COMMENT_WEBMENTION.HOSTNAME}/webmention`} />
|
||||||
|
|||||||
@@ -98,6 +98,13 @@ module.exports = withBundleAnalyzer({
|
|||||||
experimental: {
|
experimental: {
|
||||||
scrollRestoration: true
|
scrollRestoration: true
|
||||||
},
|
},
|
||||||
|
// exportPathMap: (defaultPathMap, { dev, dir, outDir, distDir, buildId }) => {
|
||||||
|
// const pathMap = { ...defaultPathMap }
|
||||||
|
// // 忽略/sitemap.xml页面的导出
|
||||||
|
// pathMap['/sitemap.xml'] = { page: false }
|
||||||
|
|
||||||
|
// return pathMap
|
||||||
|
// },
|
||||||
publicRuntimeConfig: { // 这里的配置既可以服务端获取到,也可以在浏览器端获取到
|
publicRuntimeConfig: { // 这里的配置既可以服务端获取到,也可以在浏览器端获取到
|
||||||
NODE_ENV_API: process.env.NODE_ENV_API || 'prod',
|
NODE_ENV_API: process.env.NODE_ENV_API || 'prod',
|
||||||
THEMES: themes
|
THEMES: themes
|
||||||
|
|||||||
122
pages/[prefix]/[slug].js
Normal file
122
pages/[prefix]/[slug].js
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
import BLOG from '@/blog.config'
|
||||||
|
import { getPostBlocks } from '@/lib/notion'
|
||||||
|
import { getGlobalData } from '@/lib/notion/getNotionData'
|
||||||
|
import { idToUuid } from 'notion-utils'
|
||||||
|
import { getNotion } from '@/lib/notion/getNotion'
|
||||||
|
import Slug from '.'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据notion的slug访问页面
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const PrefixSlug = props => {
|
||||||
|
return <Slug {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getStaticPaths() {
|
||||||
|
if (!BLOG.isProd) {
|
||||||
|
return {
|
||||||
|
paths: [],
|
||||||
|
fallback: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const from = 'slug-paths'
|
||||||
|
const { allPages } = await getGlobalData({ from })
|
||||||
|
return {
|
||||||
|
paths: allPages?.filter(row => row.slug.indexOf('/') > 0).map(row => ({ params: { prefix: row.slug.split('/')[0], slug: row.slug.split('/')[1] } })),
|
||||||
|
fallback: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getStaticProps({ params: { prefix, slug } }) {
|
||||||
|
let fullSlug = prefix + '/' + slug
|
||||||
|
if (JSON.parse(BLOG.PSEUDO_STATIC)) {
|
||||||
|
if (!fullSlug.endsWith('.html')) {
|
||||||
|
fullSlug += '.html'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const from = `slug-props-${fullSlug}`
|
||||||
|
const props = await getGlobalData({ from })
|
||||||
|
// 在列表内查找文章
|
||||||
|
props.post = props?.allPages?.find((p) => {
|
||||||
|
return p.slug === fullSlug || p.id === idToUuid(fullSlug)
|
||||||
|
})
|
||||||
|
|
||||||
|
// 处理非列表内文章的内信息
|
||||||
|
if (!props?.post) {
|
||||||
|
const pageId = slug.slice(-1)[0]
|
||||||
|
if (pageId.length >= 32) {
|
||||||
|
const post = await getNotion(pageId)
|
||||||
|
props.post = post
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 无法获取文章
|
||||||
|
if (!props?.post) {
|
||||||
|
props.post = null
|
||||||
|
return { props, revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND) }
|
||||||
|
}
|
||||||
|
|
||||||
|
// 文章内容加载
|
||||||
|
if (!props?.posts?.blockMap) {
|
||||||
|
props.post.blockMap = await getPostBlocks(props.post.id, from)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 推荐关联文章处理
|
||||||
|
const allPosts = props.allPages.filter(page => page.type === 'Post' && page.status === 'Published')
|
||||||
|
if (allPosts && allPosts.length > 0) {
|
||||||
|
const index = allPosts.indexOf(props.post)
|
||||||
|
props.prev = allPosts.slice(index - 1, index)[0] ?? allPosts.slice(-1)[0]
|
||||||
|
props.next = allPosts.slice(index + 1, index + 2)[0] ?? allPosts[0]
|
||||||
|
props.recommendPosts = getRecommendPost(props.post, allPosts, BLOG.POST_RECOMMEND_COUNT)
|
||||||
|
} else {
|
||||||
|
props.prev = null
|
||||||
|
props.next = null
|
||||||
|
props.recommendPosts = []
|
||||||
|
}
|
||||||
|
|
||||||
|
delete props.allPages
|
||||||
|
return {
|
||||||
|
props,
|
||||||
|
revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取文章的关联推荐文章列表,目前根据标签关联性筛选
|
||||||
|
* @param post
|
||||||
|
* @param {*} allPosts
|
||||||
|
* @param {*} count
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
function getRecommendPost(post, allPosts, count = 6) {
|
||||||
|
let recommendPosts = []
|
||||||
|
const postIds = []
|
||||||
|
const currentTags = post?.tags || []
|
||||||
|
for (let i = 0; i < allPosts.length; i++) {
|
||||||
|
const p = allPosts[i]
|
||||||
|
if (p.id === post.id || p.type.indexOf('Post') < 0) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let j = 0; j < currentTags.length; j++) {
|
||||||
|
const t = currentTags[j]
|
||||||
|
if (postIds.indexOf(p.id) > -1) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if (p.tags && p.tags.indexOf(t) > -1) {
|
||||||
|
recommendPosts.push(p)
|
||||||
|
postIds.push(p.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (recommendPosts.length > count) {
|
||||||
|
recommendPosts = recommendPosts.slice(0, count)
|
||||||
|
}
|
||||||
|
return recommendPosts
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PrefixSlug
|
||||||
@@ -89,13 +89,14 @@ export async function getStaticPaths() {
|
|||||||
const from = 'slug-paths'
|
const from = 'slug-paths'
|
||||||
const { allPages } = await getGlobalData({ from })
|
const { allPages } = await getGlobalData({ from })
|
||||||
return {
|
return {
|
||||||
paths: allPages?.map(row => ({ params: { slug: [row.slug] } })),
|
paths: allPages?.filter(row => row.slug.indexOf('/') < 0).map(row => ({ params: { prefix: row.slug } })),
|
||||||
fallback: true
|
fallback: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getStaticProps({ params: { slug } }) {
|
export async function getStaticProps({ params: { prefix } }) {
|
||||||
let fullSlug = slug.join('/')
|
// let fullSlug = slug.join('/')
|
||||||
|
let fullSlug = prefix
|
||||||
if (JSON.parse(BLOG.PSEUDO_STATIC)) {
|
if (JSON.parse(BLOG.PSEUDO_STATIC)) {
|
||||||
if (!fullSlug.endsWith('.html')) {
|
if (!fullSlug.endsWith('.html')) {
|
||||||
fullSlug += '.html'
|
fullSlug += '.html'
|
||||||
@@ -110,7 +111,7 @@ export async function getStaticProps({ params: { slug } }) {
|
|||||||
|
|
||||||
// 处理非列表内文章的内信息
|
// 处理非列表内文章的内信息
|
||||||
if (!props?.post) {
|
if (!props?.post) {
|
||||||
const pageId = slug.slice(-1)[0]
|
const pageId = prefix.slice(-1)[0]
|
||||||
if (pageId.length >= 32) {
|
if (pageId.length >= 32) {
|
||||||
const post = await getNotion(pageId)
|
const post = await getNotion(pageId)
|
||||||
props.post = post
|
props.post = post
|
||||||
@@ -13,8 +13,16 @@ class MyDocument extends Document {
|
|||||||
return (
|
return (
|
||||||
<Html lang={BLOG.LANG}>
|
<Html lang={BLOG.LANG}>
|
||||||
<Head>
|
<Head>
|
||||||
<link rel='icon' href='/favicon.ico' />
|
|
||||||
<CommonScript />
|
<CommonScript />
|
||||||
|
<link rel='icon' href='/favicon.ico' />
|
||||||
|
{/* 预加载字体 */}
|
||||||
|
{BLOG.FONT_AWESOME && <>
|
||||||
|
<link rel='preload' href={BLOG.FONT_AWESOME} as="style" crossOrigin="anonymous" />
|
||||||
|
<link rel="stylesheet" href={BLOG.FONT_AWESOME} crossOrigin="anonymous" referrerpolicy="no-referrer" />
|
||||||
|
</>}
|
||||||
|
{BLOG.FONT_URL?.map((fontUrl, index) => {
|
||||||
|
return <link key={index} rel='preload' href={fontUrl} as='font' type='font/woff2' />
|
||||||
|
})}
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<body className={`${BLOG.FONT_STYLE} font-light scroll-smooth`}>
|
<body className={`${BLOG.FONT_STYLE} font-light scroll-smooth`}>
|
||||||
|
|||||||
Reference in New Issue
Block a user