Skip to content

Commit

Permalink
合并CommenHead;
Browse files Browse the repository at this point in the history
调整Algolia样式
  • Loading branch information
tangly1024 committed Jul 28, 2023
1 parent 66f568a commit beeed7f
Show file tree
Hide file tree
Showing 16 changed files with 156 additions and 68 deletions.
153 changes: 130 additions & 23 deletions components/AlgoliaSearchModal.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { useState, useImperativeHandle } from 'react'
import { useState, useImperativeHandle, useRef } from 'react'
import BLOG from '@/blog.config'
import algoliasearch from 'algoliasearch'
import replaceSearchResult from '@/components/Mark'
import Link from 'next/link'
import { useGlobal } from '@/lib/global'
import throttle from 'lodash/throttle'

/**
* 结合 Algolia 实现的弹出式搜索框
Expand All @@ -11,6 +14,12 @@ import replaceSearchResult from '@/components/Mark'
export default function AlgoliaSearchModal({ cRef }) {
const [searchResults, setSearchResults] = useState([])
const [isModalOpen, setIsModalOpen] = useState(false)
const [page, setPage] = useState(0)
const [keyword, setKeyword] = useState(null)
const [totalPage, setTotalPage] = useState(0)
const [totalHit, setTotalHit] = useState(0)
const [useTime, setUseTime] = useState(0)

/**
* 对外暴露方法
*/
Expand All @@ -22,53 +31,93 @@ export default function AlgoliaSearchModal({ cRef }) {
}
})

if (!BLOG.ALGOLIA_APP_ID) {
return <></>
}

const client = algoliasearch(BLOG.ALGOLIA_APP_ID, BLOG.ALGOLIA_SEARCH_ONLY_APP_KEY)
const index = client.initIndex(BLOG.ALGOLIA_INDEX)

const handleSearch = async (query) => {
/**
* 搜索
* @param {*} query
*/
const handleSearch = async (query, page) => {
setKeyword(query)
setPage(page)
setSearchResults([])
setUseTime(0)
setTotalPage(0)
setTotalHit(0)
if (!query || query === '') {
return
}

try {
const res = await index.search(query)
console.log(res)
const { hits } = res
const res = await index.search(query, { page, hitsPerPage: 10 })
const { hits, nbHits, nbPages, processingTimeMS } = res
setUseTime(processingTimeMS)
setTotalPage(nbPages)
setTotalHit(nbHits)
setSearchResults(hits)

const doms = document.getElementById('search-wrapper').getElementsByClassName('replace')
replaceSearchResult({
doms,
search: query,
target: {
element: 'span',
className: 'text-blue-600 border-b border-dashed'
}
})

setTimeout(() => {
replaceSearchResult({
doms,
search: query,
target: {
element: 'span',
className: 'text-blue-600 border-b border-dashed'
}
})
}, 150)
} catch (error) {
console.error('Algolia search error:', error)
}
}

const throttledHandleSearch = useRef(throttle(handleSearch, 300)) // 设置节流延迟时间

// 修改input的onChange事件处理函数
const handleInputChange = (e) => {
const query = e.target.value
throttledHandleSearch.current(query, 0)
}

/**
* 切换页码
* @param {*} page
*/
const switchPage = (page) => {
throttledHandleSearch.current(keyword, page)
}

/**
* 关闭弹窗
*/
const closeModal = () => {
setIsModalOpen(false)
}

if (!BLOG.ALGOLIA_APP_ID) {
return <></>
}

return (
<div id='search-wrapper' className={`${isModalOpen ? 'opacity-100' : 'invisible opacity-0 pointer-events-none'} fixed h-screen w-screen left-0 top-0 flex items-center justify-center`}>
{/* 内容 */}
<div id='search-wrapper' className={`${isModalOpen ? 'opacity-100' : 'invisible opacity-0 pointer-events-none'} fixed h-screen w-screen left-0 top-0 mt-12 flex items-start justify-center`}>

{/* 模态框 */}
<div className={`${isModalOpen ? 'opacity-100' : 'invisible opacity-0 translate-y-10'} flex flex-col justify-between w-full min-h-[10rem] max-w-xl dark:bg-hexo-black-gray dark:border-gray-800 bg-white dark:bg- p-5 rounded-lg z-50 shadow border hover:border-blue-600 duration-300 transition-all `}>

<div className='flex justify-between items-center'>
<div className='text-2xl text-blue-600 font-bold'>搜索</div>
<div><i class="text-gray-600 fa-solid fa-xmark p-1 cursor-pointer hover:text-blue-600" onClick={closeModal} ></i></div>
</div>

<input type="text" placeholder="在这里输入搜索关键词..." onChange={(e) => handleSearch(e.target.value)}
<input type="text" placeholder="在这里输入搜索关键词..." onChange={(e) => handleInputChange(e)}
className="bg-gray-50 dark:bg-gray-600 outline-blue-500 w-full px-4 my-2 py-1 mb-4 border rounded-md" />

{/* 标签组 */}
<div>

<div className='mb-4'>
<TagGroups/>
</div>

<ul>
Expand All @@ -81,7 +130,9 @@ export default function AlgoliaSearchModal({ cRef }) {
))}
</ul>

<div className='text-gray-600'><i class="fa-brands fa-algolia"></i> Algolia 提供搜索服务</div>
<Pagination totalPage={totalPage} page={page} switchPage={switchPage}/>
<div>{totalHit > 0 && <div>共搜索到 {totalHit} 条结果,用时 {useTime} 毫秒</div> }</div>
<div className='text-gray-600 mt-2'><span><i class="fa-brands fa-algolia"></i> Algolia 提供搜索服务</span> </div>
</div>

{/* 遮罩 */}
Expand All @@ -90,3 +141,59 @@ export default function AlgoliaSearchModal({ cRef }) {
</div>
)
}

/**
* 标签组
*/
function TagGroups(props) {
const { tagOptions } = useGlobal()
// 获取tagOptions数组前十个
const firstTenTags = tagOptions.slice(0, 10)

return <div id='tags-group' className='dark:border-gray-700 space-y-2'>
{
firstTenTags?.map((tag, index) => {
return <Link passHref
key={index}
href={`/tag/${encodeURIComponent(tag.name)}`}
className={'cursor-pointer inline-block whitespace-nowrap'}>
<div className={' flex items-center hover:bg-blue-600 dark:hover:bg-yellow-600 hover:scale-110 hover:text-white rounded-lg px-2 py-0.5 duration-150 transition-all'}>
<div className='text-lg'>{tag.name} </div>{tag.count ? <sup className='relative ml-1'>{tag.count}</sup> : <></>}
</div>

</Link>
})
}
</div>
}

/**
* 分页
* @param {*} param0
*/
function Pagination(props) {
const { totalPage, page, switchPage } = props
if (totalPage <= 0) {
return <></>
}
const pagesElement = []

for (let i = 0; i < totalPage; i++) {
const selected = page === i
pagesElement.push(getPageElement(i, selected, switchPage))
}
return <div className='flex space-x-1 w-full justify-center py-1'>
{pagesElement.map(p => p)}
</div>
}

/**
* 获取分页按钮
* @param {*} i
* @param {*} selected
*/
function getPageElement(i, selected, switchPage) {
return <div onClick={() => switchPage(i)} className={`${selected ? 'font-bold text-white bg-blue-600 rounded' : 'hover:text-blue-600 hover:font-bold'} text-center cursor-pointer w-6 h-6 `}>
{i + 1}
</div>
}
5 changes: 1 addition & 4 deletions components/Mark.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ export default async function replaceSearchResult({ doms, search, target }) {
}

try {
const url = await loadExternalResource('https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js', 'js')
console.log('markjs 加载成功', url, window.Mark)
console.log('------', doms)

await loadExternalResource('https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js', 'js')
const Mark = window.Mark
if (doms instanceof HTMLCollection) {
for (const container of doms) {
Expand Down
9 changes: 7 additions & 2 deletions lib/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const GlobalContext = createContext()
* @returns {JSX.Element}
* @constructor
*/
export function GlobalContextProvider({ children }) {
export function GlobalContextProvider(props) {
console.log('global', props)
const { children, siteInfo, categoryOptions, tagOptions } = props
const router = useRouter()
const [lang, updateLang] = useState(BLOG.LANG) // 默认语言
const [locale, updateLocale] = useState(generateLocaleDict(BLOG.LANG)) // 默认语言
Expand Down Expand Up @@ -75,7 +77,10 @@ export function GlobalContextProvider({ children }) {
updateDarkMode,
theme,
setTheme,
switchTheme
switchTheme,
siteInfo,
categoryOptions,
tagOptions
}}>
{children}
</GlobalContext.Provider>
Expand Down
5 changes: 4 additions & 1 deletion pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import dynamic from 'next/dynamic'

// 自定义样式css和js引入
import ExternalScript from '@/components/ExternalScript'
import CommonHead from '@/components/CommonHead'

// 各种扩展插件 动画等
const ExternalPlugins = dynamic(() => import('@/components/ExternalPlugins'))
Expand All @@ -25,9 +26,11 @@ const MyApp = ({ Component, pageProps }) => {
useEffect(() => {
AOS.init()
}, [])
const { meta } = pageProps

return (
<GlobalContextProvider>
<GlobalContextProvider {...pageProps}>
<CommonHead meta={meta}/>
<ExternalScript />
<Component {...pageProps} />
<ExternalPlugins {...pageProps} />
Expand Down
5 changes: 1 addition & 4 deletions themes/example/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import BLOG from '@/blog.config'
import CONFIG from './config'
import CommonHead from '@/components/CommonHead'
import { useEffect } from 'react'
import { Header } from './components/Header'
import { Nav } from './components/Nav'
Expand Down Expand Up @@ -36,7 +35,7 @@ import { Style } from './style'
* @constructor
*/
const LayoutBase = props => {
const { children, meta, slotTop } = props
const { children, slotTop } = props
const { onLoading } = useGlobal()

// 增加一个状态以触发 Transition 组件的动画
Expand All @@ -49,8 +48,6 @@ const LayoutBase = props => {

return (
<div id='theme-example' className='dark:text-gray-300 bg-white dark:bg-black'>
{/* 网页SEO信息 */}
<CommonHead meta={meta} />
<Style/>

{/* 页头 */}
Expand Down
4 changes: 1 addition & 3 deletions themes/fukasawa/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client'

import CONFIG from './config'
import CommonHead from '@/components/CommonHead'
import TopNav from './components/TopNav'
import AsideLeft from './components/AsideLeft'
import BLOG from '@/blog.config'
Expand Down Expand Up @@ -43,7 +42,7 @@ export const useFukasawaGlobal = () => useContext(ThemeGlobalFukasawa)
* @constructor
*/
const LayoutBase = (props) => {
const { children, headerSlot, meta } = props
const { children, headerSlot } = props
const leftAreaSlot = <Live2D />
const { onLoading } = useGlobal()

Expand All @@ -66,7 +65,6 @@ const LayoutBase = (props) => {
<ThemeGlobalFukasawa.Provider value={{ isCollapsed, setIsCollapse }}>

<div id='theme-fukasawa'>
<CommonHead meta={meta} />
<Style/>

<TopNav {...props} />
Expand Down
4 changes: 1 addition & 3 deletions themes/gitbook/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import CONFIG from './config'
import { useRouter } from 'next/router'
import { useEffect, useState, createContext, useContext } from 'react'
import { isBrowser } from '@/lib/utils'
import CommonHead from '@/components/CommonHead'
import Footer from './components/Footer'
import InfoCard from './components/InfoCard'
import RevolverMaps from './components/RevolverMaps'
Expand Down Expand Up @@ -43,7 +42,7 @@ export const useGitBookGlobal = () => useContext(ThemeGlobalGitbook)
* @constructor
*/
const LayoutBase = (props) => {
const { children, meta, post, allNavPages, slotLeft, slotRight, slotTop } = props
const { children, post, allNavPages, slotLeft, slotRight, slotTop } = props
const { onLoading } = useGlobal()
const router = useRouter()
const [tocVisible, changeTocVisible] = useState(false)
Expand All @@ -58,7 +57,6 @@ const LayoutBase = (props) => {

return (
<ThemeGlobalGitbook.Provider value={{ tocVisible, changeTocVisible, filteredPostGroups, setFilteredPostGroups, allNavPages, pageNavVisible, changePageNavVisible }}>
<CommonHead meta={meta} />
<Style/>

<div id='theme-gitbook' className='bg-white dark:bg-hexo-black-gray w-full h-full min-h-screen justify-center dark:text-gray-300'>
Expand Down
4 changes: 2 additions & 2 deletions themes/heo/components/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ const NavBar = props => {
</div>

{/* 右侧固定 */}
<div className='flex flex-shrink-0 justify-center items-center space-x-1'>
<div className='flex flex-shrink-0 justify-center items-center'>
<RandomPostButton {...props} />
<SearchButton />
<SearchButton {...props}/>
{!JSON.parse(BLOG.THEME_SWITCH) && <div className='hidden md:block'><DarkModeButton {...props} /></div>}
<ReadingProgress />

Expand Down
4 changes: 2 additions & 2 deletions themes/heo/components/SearchButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useRef } from 'react'
* 搜索按钮
* @returns
*/
export default function SearchButton() {
export default function SearchButton(props) {
const { locale } = useGlobal()
const router = useRouter()
const searchModal = useRef(null)
Expand All @@ -25,6 +25,6 @@ export default function SearchButton() {
<div onClick={handleSearch} title={locale.NAV.SEARCH} alt={locale.NAV.SEARCH} className='cursor-pointer hover:bg-black hover:bg-opacity-10 rounded-full w-10 h-10 flex justify-center items-center duration-200 transition-all'>
<i title={locale.NAV.SEARCH} className="fa-solid fa-magnifying-glass" />
</div>
<AlgoliaSearchModal cRef={searchModal} />
<AlgoliaSearchModal cRef={searchModal} {...props}/>
</>
}
4 changes: 1 addition & 3 deletions themes/heo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,10 @@ import LazyImage from '@/components/LazyImage'
* @constructor
*/
const LayoutBase = props => {
const { children, headerSlot, slotTop, slotRight, meta, siteInfo, className } = props
const { children, headerSlot, slotTop, slotRight, siteInfo, className } = props

return (
<div id='theme-heo' className='bg-[#f7f9fe] dark:bg-[#18171d] h-full min-h-screen flex flex-col'>
{/* 网页SEO */}
<CommonHead meta={meta} siteInfo={siteInfo} />
<Style />

{/* 顶部嵌入 导航栏,首页放hero,文章页放文章详情 */}
Expand Down
Loading

0 comments on commit beeed7f

Please sign in to comment.