Algolia搜索

This commit is contained in:
tangly1024.com
2023-07-24 17:51:51 +08:00
parent df42d7136d
commit cc59e5cf92
6 changed files with 149 additions and 10 deletions

View File

@@ -1,9 +1,30 @@
import BLOG from '@/blog.config'
import { useGlobal } from '@/lib/global'
import Link from 'next/link'
import { useRouter } from 'next/router'
import AlgoliaSearchModal from '@/components/AlgoliaSearchModal'
import { useRef } from 'react'
/**
* 搜索按钮
* @returns
*/
export default function SearchButton() {
const { locale } = useGlobal()
return <Link href="/search" 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"/>
</Link>
const router = useRouter()
const searchModal = useRef(null)
function handleSearch() {
if (BLOG.ALGOLIA_APP_ID) {
searchModal.current.openSearch()
} else {
router.push('/search')
}
}
return <>
<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} />
</>
}