mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
135 lines
4.6 KiB
JavaScript
135 lines
4.6 KiB
JavaScript
import Tags from '@/components/Tags'
|
|
import { useLocale } from '@/lib/locale'
|
|
import Link from 'next/link'
|
|
import BLOG from '@/blog.config'
|
|
import React, { useEffect, useState } from 'react'
|
|
import Router, { useRouter } from 'next/router'
|
|
import DarkModeButton from '@/components/DarkModeButton'
|
|
import Footer from '@/components/Footer'
|
|
import throttle from 'lodash.throttle'
|
|
import TocBar from '@/components/TocBar'
|
|
import SocialButton from '@/components/SocialButton'
|
|
|
|
const SideBar = ({ tags, currentTag, toc }) => {
|
|
const locale = useLocale()
|
|
const router = useRouter()
|
|
const [searchValue, setSearchValue] = useState('')
|
|
|
|
const handleKeyUp = (e) => {
|
|
if (e.keyCode === 13) {
|
|
Router.push({ pathname: '/', query: { s: searchValue } })
|
|
}
|
|
}
|
|
|
|
// 监听resize事件
|
|
useEffect(() => {
|
|
window.addEventListener('resize', collapseSideBar)
|
|
collapseSideBar()
|
|
return () => {
|
|
window.removeEventListener('resize', collapseSideBar)
|
|
}
|
|
}, [])
|
|
|
|
const collapseSideBar = throttle(() => {
|
|
if (window.innerWidth > 1300) {
|
|
changeCollapse(false)
|
|
} else {
|
|
changeCollapse(true)
|
|
}
|
|
}, 500)
|
|
const [collapse, changeCollapse] = useState(false)
|
|
|
|
return <aside className='z-10'>
|
|
|
|
<div
|
|
className={(collapse ? '-ml-80 ' : 'shadow-2xl xl:shadow-none') + ' dark:bg-gray-800 bg-white sidebar h-full w-72 duration-500 ease-in-out'}>
|
|
|
|
{/* Logo */}
|
|
<section className='mx-5 pt-6 pb-2'>
|
|
<Link href='/'>
|
|
<a
|
|
className='text-3xl hover:shadow-2xl text-black dark:bg-gray-900 dark:text-gray-300 font-semibold dark:hover:bg-gray-600 hover:bg-gray-800 hover:text-white p-2 duration-200'>{BLOG.title}</a>
|
|
</Link>
|
|
</section>
|
|
|
|
{/* 地理标志 */}
|
|
<section className='text-gray-500 text-sm px-7 pt-3 pb-5 dark:text-gray-300'>
|
|
<i className='fa fa-map-marker mr-1' />
|
|
Fuzhou, China
|
|
</section>
|
|
|
|
{/* 搜索框 */}
|
|
<section className='sticky top-0 flex justify-center items-center py-5 pr-5 pl-2 bg-gray-100 dark:bg-black'>
|
|
<input
|
|
type='text'
|
|
placeholder={
|
|
currentTag ? `${locale.SEARCH.TAGS} #${currentTag}` : `${locale.SEARCH.ARTICLES}`
|
|
}
|
|
className='shadow-inner duration-200 pl-2 rounded w-full py-2 border dark:border-gray-600 bg-white text-black dark:bg-gray-700 dark:text-white'
|
|
onKeyUp={handleKeyUp}
|
|
onChange={e => setSearchValue(e.target.value)}
|
|
defaultValue={router.query.s ?? ''}
|
|
/>
|
|
<i className='fa fa-search text-gray-400 -ml-8' />
|
|
</section>
|
|
|
|
{/* wrapper */}
|
|
<div className='p-6'>
|
|
|
|
{/* 菜单 */}
|
|
<nav className='py-4'>
|
|
<div>
|
|
<strong className='text-xl text-gray-600 dark:text-gray-400'>菜单</strong>
|
|
</div>
|
|
<ul className='leading-8 text-gray-500 dark:text-gray-400'>
|
|
<li><a className='fa fa-info hover:underline' href='/article/about' id='about'><span
|
|
className='ml-2'>关于本站</span></a></li>
|
|
<li><a className='fa fa-rss hover:underline' href='/feed' target='_blank' id='feed'><span
|
|
className='ml-2'>RSS订阅</span></a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
{/* 标签云 */}
|
|
<section className=''>
|
|
<div>
|
|
<strong className='text-xl text-gray-600 dark:text-gray-400'>标签</strong>
|
|
</div>
|
|
<Tags tags={tags} currentTag={currentTag} />
|
|
</section>
|
|
|
|
<section>
|
|
<div className='mt-4'>
|
|
<strong className='text-xl text-gray-600 dark:text-gray-400'>联系我</strong>
|
|
<div className='py-2'>
|
|
<SocialButton />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section className='pt-2'>
|
|
{/* 站点信息 */}
|
|
<Footer />
|
|
</section>
|
|
|
|
</div>
|
|
<div className='sticky top-0'>
|
|
<TocBar toc={toc} />
|
|
</div>
|
|
</div>
|
|
|
|
{/* 顶部菜单按钮 */}
|
|
<div
|
|
className={(collapse ? 'left-0' : 'left-72') + ' fixed flex flex-nowrap md:flex-col top-0 pl-4 py-1 duration-500 ease-in-out'}>
|
|
{/* 菜单折叠 */}
|
|
<div className='z-30 p-1 border hover:shadow-xl duration-200 dark:border-gray-500 h-12 bg-white dark:bg-gray-600 dark:bg-opacity-70 bg-opacity-70
|
|
dark:hover:bg-gray-100 text-xl cursor-pointer mr-2 my-2 dark:text-gray-300 dark:hover:text-black'>
|
|
<i className='fa fa-bars p-2.5 hover:scale-125 transform duration-200'
|
|
onClick={() => changeCollapse(!collapse)} />
|
|
</div>
|
|
{/* 夜间模式 */}
|
|
<DarkModeButton />
|
|
</div>
|
|
</aside>
|
|
}
|
|
export default SideBar
|