mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-29 23:16:51 +00:00
refactor-hexo
This commit is contained in:
@@ -1,33 +0,0 @@
|
|||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import { useRouter } from 'next/router'
|
|
||||||
import { useEffect } from 'react'
|
|
||||||
|
|
||||||
export 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 (
|
|
||||||
<LayoutBase {...props}>
|
|
||||||
<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>
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
export default Layout404
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
import { useEffect } from 'react'
|
|
||||||
import BlogPostArchive from './components/BlogPostArchive'
|
|
||||||
import Card from './components/Card'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
|
|
||||||
export const LayoutArchive = (props) => {
|
|
||||||
const { archivePosts } = props
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const anchor = window.location.hash
|
|
||||||
if (anchor) {
|
|
||||||
setTimeout(() => {
|
|
||||||
const anchorElement = document.getElementById(anchor.substring(1))
|
|
||||||
if (anchorElement) {
|
|
||||||
anchorElement.scrollIntoView({ block: 'start', behavior: 'smooth' })
|
|
||||||
}
|
|
||||||
}, 300)
|
|
||||||
}
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
return <LayoutBase {...props} className='pt-8'>
|
|
||||||
<Card className='w-full'>
|
|
||||||
<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>
|
|
||||||
</LayoutBase>
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutArchive
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
import CommonHead from '@/components/CommonHead'
|
|
||||||
import { useCallback, useEffect, useState } from 'react'
|
|
||||||
import throttle from 'lodash.throttle'
|
|
||||||
import Footer from './components/Footer'
|
|
||||||
import JumpToTopButton from './components/JumpToTopButton'
|
|
||||||
import SideRight from './components/SideRight'
|
|
||||||
import TopNav from './components/TopNav'
|
|
||||||
import FloatDarkModeButton from './components/FloatDarkModeButton'
|
|
||||||
import Live2D from '@/components/Live2D'
|
|
||||||
import LoadingCover from './components/LoadingCover'
|
|
||||||
import { useGlobal } from '@/lib/global'
|
|
||||||
import BLOG from '@/blog.config'
|
|
||||||
import dynamic from 'next/dynamic'
|
|
||||||
import { isBrowser, loadExternalResource } from '@/lib/utils'
|
|
||||||
import CONFIG_HEXO from './config_hexo'
|
|
||||||
|
|
||||||
const FacebookPage = dynamic(
|
|
||||||
() => {
|
|
||||||
let facebook = <></>
|
|
||||||
try {
|
|
||||||
facebook = import('@/components/FacebookPage')
|
|
||||||
} catch (err) {
|
|
||||||
console.error(err)
|
|
||||||
}
|
|
||||||
return facebook
|
|
||||||
},
|
|
||||||
{ ssr: false }
|
|
||||||
)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 基础布局 采用左右两侧布局,移动端使用顶部导航栏
|
|
||||||
* @param props
|
|
||||||
* @returns {JSX.Element}
|
|
||||||
* @constructor
|
|
||||||
*/
|
|
||||||
const LayoutBase = props => {
|
|
||||||
const { children, headerSlot, floatSlot, meta, siteInfo } = props
|
|
||||||
const [showFloatButton, switchShow] = useState(false)
|
|
||||||
// const [percent, changePercent] = useState(0) // 页面阅读百分比
|
|
||||||
const rightAreaSlot = (
|
|
||||||
<>
|
|
||||||
<FacebookPage />
|
|
||||||
<Live2D />
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
const { onLoading } = useGlobal()
|
|
||||||
const throttleMs = 200
|
|
||||||
const scrollListener = useCallback(throttle(() => {
|
|
||||||
const targetRef = document.getElementById('wrapper')
|
|
||||||
const clientHeight = targetRef?.clientHeight
|
|
||||||
const scrollY = window.pageYOffset
|
|
||||||
const fullHeight = clientHeight - window.outerHeight
|
|
||||||
let per = parseFloat(((scrollY / fullHeight) * 100).toFixed(0))
|
|
||||||
if (per > 100) per = 100
|
|
||||||
const shouldShow = scrollY > 100 && per > 0
|
|
||||||
|
|
||||||
if (shouldShow !== showFloatButton) {
|
|
||||||
switchShow(shouldShow)
|
|
||||||
}
|
|
||||||
}, throttleMs))
|
|
||||||
useEffect(() => {
|
|
||||||
document.addEventListener('scroll', scrollListener)
|
|
||||||
return () => document.removeEventListener('scroll', scrollListener)
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
if (isBrowser()) {
|
|
||||||
loadExternalResource('/css/theme-hexo.css', 'css')
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div id='theme-hexo'>
|
|
||||||
<CommonHead meta={meta} siteInfo={siteInfo}/>
|
|
||||||
|
|
||||||
<TopNav {...props} />
|
|
||||||
|
|
||||||
{headerSlot}
|
|
||||||
|
|
||||||
<main id="wrapper" className={`${CONFIG_HEXO.HOME_BANNER_ENABLE ? '' : 'pt-16'} bg-hexo-background-gray dark:bg-black w-full py-8 md:px-8 lg:px-24 min-h-screen relative`}>
|
|
||||||
<div id="container-inner" className={(BLOG.LAYOUT_SIDEBAR_REVERSE ? 'flex-row-reverse' : '') + ' w-full mx-auto lg:flex lg:space-x-4 justify-center relative z-10'} >
|
|
||||||
<div className={'w-full max-w-4xl h-full ' + props.className}>
|
|
||||||
{onLoading ? <LoadingCover /> : children}
|
|
||||||
</div>
|
|
||||||
<SideRight {...props} slot={rightAreaSlot} />
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{/* 右下角悬浮 */}
|
|
||||||
<div className={(showFloatButton ? 'opacity-100 ' : 'invisible opacity-0') + ' duration-300 transition-all bottom-12 right-1 fixed justify-end z-20 text-white bg-indigo-500 dark:bg-hexo-black-gray rounded-sm'}>
|
|
||||||
<div className={'justify-center flex flex-col items-center cursor-pointer'}>
|
|
||||||
<FloatDarkModeButton />
|
|
||||||
{floatSlot}
|
|
||||||
<JumpToTopButton />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Footer title={siteInfo?.title || BLOG.TITLE} />
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutBase
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
||||||
import BlogPostListPage from './components/BlogPostListPage'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import BLOG from '@/blog.config'
|
|
||||||
|
|
||||||
export const LayoutCategory = props => {
|
|
||||||
const { category } = props
|
|
||||||
return <LayoutBase {...props} className='mt-8'>
|
|
||||||
<div className="cursor-pointer text-lg px-5 py-1 mb-2 font-light hover:text-indigo-700 dark:hover:text-indigo-400 transform dark:text-white">
|
|
||||||
<i className="mr-1 far fa-folder-open" />
|
|
||||||
{category}
|
|
||||||
</div>
|
|
||||||
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
|
||||||
</LayoutBase>
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutCategory
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
import { useGlobal } from '@/lib/global'
|
|
||||||
import Link from 'next/link'
|
|
||||||
import Card from './components/Card'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
|
|
||||||
export const LayoutCategoryIndex = props => {
|
|
||||||
const { categoryOptions } = props
|
|
||||||
const { locale } = useGlobal()
|
|
||||||
return (
|
|
||||||
<LayoutBase {...props} className='mt-8'>
|
|
||||||
<Card className="w-full min-h-screen">
|
|
||||||
<div className="dark:text-gray-200 mb-5 mx-3">
|
|
||||||
<i className="mr-4 fas fa-th" />
|
|
||||||
{locale.COMMON.CATEGORY}:
|
|
||||||
</div>
|
|
||||||
<div id="category-list" className="duration-200 flex flex-wrap mx-8">
|
|
||||||
{categoryOptions.map(category => {
|
|
||||||
return (
|
|
||||||
<Link
|
|
||||||
key={category.name}
|
|
||||||
href={`/category/${category.name}`}
|
|
||||||
passHref
|
|
||||||
legacyBehavior>
|
|
||||||
<div
|
|
||||||
className={
|
|
||||||
' duration-300 dark:hover:text-white px-5 cursor-pointer py-2 hover:text-indigo-400'
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<i className="mr-4 fas fa-folder" />
|
|
||||||
{category.name}({category.count})
|
|
||||||
</div>
|
|
||||||
</Link>
|
|
||||||
)
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutCategoryIndex
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import BLOG from '@/blog.config'
|
|
||||||
import BlogPostListPage from './components/BlogPostListPage'
|
|
||||||
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
||||||
import Header from './components/Header'
|
|
||||||
import CONFIG_HEXO from './config_hexo'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import React from 'react'
|
|
||||||
|
|
||||||
export const LayoutIndex = (props) => {
|
|
||||||
const headerSlot = CONFIG_HEXO.HOME_BANNER_ENABLE && <Header {...props} />
|
|
||||||
return <LayoutBase {...props} headerSlot={headerSlot} className='pt-8'>
|
|
||||||
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
|
||||||
</LayoutBase>
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutIndex
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
import BlogPostListPage from './components/BlogPostListPage'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
|
|
||||||
export const LayoutPage = (props) => {
|
|
||||||
return <LayoutBase {...props} className='mt-8'>
|
|
||||||
<BlogPostListPage {...props}/>
|
|
||||||
</LayoutBase>
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutPage
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
import { useRouter } from 'next/router'
|
|
||||||
import { useEffect, useRef } from 'react'
|
|
||||||
import BLOG from '@/blog.config'
|
|
||||||
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
||||||
import BlogPostListPage from './components/BlogPostListPage'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import SearchInput from './components/SearchInput'
|
|
||||||
import { useGlobal } from '@/lib/global'
|
|
||||||
import Mark from 'mark.js'
|
|
||||||
import TagItemMini from './components/TagItemMini'
|
|
||||||
import Card from './components/Card'
|
|
||||||
import Link from 'next/link'
|
|
||||||
|
|
||||||
export const LayoutSearch = props => {
|
|
||||||
const { keyword, tagOptions, categoryOptions } = props
|
|
||||||
const { locale } = useGlobal()
|
|
||||||
const router = useRouter()
|
|
||||||
const currentSearch = keyword || router?.query?.s
|
|
||||||
const cRef = useRef(null)
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setTimeout(() => {
|
|
||||||
// 自动聚焦到搜索框
|
|
||||||
cRef?.current?.focus()
|
|
||||||
if (currentSearch) {
|
|
||||||
const targets = document.getElementsByClassName('replace')
|
|
||||||
for (const container of targets) {
|
|
||||||
if (container && container.innerHTML) {
|
|
||||||
const re = new RegExp(currentSearch, 'gim')
|
|
||||||
const instance = new Mark(container)
|
|
||||||
instance.markRegExp(re, {
|
|
||||||
element: 'span',
|
|
||||||
className: 'text-red-500 border-b border-dashed'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, 100)
|
|
||||||
})
|
|
||||||
return (
|
|
||||||
<LayoutBase {...props} currentSearch={currentSearch} className='pt-8'>
|
|
||||||
{!currentSearch && <>
|
|
||||||
<div className="my-6 px-2">
|
|
||||||
<SearchInput cRef={cRef} {...props} />
|
|
||||||
{/* 分类 */}
|
|
||||||
<Card className="w-full mt-4">
|
|
||||||
<div className="dark:text-gray-200 mb-5 mx-3">
|
|
||||||
<i className="mr-4 fas fa-th" />
|
|
||||||
{locale.COMMON.CATEGORY}:
|
|
||||||
</div>
|
|
||||||
<div id="category-list" className="duration-200 flex flex-wrap mx-8">
|
|
||||||
{categoryOptions?.map(category => {
|
|
||||||
return (
|
|
||||||
<Link
|
|
||||||
key={category.name}
|
|
||||||
href={`/category/${category.name}`}
|
|
||||||
passHref
|
|
||||||
legacyBehavior>
|
|
||||||
<div
|
|
||||||
className={
|
|
||||||
' duration-300 dark:hover:text-white rounded-lg px-5 cursor-pointer py-2 hover:bg-indigo-400 hover:text-white'
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<i className="mr-4 fas fa-folder" />
|
|
||||||
{category.name}({category.count})
|
|
||||||
</div>
|
|
||||||
</Link>
|
|
||||||
)
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
{/* 标签 */}
|
|
||||||
<Card className="w-full mt-4">
|
|
||||||
<div className="dark:text-gray-200 mb-5 ml-4">
|
|
||||||
<i className="mr-4 fas fa-tag" />
|
|
||||||
{locale.COMMON.TAGS}:
|
|
||||||
</div>
|
|
||||||
<div id="tags-list" className="duration-200 flex flex-wrap ml-8">
|
|
||||||
{tagOptions?.map(tag => {
|
|
||||||
return (
|
|
||||||
<div key={tag.name} className="p-2">
|
|
||||||
<TagItemMini key={tag.name} tag={tag} />
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</div>
|
|
||||||
</>}
|
|
||||||
|
|
||||||
{currentSearch && <>
|
|
||||||
<div id="container">
|
|
||||||
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
|
||||||
</div>
|
|
||||||
</>}
|
|
||||||
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutSearch
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
import { useRef } from 'react'
|
|
||||||
import { ArticleLock } from './components/ArticleLock'
|
|
||||||
import HeaderArticle from './components/HeaderArticle'
|
|
||||||
import JumpToCommentButton from './components/JumpToCommentButton'
|
|
||||||
import TocDrawer from './components/TocDrawer'
|
|
||||||
import TocDrawerButton from './components/TocDrawerButton'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import Comment from '@/components/Comment'
|
|
||||||
import NotionPage from '@/components/NotionPage'
|
|
||||||
import ArticleAdjacent from './components/ArticleAdjacent'
|
|
||||||
import ArticleCopyright from './components/ArticleCopyright'
|
|
||||||
import ArticleRecommend from './components/ArticleRecommend'
|
|
||||||
import { isBrowser } from '@/lib/utils'
|
|
||||||
import ShareBar from '@/components/ShareBar'
|
|
||||||
|
|
||||||
export const LayoutSlug = props => {
|
|
||||||
const { post, lock, validPassword } = props
|
|
||||||
const drawerRight = useRef(null)
|
|
||||||
|
|
||||||
if (!post) {
|
|
||||||
return <LayoutBase
|
|
||||||
headerSlot={<HeaderArticle {...props} />}
|
|
||||||
{...props}
|
|
||||||
showCategory={false}
|
|
||||||
showTag={false}
|
|
||||||
></LayoutBase>
|
|
||||||
}
|
|
||||||
|
|
||||||
const targetRef = isBrowser() ? document.getElementById('article-wrapper') : null
|
|
||||||
|
|
||||||
const floatSlot = <>
|
|
||||||
{post?.toc?.length > 1 && <div className="block lg:hidden">
|
|
||||||
<TocDrawerButton
|
|
||||||
onClick={() => {
|
|
||||||
drawerRight?.current?.handleSwitchVisible()
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>}
|
|
||||||
<JumpToCommentButton />
|
|
||||||
</>
|
|
||||||
|
|
||||||
return (
|
|
||||||
<LayoutBase
|
|
||||||
headerSlot={<HeaderArticle {...props} />}
|
|
||||||
{...props}
|
|
||||||
showCategory={false}
|
|
||||||
showTag={false}
|
|
||||||
floatSlot={floatSlot}
|
|
||||||
>
|
|
||||||
<div className="w-full lg:hover:shadow lg:border rounded-t-xl lg:rounded-xl lg:px-2 lg:py-4 bg-white dark:bg-hexo-black-gray dark:border-black article">
|
|
||||||
{lock && <ArticleLock validPassword={validPassword} />}
|
|
||||||
|
|
||||||
{!lock && <div id="article-wrapper" className="overflow-x-auto flex-grow mx-auto md:w-full md:px-5 ">
|
|
||||||
|
|
||||||
<article itemScope itemType="https://schema.org/Movie" className="subpixel-antialiased overflow-y-hidden" >
|
|
||||||
{/* Notion文章主体 */}
|
|
||||||
<section className='px-5 justify-center mx-auto max-w-2xl lg:max-w-full'>
|
|
||||||
{post && <NotionPage post={post} />}
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{/* 分享 */}
|
|
||||||
<ShareBar post={post} />
|
|
||||||
{post.type === 'Post' && <ArticleCopyright {...props} /> }
|
|
||||||
{post.type === 'Post' && <ArticleRecommend {...props} /> }
|
|
||||||
{post.type === 'Post' && <ArticleAdjacent {...props} /> }
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<div className='pt-4 border-dashed'></div>
|
|
||||||
|
|
||||||
{/* 评论互动 */}
|
|
||||||
<div className="duration-200 overflow-x-auto bg-white dark:bg-hexo-black-gray px-3">
|
|
||||||
<Comment frontMatter={post} />
|
|
||||||
</div>
|
|
||||||
</div>}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='block lg:hidden'>
|
|
||||||
<TocDrawer post={post} cRef={drawerRight} targetRef={targetRef} />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutSlug
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
import BLOG from '@/blog.config'
|
|
||||||
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
||||||
import BlogPostListPage from './components/BlogPostListPage'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
import React from 'react'
|
|
||||||
import Link from 'next/link'
|
|
||||||
|
|
||||||
export const LayoutTag = (props) => {
|
|
||||||
const tag = props?.tagOptions?.find((t) => {
|
|
||||||
return t.name === props.tag
|
|
||||||
})
|
|
||||||
|
|
||||||
return (
|
|
||||||
<LayoutBase {...props} className='mt-8'>
|
|
||||||
{tag && (
|
|
||||||
<div className="cursor-pointer px-3 py-2 mb-2 font-light hover:text-indigo-700 dark:hover:text-indigo-400 transform dark:text-white">
|
|
||||||
<Link
|
|
||||||
key={tag}
|
|
||||||
href={`/tag/${encodeURIComponent(tag.name)}`}
|
|
||||||
passHref
|
|
||||||
className={`cursor-pointer inline-block rounded duration-200
|
|
||||||
mr-2 py-0.5 px-1 text-xl whitespace-nowrap ` }>
|
|
||||||
|
|
||||||
<div className='font-light dark:text-gray-400 dark:hover:text-white'> #{tag.name + (tag.count ? `(${tag.count})` : '')} </div>
|
|
||||||
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutTag
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
import { useGlobal } from '@/lib/global'
|
|
||||||
import Card from './components/Card'
|
|
||||||
import TagItemMini from './components/TagItemMini'
|
|
||||||
import LayoutBase from './LayoutBase'
|
|
||||||
|
|
||||||
export const LayoutTagIndex = props => {
|
|
||||||
const { tagOptions } = props
|
|
||||||
const { locale } = useGlobal()
|
|
||||||
return (
|
|
||||||
<LayoutBase {...props} className='mt-8'>
|
|
||||||
<Card className='w-full'>
|
|
||||||
<div className="dark:text-gray-200 mb-5 ml-4">
|
|
||||||
<i className="mr-4 fas fa-tag" />
|
|
||||||
{locale.COMMON.TAGS}:
|
|
||||||
</div>
|
|
||||||
<div id="tags-list" className="duration-200 flex flex-wrap ml-8">
|
|
||||||
{tagOptions.map(tag => {
|
|
||||||
return (
|
|
||||||
<div key={tag.name} className="p-2">
|
|
||||||
<TagItemMini key={tag.name} tag={tag} />
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</LayoutBase>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LayoutTagIndex
|
|
||||||
@@ -9,10 +9,10 @@ import BLOG from '@/blog.config'
|
|||||||
let wrapperTop = 0
|
let wrapperTop = 0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 顶部全屏大图
|
||||||
* @returns 头图
|
* @returns
|
||||||
*/
|
*/
|
||||||
const Header = props => {
|
const Hero = props => {
|
||||||
const [typed, changeType] = useState()
|
const [typed, changeType] = useState()
|
||||||
const { siteInfo } = props
|
const { siteInfo } = props
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
@@ -79,4 +79,4 @@ const Header = props => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Header
|
export default Hero
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const NavButtonGroup = (props) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<nav id='home-nav-button' className={'w-full z-10 md:h-52 md:mt-6 xl:mt-32 px-5 py-2 mt-8 flex flex-wrap md:max-w-5xl space-y-2 md:space-y-0 md:flex justify-center max-h-80 overflow-auto'}>
|
<nav id='home-nav-button' className={'w-full z-10 md:h-72 md:mt-6 xl:mt-32 px-5 py-2 mt-8 flex flex-wrap md:max-w-5xl space-y-2 md:space-y-1 md:flex justify-center max-h-80 overflow-auto'}>
|
||||||
{categoryOptions.map(category => {
|
{categoryOptions.map(category => {
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
|
|||||||
42
themes/hexo/components/RightFloatArea.js
Normal file
42
themes/hexo/components/RightFloatArea.js
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
import throttle from 'lodash.throttle'
|
||||||
|
import { useCallback, useEffect, useState } from 'react'
|
||||||
|
import FloatDarkModeButton from './FloatDarkModeButton'
|
||||||
|
import JumpToTopButton from './JumpToTopButton'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 悬浮在右下角的按钮,当页面向下滚动100px时会出现
|
||||||
|
* @param {*} param0
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export default function RightFloatArea({ floatSlot }) {
|
||||||
|
const [showFloatButton, switchShow] = useState(false)
|
||||||
|
const scrollListener = useCallback(throttle(() => {
|
||||||
|
const targetRef = document.getElementById('wrapper')
|
||||||
|
const clientHeight = targetRef?.clientHeight
|
||||||
|
const scrollY = window.pageYOffset
|
||||||
|
const fullHeight = clientHeight - window.outerHeight
|
||||||
|
let per = parseFloat(((scrollY / fullHeight) * 100).toFixed(0))
|
||||||
|
if (per > 100) per = 100
|
||||||
|
const shouldShow = scrollY > 100 && per > 0
|
||||||
|
|
||||||
|
// 右下角显示悬浮按钮
|
||||||
|
if (shouldShow !== showFloatButton) {
|
||||||
|
switchShow(shouldShow)
|
||||||
|
}
|
||||||
|
}, 200))
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
document.addEventListener('scroll', scrollListener)
|
||||||
|
return () => document.removeEventListener('scroll', scrollListener)
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={(showFloatButton ? 'opacity-100 ' : 'invisible opacity-0') + ' duration-300 transition-all bottom-12 right-1 fixed justify-end z-20 text-white bg-indigo-500 dark:bg-hexo-black-gray rounded-sm'}>
|
||||||
|
<div className={'justify-center flex flex-col items-center cursor-pointer'}>
|
||||||
|
<FloatDarkModeButton />
|
||||||
|
{floatSlot}
|
||||||
|
<JumpToTopButton />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
70
themes/hexo/components/SearchNav.js
Normal file
70
themes/hexo/components/SearchNav.js
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import { useGlobal } from '@/lib/global'
|
||||||
|
import Link from 'next/link'
|
||||||
|
import { useEffect, useRef } from 'react'
|
||||||
|
import Card from './Card'
|
||||||
|
import SearchInput from './SearchInput'
|
||||||
|
import TagItemMini from './TagItemMini'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 搜索页面的导航
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export default function SearchNav(props) {
|
||||||
|
const { tagOptions, categoryOptions } = props
|
||||||
|
const cRef = useRef(null)
|
||||||
|
const { locale } = useGlobal()
|
||||||
|
useEffect(() => {
|
||||||
|
// 自动聚焦到搜索框
|
||||||
|
cRef?.current?.focus()
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
return <>
|
||||||
|
<div className="my-6 px-2">
|
||||||
|
<SearchInput cRef={cRef} {...props} />
|
||||||
|
{/* 分类 */}
|
||||||
|
<Card className="w-full mt-4">
|
||||||
|
<div className="dark:text-gray-200 mb-5 mx-3">
|
||||||
|
<i className="mr-4 fas fa-th" />
|
||||||
|
{locale.COMMON.CATEGORY}:
|
||||||
|
</div>
|
||||||
|
<div id="category-list" className="duration-200 flex flex-wrap mx-8">
|
||||||
|
{categoryOptions?.map(category => {
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
key={category.name}
|
||||||
|
href={`/category/${category.name}`}
|
||||||
|
passHref
|
||||||
|
legacyBehavior>
|
||||||
|
<div
|
||||||
|
className={
|
||||||
|
' duration-300 dark:hover:text-white rounded-lg px-5 cursor-pointer py-2 hover:bg-indigo-400 hover:text-white'
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<i className="mr-4 fas fa-folder" />
|
||||||
|
{category.name}({category.count})
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
{/* 标签 */}
|
||||||
|
<Card className="w-full mt-4">
|
||||||
|
<div className="dark:text-gray-200 mb-5 ml-4">
|
||||||
|
<i className="mr-4 fas fa-tag" />
|
||||||
|
{locale.COMMON.TAGS}:
|
||||||
|
</div>
|
||||||
|
<div id="tags-list" className="duration-200 flex flex-wrap ml-8">
|
||||||
|
{tagOptions?.map(tag => {
|
||||||
|
return (
|
||||||
|
<div key={tag.name} className="p-2">
|
||||||
|
<TagItemMini key={tag.name} tag={tag} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
}
|
||||||
@@ -10,8 +10,22 @@ import BLOG from '@/blog.config'
|
|||||||
import dynamic from 'next/dynamic'
|
import dynamic from 'next/dynamic'
|
||||||
import Announcement from './Announcement'
|
import Announcement from './Announcement'
|
||||||
import { useGlobal } from '@/lib/global'
|
import { useGlobal } from '@/lib/global'
|
||||||
|
import Live2D from '@/components/Live2D'
|
||||||
|
|
||||||
const HexoRecentComments = dynamic(() => import('./HexoRecentComments'))
|
const HexoRecentComments = dynamic(() => import('./HexoRecentComments'))
|
||||||
|
const FaceBookPage = dynamic(
|
||||||
|
() => {
|
||||||
|
let facebook = <></>
|
||||||
|
try {
|
||||||
|
facebook = import('@/components/FacebookPage')
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
}
|
||||||
|
return facebook
|
||||||
|
},
|
||||||
|
{ ssr: false }
|
||||||
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hexo主题右侧栏
|
* Hexo主题右侧栏
|
||||||
* @param {*} props
|
* @param {*} props
|
||||||
@@ -20,7 +34,7 @@ const HexoRecentComments = dynamic(() => import('./HexoRecentComments'))
|
|||||||
export default function SideRight(props) {
|
export default function SideRight(props) {
|
||||||
const {
|
const {
|
||||||
post, currentCategory, categories, latestPosts, tags,
|
post, currentCategory, categories, latestPosts, tags,
|
||||||
currentTag, showCategory, showTag, slot, notice
|
currentTag, showCategory, showTag, rightAreaSlot, notice
|
||||||
} = props
|
} = props
|
||||||
|
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
@@ -57,7 +71,10 @@ export default function SideRight(props) {
|
|||||||
{post && post.toc && post.toc.length > 1 && <Card>
|
{post && post.toc && post.toc.length > 1 && <Card>
|
||||||
<Catalog toc={post.toc} />
|
<Catalog toc={post.toc} />
|
||||||
</Card>}
|
</Card>}
|
||||||
{slot}
|
|
||||||
|
{rightAreaSlot}
|
||||||
|
<FaceBookPage/>
|
||||||
|
<Live2D />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
24
themes/hexo/components/SlotBar.js
Normal file
24
themes/hexo/components/SlotBar.js
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
import Link from 'next/link'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 博客列表上方嵌入条
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export default function SlotBar(props) {
|
||||||
|
const { tag, category } = props
|
||||||
|
|
||||||
|
if (tag) {
|
||||||
|
return <div className="cursor-pointer px-3 py-2 mb-2 font-light hover:text-indigo-700 dark:hover:text-indigo-400 transform dark:text-white">
|
||||||
|
<Link key={tag} href={`/tag/${encodeURIComponent(tag.name)}`} passHref
|
||||||
|
className={'cursor-pointer inline-block rounded duration-200 mr-2 py-0.5 px-1 text-xl whitespace-nowrap '}>
|
||||||
|
<div className='font-light dark:text-gray-400 dark:hover:text-white'> #{tag.name + (tag.count ? `(${tag.count})` : '')} </div>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
} else if (category) {
|
||||||
|
return <div className="cursor-pointer text-lg px-5 py-1 mb-2 font-light hover:text-indigo-700 dark:hover:text-indigo-400 transform dark:text-white">
|
||||||
|
<i className="mr-1 far fa-folder-open" /> {category}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
return <></>
|
||||||
|
}
|
||||||
@@ -1,14 +1,330 @@
|
|||||||
import CONFIG_HEXO from './config_hexo'
|
import CONFIG_HEXO from './config_hexo'
|
||||||
import LayoutIndex from './LayoutIndex'
|
|
||||||
import LayoutSearch from './LayoutSearch'
|
import CommonHead from '@/components/CommonHead'
|
||||||
import LayoutArchive from './LayoutArchive'
|
import { useEffect, useRef } from 'react'
|
||||||
import LayoutSlug from './LayoutSlug'
|
import Footer from './components/Footer'
|
||||||
import Layout404 from './Layout404'
|
import SideRight from './components/SideRight'
|
||||||
import LayoutCategory from './LayoutCategory'
|
import TopNav from './components/TopNav'
|
||||||
import LayoutCategoryIndex from './LayoutCategoryIndex'
|
import LoadingCover from './components/LoadingCover'
|
||||||
import LayoutPage from './LayoutPage'
|
import { useGlobal } from '@/lib/global'
|
||||||
import LayoutTag from './LayoutTag'
|
import BLOG from '@/blog.config'
|
||||||
import LayoutTagIndex from './LayoutTagIndex'
|
import { isBrowser, loadExternalResource } from '@/lib/utils'
|
||||||
|
import BlogPostListPage from './components/BlogPostListPage'
|
||||||
|
import BlogPostListScroll from './components/BlogPostListScroll'
|
||||||
|
import Hero from './components/Header'
|
||||||
|
import { useRouter } from 'next/router'
|
||||||
|
import Mark from 'mark.js'
|
||||||
|
import Card from './components/Card'
|
||||||
|
import RightFloatArea from './components/RightFloatArea'
|
||||||
|
import SearchNav from './components/SearchNav'
|
||||||
|
import BlogPostArchive from './components/BlogPostArchive'
|
||||||
|
import { ArticleLock } from './components/ArticleLock'
|
||||||
|
import HeaderArticle from './components/HeaderArticle'
|
||||||
|
import JumpToCommentButton from './components/JumpToCommentButton'
|
||||||
|
import TocDrawer from './components/TocDrawer'
|
||||||
|
import TocDrawerButton from './components/TocDrawerButton'
|
||||||
|
import Comment from '@/components/Comment'
|
||||||
|
import NotionPage from '@/components/NotionPage'
|
||||||
|
import ArticleAdjacent from './components/ArticleAdjacent'
|
||||||
|
import ArticleCopyright from './components/ArticleCopyright'
|
||||||
|
import ArticleRecommend from './components/ArticleRecommend'
|
||||||
|
import ShareBar from '@/components/ShareBar'
|
||||||
|
import TagItemMini from './components/TagItemMini'
|
||||||
|
import Link from 'next/link'
|
||||||
|
import SlotBar from './components/SlotBar'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 基础布局 采用左右两侧布局,移动端使用顶部导航栏
|
||||||
|
* @param props
|
||||||
|
* @returns {JSX.Element}
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
const LayoutBase = props => {
|
||||||
|
const { children, headerSlot, floatSlot, slotTop, meta, siteInfo, className } = props
|
||||||
|
const { onLoading } = useGlobal()
|
||||||
|
|
||||||
|
// 加载主题样式
|
||||||
|
if (isBrowser()) {
|
||||||
|
loadExternalResource('/css/theme-hexo.css', 'css')
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div id='theme-hexo'>
|
||||||
|
{/* 网页SEO */}
|
||||||
|
<CommonHead meta={meta} siteInfo={siteInfo} />
|
||||||
|
|
||||||
|
{/* 顶部导航 */}
|
||||||
|
<TopNav {...props} />
|
||||||
|
|
||||||
|
{/* 顶部嵌入 */}
|
||||||
|
{headerSlot}
|
||||||
|
|
||||||
|
{/* 主区块 */}
|
||||||
|
<main id="wrapper" className={`${CONFIG_HEXO.HOME_BANNER_ENABLE ? '' : 'pt-16'} bg-hexo-background-gray dark:bg-black w-full py-8 md:px-8 lg:px-24 min-h-screen relative`}>
|
||||||
|
<div id="container-inner" className={(BLOG.LAYOUT_SIDEBAR_REVERSE ? 'flex-row-reverse' : '') + ' w-full mx-auto lg:flex lg:space-x-4 justify-center relative z-10'} >
|
||||||
|
<div className={`${className || ''} w-full max-w-4xl h-full `}>
|
||||||
|
{/* 主区上部嵌入 */}
|
||||||
|
{slotTop}
|
||||||
|
|
||||||
|
{onLoading ? <LoadingCover /> : children}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* 右侧栏 */}
|
||||||
|
<SideRight {...props} />
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
{/* 悬浮菜单 */}
|
||||||
|
<RightFloatArea floatSlot={floatSlot} />
|
||||||
|
|
||||||
|
{/* 页脚 */}
|
||||||
|
<Footer title={siteInfo?.title || BLOG.TITLE} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 首页
|
||||||
|
* 是一个博客列表,嵌入一个Hero大图
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutIndex = (props) => {
|
||||||
|
const headerSlot = CONFIG_HEXO.HOME_BANNER_ENABLE && <Hero {...props} />
|
||||||
|
return <LayoutPostList {...props} headerSlot={headerSlot} className='pt-8' />
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 博客列表
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutPostList = (props) => {
|
||||||
|
return <LayoutBase {...props} className='pt-8'>
|
||||||
|
<SlotBar {...props} />
|
||||||
|
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
||||||
|
</LayoutBase>
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 搜索
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutSearch = props => {
|
||||||
|
const { keyword } = props
|
||||||
|
const router = useRouter()
|
||||||
|
const currentSearch = keyword || router?.query?.s
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setTimeout(() => {
|
||||||
|
if (currentSearch) {
|
||||||
|
const targets = document.getElementsByClassName('replace')
|
||||||
|
for (const container of targets) {
|
||||||
|
if (container && container.innerHTML) {
|
||||||
|
const re = new RegExp(currentSearch, 'gim')
|
||||||
|
const instance = new Mark(container)
|
||||||
|
instance.markRegExp(re, {
|
||||||
|
element: 'span',
|
||||||
|
className: 'text-red-500 border-b border-dashed'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 100)
|
||||||
|
})
|
||||||
|
|
||||||
|
return (
|
||||||
|
<LayoutBase {...props} currentSearch={currentSearch} className='pt-8'>
|
||||||
|
{!currentSearch
|
||||||
|
? <SearchNav {...props} />
|
||||||
|
: <div id="posts-wrapper"> {BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />} </div>}
|
||||||
|
</LayoutBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 归档
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutArchive = (props) => {
|
||||||
|
const { archivePosts } = props
|
||||||
|
return <LayoutBase {...props} className='pt-8'>
|
||||||
|
<Card className='w-full'>
|
||||||
|
<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>
|
||||||
|
</LayoutBase>
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文章详情
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutSlug = props => {
|
||||||
|
const { post, lock, validPassword } = props
|
||||||
|
const drawerRight = useRef(null)
|
||||||
|
|
||||||
|
if (!post) {
|
||||||
|
return <LayoutBase
|
||||||
|
{...props}
|
||||||
|
showTag={false}
|
||||||
|
showCategory={false}
|
||||||
|
headerSlot={<HeaderArticle {...props} />}
|
||||||
|
></LayoutBase>
|
||||||
|
}
|
||||||
|
|
||||||
|
const targetRef = isBrowser() ? document.getElementById('article-wrapper') : null
|
||||||
|
|
||||||
|
const floatSlot = <>
|
||||||
|
{post?.toc?.length > 1 && <div className="block lg:hidden">
|
||||||
|
<TocDrawerButton
|
||||||
|
onClick={() => {
|
||||||
|
drawerRight?.current?.handleSwitchVisible()
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>}
|
||||||
|
<JumpToCommentButton />
|
||||||
|
</>
|
||||||
|
|
||||||
|
return (
|
||||||
|
<LayoutBase {...props} headerSlot={<HeaderArticle {...props} />} showCategory={false} showTag={false} floatSlot={floatSlot} >
|
||||||
|
<div className="w-full lg:hover:shadow lg:border rounded-t-xl lg:rounded-xl lg:px-2 lg:py-4 bg-white dark:bg-hexo-black-gray dark:border-black article">
|
||||||
|
{lock && <ArticleLock validPassword={validPassword} />}
|
||||||
|
|
||||||
|
{!lock && <div id="article-wrapper" className="overflow-x-auto flex-grow mx-auto md:w-full md:px-5 ">
|
||||||
|
|
||||||
|
<article itemScope itemType="https://schema.org/Movie" className="subpixel-antialiased overflow-y-hidden" >
|
||||||
|
{/* Notion文章主体 */}
|
||||||
|
<section className='px-5 justify-center mx-auto max-w-2xl lg:max-w-full'>
|
||||||
|
{post && <NotionPage post={post} />}
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* 分享 */}
|
||||||
|
<ShareBar post={post} />
|
||||||
|
{post.type === 'Post' && <>
|
||||||
|
<ArticleCopyright {...props} />
|
||||||
|
<ArticleRecommend {...props} />
|
||||||
|
<ArticleAdjacent {...props} />
|
||||||
|
</>}
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<div className='pt-4 border-dashed'></div>
|
||||||
|
|
||||||
|
{/* 评论互动 */}
|
||||||
|
<div className="duration-200 overflow-x-auto bg-white dark:bg-hexo-black-gray px-3">
|
||||||
|
<Comment frontMatter={post} />
|
||||||
|
</div>
|
||||||
|
</div>}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='block lg:hidden'>
|
||||||
|
<TocDrawer post={post} cRef={drawerRight} targetRef={targetRef} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</LayoutBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 404
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const Layout404 = props => {
|
||||||
|
const router = useRouter()
|
||||||
|
useEffect(() => {
|
||||||
|
// 延时3秒如果加载失败就返回首页
|
||||||
|
setTimeout(() => {
|
||||||
|
if (isBrowser()) {
|
||||||
|
const article = document.getElementById('notion-article')
|
||||||
|
if (!article) {
|
||||||
|
router.push('/').then(() => {
|
||||||
|
// console.log('找不到页面', router.asPath)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 3000)
|
||||||
|
})
|
||||||
|
return (
|
||||||
|
<LayoutBase {...props}>
|
||||||
|
<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>
|
||||||
|
</LayoutBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分类列表
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutCategoryIndex = props => {
|
||||||
|
const { categoryOptions } = props
|
||||||
|
const { locale } = useGlobal()
|
||||||
|
return (
|
||||||
|
<LayoutBase {...props} className='mt-8'>
|
||||||
|
<Card className="w-full min-h-screen">
|
||||||
|
<div className="dark:text-gray-200 mb-5 mx-3">
|
||||||
|
<i className="mr-4 fas fa-th" /> {locale.COMMON.CATEGORY}:
|
||||||
|
</div>
|
||||||
|
<div id="category-list" className="duration-200 flex flex-wrap mx-8">
|
||||||
|
{categoryOptions.map(category => {
|
||||||
|
return (
|
||||||
|
<Link key={category.name} href={`/category/${category.name}`} passHref legacyBehavior>
|
||||||
|
<div className={' duration-300 dark:hover:text-white px-5 cursor-pointer py-2 hover:text-indigo-400'}>
|
||||||
|
<i className="mr-4 fas fa-folder" /> {category.name}({category.count})
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
</LayoutBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 标签列表
|
||||||
|
* @param {*} props
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
const LayoutTagIndex = props => {
|
||||||
|
const { tagOptions } = props
|
||||||
|
const { locale } = useGlobal()
|
||||||
|
return (
|
||||||
|
<LayoutBase {...props} className='mt-8'>
|
||||||
|
<Card className='w-full'>
|
||||||
|
<div className="dark:text-gray-200 mb-5 ml-4">
|
||||||
|
<i className="mr-4 fas fa-tag" /> {locale.COMMON.TAGS}:
|
||||||
|
</div>
|
||||||
|
<div id="tags-list" className="duration-200 flex flex-wrap ml-8">
|
||||||
|
{tagOptions.map(tag => <div key={tag.name} className="p-2">
|
||||||
|
<TagItemMini key={tag.name} tag={tag} />
|
||||||
|
</div>)}
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
</LayoutBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
CONFIG_HEXO as THEME_CONFIG,
|
CONFIG_HEXO as THEME_CONFIG,
|
||||||
@@ -17,9 +333,7 @@ export {
|
|||||||
LayoutArchive,
|
LayoutArchive,
|
||||||
LayoutSlug,
|
LayoutSlug,
|
||||||
Layout404,
|
Layout404,
|
||||||
LayoutCategory,
|
|
||||||
LayoutCategoryIndex,
|
LayoutCategoryIndex,
|
||||||
LayoutPage,
|
LayoutPostList,
|
||||||
LayoutTag,
|
|
||||||
LayoutTagIndex
|
LayoutTagIndex
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user