mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 07:26:48 +00:00
96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import { useRouter } from 'next/router'
|
|
import { useImperativeHandle, useRef, useState } from 'react'
|
|
import { useFukasawaGlobal } from '@/themes/fukasawa'
|
|
import { siteConfig } from '@/lib/config'
|
|
|
|
const SearchInput = (props) => {
|
|
const { keyword, cRef } = props
|
|
const { searchModal } = useFukasawaGlobal()
|
|
const [onLoading, setLoadingState] = useState(false)
|
|
const { locale } = useGlobal()
|
|
const router = useRouter()
|
|
const searchInputRef = useRef()
|
|
useImperativeHandle(cRef, () => {
|
|
return {
|
|
focus: () => {
|
|
searchInputRef?.current?.focus()
|
|
}
|
|
}
|
|
})
|
|
|
|
/**
|
|
* 搜索
|
|
*/
|
|
const handleSearch = () => {
|
|
if (siteConfig('ALGOLIA_APP_ID')) {
|
|
searchModal?.current?.openSearch()
|
|
}
|
|
const key = searchInputRef.current.value
|
|
if (key && key !== '') {
|
|
setLoadingState(true)
|
|
router.push({ pathname: '/search/' + key }).then(r => {
|
|
setLoadingState(false)
|
|
})
|
|
// location.href = '/search/' + key
|
|
} else {
|
|
router.push({ pathname: '/' }).then(r => {
|
|
})
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 监听事件
|
|
* @param {*} e
|
|
*/
|
|
const handleKeyUp = (e) => {
|
|
if (siteConfig('ALGOLIA_APP_ID')) {
|
|
searchModal?.current?.openSearch()
|
|
return
|
|
}
|
|
if (e.keyCode === 13) { // 回车
|
|
handleSearch(searchInputRef.current.value)
|
|
} else if (e.keyCode === 27) { // ESC
|
|
cleanSearch()
|
|
}
|
|
}
|
|
const handleFocus = () => {
|
|
// 使用Algolia
|
|
if (siteConfig('ALGOLIA_APP_ID')) {
|
|
searchModal?.current?.openSearch()
|
|
}
|
|
}
|
|
/**
|
|
* 清理索引
|
|
*/
|
|
const cleanSearch = () => {
|
|
searchInputRef.current.value = ''
|
|
}
|
|
|
|
return <div className='flex w-full bg-gray-100'>
|
|
<input
|
|
ref={searchInputRef}
|
|
type='text'
|
|
placeholder={locale.SEARCH.ARTICLES}
|
|
aria-label="Search"
|
|
className={'outline-none w-full text-sm pl-2 transition focus:shadow-lg font-light leading-10 text-black bg-gray-100 dark:bg-gray-800 dark:text-white'}
|
|
onKeyUp={handleKeyUp}
|
|
onFocus={handleFocus}
|
|
defaultValue={keyword || ''}
|
|
/>
|
|
|
|
<div className='-ml-8 cursor-pointer float-right items-center justify-center py-2'
|
|
onClick={handleSearch}>
|
|
<i className={`hover:text-black transform duration-200 text-gray-500 cursor-pointer fas ${onLoading ? 'fa-spinner animate-spin' : 'fa-search'}`} />
|
|
</div>
|
|
|
|
{(keyword && keyword.length &&
|
|
<div className='-ml-12 cursor-pointer flex float-right items-center justify-center py-2'>
|
|
<i className='hover:text-black transform duration-200 text-gray-400 cursor-pointer fas fa-times' onClick={cleanSearch} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
}
|
|
|
|
export default SearchInput
|