mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-17 15:09:31 +00:00
427 lines
12 KiB
JavaScript
427 lines
12 KiB
JavaScript
import Comment from '@/components/Comment'
|
||
import { AdSlot } from '@/components/GoogleAdsense'
|
||
import Live2D from '@/components/Live2D'
|
||
import replaceSearchResult from '@/components/Mark'
|
||
import NotionPage from '@/components/NotionPage'
|
||
import ShareBar from '@/components/ShareBar'
|
||
import WWAds from '@/components/WWAds'
|
||
import { siteConfig } from '@/lib/config'
|
||
import { useGlobal } from '@/lib/global'
|
||
import { loadWowJS } from '@/lib/plugins/wow'
|
||
import { isBrowser } from '@/lib/utils'
|
||
import dynamic from 'next/dynamic'
|
||
import Link from 'next/link'
|
||
import { useRouter } from 'next/router'
|
||
import { createContext, useContext, useEffect, useRef } from 'react'
|
||
import Announcement from './components/Announcement'
|
||
import ArticleAdjacent from './components/ArticleAdjacent'
|
||
import ArticleCopyright from './components/ArticleCopyright'
|
||
import { ArticleInfo } from './components/ArticleInfo'
|
||
import { ArticleLock } from './components/ArticleLock'
|
||
import BlogListBar from './components/BlogListBar'
|
||
import BlogPostArchive from './components/BlogPostArchive'
|
||
import BlogPostListPage from './components/BlogPostListPage'
|
||
import BlogPostListScroll from './components/BlogPostListScroll'
|
||
import Card from './components/Card'
|
||
import CatalogWrapper from './components/CatalogWrapper'
|
||
import Footer from './components/Footer'
|
||
import Header from './components/Header'
|
||
import Hero from './components/Hero'
|
||
import JumpToCommentButton from './components/JumpToCommentButton'
|
||
import PostHero from './components/PostHero'
|
||
import RightFloatButtons from './components/RightFloatButtons'
|
||
import SearchNave from './components/SearchNav'
|
||
import TagItemMiddle from './components/TagItemMiddle'
|
||
import CONFIG from './config'
|
||
import { Style } from './style'
|
||
|
||
const AlgoliaSearchModal = dynamic(
|
||
() => import('@/components/AlgoliaSearchModal'),
|
||
{ ssr: false }
|
||
)
|
||
|
||
// 主题全局状态
|
||
const ThemeGlobalMatery = createContext()
|
||
export const useMateryGlobal = () => useContext(ThemeGlobalMatery)
|
||
|
||
/**
|
||
* 基础布局
|
||
* 采用左右两侧布局,移动端使用顶部导航栏
|
||
* @param props
|
||
* @returns {JSX.Element}
|
||
* @constructor
|
||
*/
|
||
const LayoutBase = props => {
|
||
const { children, post } = props
|
||
const { fullWidth } = useGlobal()
|
||
const router = useRouter()
|
||
// 加载wow动画
|
||
useEffect(() => {
|
||
loadWowJS()
|
||
}, [])
|
||
const containerSlot =
|
||
router.route === '/' ? (
|
||
<Announcement {...props} />
|
||
) : (
|
||
<BlogListBar {...props} />
|
||
)
|
||
const headerSlot =
|
||
siteConfig('MATERY_HOME_BANNER_ENABLE', null, CONFIG) &&
|
||
router.route === '/' ? (
|
||
<Hero {...props} />
|
||
) : post && !fullWidth ? (
|
||
<PostHero {...props} />
|
||
) : null
|
||
|
||
const floatRightBottom = post ? <JumpToCommentButton /> : null
|
||
|
||
// Algolia搜索框
|
||
const searchModal = useRef(null)
|
||
|
||
return (
|
||
<ThemeGlobalMatery.Provider value={{ searchModal }}>
|
||
<div
|
||
id='theme-matery'
|
||
className={`${siteConfig('FONT_STYLE')} min-h-screen flex flex-col justify-between bg-hexo-background-gray dark:bg-black w-full scroll-smooth`}>
|
||
<Style />
|
||
|
||
{/* 顶部导航栏 */}
|
||
<Header {...props} />
|
||
|
||
{/* 顶部嵌入 */}
|
||
{headerSlot}
|
||
|
||
<main
|
||
id='wrapper'
|
||
className={`${siteConfig('MATERY_HOME_BANNER_ENABLE', null, CONFIG) ? '' : 'pt-16'} flex-1 w-full py-8 md:px-8 lg:px-24 relative`}>
|
||
{/* 嵌入区域 */}
|
||
<div
|
||
id='container-slot'
|
||
className={`w-full ${fullWidth ? '' : 'max-w-6xl'} ${post && ' lg:max-w-3xl 2xl:max-w-4xl '} mt-6 px-3 mx-auto lg:flex lg:space-x-4 justify-center relative z-10`}>
|
||
{containerSlot}
|
||
</div>
|
||
|
||
<div
|
||
id='container-inner'
|
||
className={`w-full min-h-fit ${fullWidth ? '' : 'max-w-6xl'} mx-auto lg:flex lg:space-x-4 justify-center relative z-10`}>
|
||
{children}
|
||
</div>
|
||
</main>
|
||
|
||
{/* 左下角悬浮 */}
|
||
<div className='bottom-4 -left-14 fixed justify-end z-40'>
|
||
<Live2D />
|
||
</div>
|
||
|
||
{/* 右下角悬浮 */}
|
||
<RightFloatButtons {...props} floatRightBottom={floatRightBottom} />
|
||
|
||
{/* 全文搜索 */}
|
||
<AlgoliaSearchModal cRef={searchModal} {...props} />
|
||
|
||
{/* 页脚 */}
|
||
<Footer title={siteConfig('TITLE')} />
|
||
</div>
|
||
</ThemeGlobalMatery.Provider>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 首页
|
||
* 首页就是一个文章列表,但是嵌入了Hero大图和公告
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutIndex = props => {
|
||
return <LayoutPostList {...props} />
|
||
}
|
||
|
||
/**
|
||
* 博客列表
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutPostList = props => {
|
||
return (
|
||
<>
|
||
{siteConfig('POST_LIST_STYLE') === 'page' ? (
|
||
<BlogPostListPage {...props} />
|
||
) : (
|
||
<BlogPostListScroll {...props} />
|
||
)}
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 搜搜
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutSearch = props => {
|
||
const { keyword } = props
|
||
const router = useRouter()
|
||
const currentSearch = keyword || router?.query?.s
|
||
|
||
useEffect(() => {
|
||
if (currentSearch) {
|
||
replaceSearchResult({
|
||
doms: document.getElementsByClassName('replace'),
|
||
search: keyword,
|
||
target: {
|
||
element: 'span',
|
||
className: 'text-red-500 border-b border-dashed'
|
||
}
|
||
})
|
||
}
|
||
})
|
||
return (
|
||
<>
|
||
{!currentSearch ? (
|
||
<SearchNave {...props} />
|
||
) : (
|
||
<div id='posts-wrapper'>
|
||
{siteConfig('POST_LIST_STYLE') === 'page' ? (
|
||
<BlogPostListPage {...props} />
|
||
) : (
|
||
<BlogPostListScroll {...props} />
|
||
)}
|
||
</div>
|
||
)}
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 归档
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutArchive = props => {
|
||
const { archivePosts } = props
|
||
return (
|
||
<>
|
||
<Card className='w-full -mt-32'>
|
||
<div className='mb-10 pb-20 bg-white md:p-12 p-3 min-h-full dark:bg-hexo-black-gray'>
|
||
{Object.keys(archivePosts).map(archiveTitle => (
|
||
<BlogPostArchive
|
||
key={archiveTitle}
|
||
posts={archivePosts[archiveTitle]}
|
||
archiveTitle={archiveTitle}
|
||
/>
|
||
))}
|
||
</div>
|
||
</Card>
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 文章详情页
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutSlug = props => {
|
||
const { post, lock, validPassword } = props
|
||
const { fullWidth } = useGlobal()
|
||
const router = useRouter()
|
||
useEffect(() => {
|
||
// 404
|
||
if (!post) {
|
||
setTimeout(
|
||
() => {
|
||
if (isBrowser) {
|
||
const article = document.getElementById('notion-article')
|
||
if (!article) {
|
||
router.push('/404').then(() => {
|
||
console.warn('找不到页面', router.asPath)
|
||
})
|
||
}
|
||
}
|
||
},
|
||
siteConfig('POST_WAITING_TIME_FOR_404') * 1000
|
||
)
|
||
}
|
||
}, [post])
|
||
return (
|
||
<>
|
||
<div
|
||
id='inner-wrapper'
|
||
className={`w-full ${fullWidth ? '' : 'lg:max-w-3xl 2xl:max-w-4xl'}`}>
|
||
{/* 文章主体 */}
|
||
<div
|
||
className={`${fullWidth ? '' : '-mt-32'} transition-all duration-300 rounded-md mx-3 lg:border lg:rounded-xl lg:py-4 bg-white dark:bg-hexo-black-gray dark:border-black`}>
|
||
{lock && <ArticleLock validPassword={validPassword} />}
|
||
|
||
{!lock && (
|
||
<div
|
||
id='article-wrapper'
|
||
className='overflow-x-auto md:w-full px-3 '>
|
||
{/* 文章信息 */}
|
||
{post?.type && post?.type === 'Post' && (
|
||
<>
|
||
<div data-wow-delay='.2s' className='wow fadeInUp px-10'>
|
||
<ArticleInfo post={post} />
|
||
</div>
|
||
<hr />
|
||
</>
|
||
)}
|
||
|
||
<div className='lg:px-10 subpixel-antialiased'>
|
||
<article itemScope>
|
||
{/* Notion文章主体 */}
|
||
<section
|
||
data-wow-delay='.1s'
|
||
className={`wow fadeInUp justify-center mx-auto ${fullWidth ? '' : 'max-w-2xl lg:max-w-full'}`}>
|
||
<WWAds orientation='horizontal' />
|
||
{post && <NotionPage post={post} />}
|
||
<AdSlot />
|
||
</section>
|
||
|
||
{/* 分享 */}
|
||
<ShareBar post={post} />
|
||
|
||
{/* 版权说明 */}
|
||
{post?.type === 'Post' && <ArticleCopyright {...props} />}
|
||
</article>
|
||
|
||
<hr className='border-dashed' />
|
||
|
||
{/* 评论互动 */}
|
||
<div className='overflow-x-auto dark:bg-hexo-black-gray px-3'>
|
||
<WWAds orientation='horizontal' />
|
||
<Comment frontMatter={post} />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
{/* 底部文章推荐 */}
|
||
{post?.type === 'Post' && <ArticleAdjacent {...props} />}
|
||
|
||
{/* 底部公告 */}
|
||
<Announcement {...props} />
|
||
|
||
{/* 右侧文章目录 */}
|
||
<CatalogWrapper post={post} />
|
||
</div>
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 404
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const Layout404 = props => {
|
||
const router = useRouter()
|
||
useEffect(() => {
|
||
// 延时3秒如果加载失败就返回首页
|
||
setTimeout(() => {
|
||
const article =
|
||
typeof document !== 'undefined' &&
|
||
document.getElementById('notion-article')
|
||
if (!article) {
|
||
router.push('/').then(() => {
|
||
// console.log('找不到页面', router.asPath)
|
||
})
|
||
}
|
||
}, 3000)
|
||
})
|
||
return (
|
||
<>
|
||
<div className='text-black w-full h-screen text-center justify-center content-center items-center flex flex-col'>
|
||
<div className='dark:text-gray-200'>
|
||
<h2 className='inline-block border-r-2 border-gray-600 mr-2 px-3 py-2 align-top'>
|
||
404
|
||
</h2>
|
||
<div className='inline-block text-left h-32 leading-10 items-center'>
|
||
<h2 className='m-0 p-0'>页面未找到</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 分类列表
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutCategoryIndex = props => {
|
||
const { categoryOptions } = props
|
||
|
||
return (
|
||
<>
|
||
<div id='inner-wrapper' className='w-full'>
|
||
<div className='drop-shadow-xl -mt-32 rounded-md mx-3 px-5 lg:border lg:rounded-xl lg:px-2 lg:py-4 bg-white dark:bg-hexo-black-gray dark:border-black dark:text-gray-300'>
|
||
<div className='flex justify-center flex-wrap'>
|
||
{categoryOptions?.map(e => {
|
||
return (
|
||
<Link
|
||
key={e.name}
|
||
href={`/category/${e.name}`}
|
||
passHref
|
||
legacyBehavior>
|
||
<div className='duration-300 text-md whitespace-nowrap dark:hover:text-white px-5 cursor-pointer py-2 hover:text-indigo-400'>
|
||
<i className={'mr-4 fas fa-folder'} /> {e.name}({e.count})
|
||
</div>
|
||
</Link>
|
||
)
|
||
})}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
)
|
||
}
|
||
|
||
/**
|
||
* 标签列表
|
||
* @param {*} props
|
||
* @returns
|
||
*/
|
||
const LayoutTagIndex = props => {
|
||
const { tagOptions } = props
|
||
const { locale } = useGlobal()
|
||
return (
|
||
<>
|
||
<div id='inner-wrapper' className='w-full drop-shadow-xl'>
|
||
<div className='-mt-32 rounded-md mx-3 px-5 lg:border lg:rounded-xl lg:px-2 lg:py-4 bg-white dark:bg-hexo-black-gray dark:border-black'>
|
||
<div className='dark:text-gray-200 py-5 text-center text-2xl'>
|
||
<i className='fas fa-tags' /> {locale.COMMON.TAGS}
|
||
</div>
|
||
|
||
<div
|
||
id='tags-list'
|
||
className='duration-200 flex flex-wrap justify-center pb-12'>
|
||
{tagOptions.map(tag => {
|
||
return (
|
||
<div key={tag.name} className='p-2'>
|
||
<TagItemMiddle key={tag.name} tag={tag} />
|
||
</div>
|
||
)
|
||
})}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
)
|
||
}
|
||
|
||
export {
|
||
Layout404,
|
||
LayoutArchive,
|
||
LayoutBase,
|
||
LayoutCategoryIndex,
|
||
LayoutIndex,
|
||
LayoutPostList,
|
||
LayoutSearch,
|
||
LayoutSlug,
|
||
LayoutTagIndex,
|
||
CONFIG as THEME_CONFIG
|
||
}
|