Files
notion-theme/gitbook/components/SearchInput.js

160 lines
3.9 KiB
JavaScript

import { siteConfig } from '@/lib/config'
import { deepClone } from '@/lib/utils'
import { useGitBookGlobal } from '@/themes/gitbook'
import { useImperativeHandle, useRef, useState } from 'react'
import { useHotkeys } from 'react-hotkeys-hook'
let lock = false
/**
* 搜尋列
*/
const SearchInput = ({ currentSearch, cRef, className }) => {
const searchInputRef = useRef()
const { searchModal, setFilteredNavPages, allNavPages } = useGitBookGlobal()
useImperativeHandle(cRef, () => {
return {
focus: () => {
searchInputRef?.current?.focus()
}
}
})
/**
* 快捷鍵設定
*/
useHotkeys('ctrl+k', e => {
searchInputRef?.current?.focus()
e.preventDefault()
handleSearch()
})
const handleSearch = () => {
// 使用 Algolia
if (siteConfig('ALGOLIA_APP_ID')) {
searchModal?.current?.openSearch()
}
let keyword = searchInputRef.current.value
if (keyword) {
keyword = keyword.trim()
} else {
setFilteredNavPages(allNavPages)
return
}
const filterAllNavPages = deepClone(allNavPages)
for (let i = filterAllNavPages.length - 1; i >= 0; i--) {
const post = filterAllNavPages[i]
const articleInfo = post.title + ''
const hit = articleInfo.toLowerCase().indexOf(keyword.toLowerCase()) > -1
if (!hit) {
// 刪除
filterAllNavPages.splice(i, 1)
}
}
// 更新完成
setFilteredNavPages(filterAllNavPages)
}
/**
* Enter 鍵
* @param {*} e
*/
const handleKeyUp = e => {
// 使用 Algolia
if (siteConfig('ALGOLIA_APP_ID')) {
searchModal?.current?.openSearch()
return
}
if (e.keyCode === 13) {
// Enter
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 = ''
handleSearch()
setShowClean(false)
}
const [showClean, setShowClean] = useState(false)
const updateSearchKey = val => {
if (lock) {
return
}
searchInputRef.current.value = val
if (val) {
setShowClean(true)
} else {
setShowClean(false)
}
}
function lockSearchInput() {
lock = true
}
function unLockSearchInput() {
lock = false
}
return (
<div className={`${className} relative`}>
<div
className='absolute left-0 ml-4 items-center justify-center py-2'
onClick={handleSearch}>
<i
className={
'hover:text-black transform duration-200 text-gray-500 dark:hover:text-gray-300 cursor-pointer fas fa-search'
}
/>
</div>
<input
ref={searchInputRef}
type='text'
className={`rounded-lg border dark:border-black pl-12 leading-10 placeholder-gray-500 outline-none w-full transition focus:shadow-lg text-black bg-gray-100 dark:bg-black dark:text-white`}
onFocus={handleFocus}
onKeyUp={handleKeyUp}
placeholder='Search'
onCompositionStart={lockSearchInput}
onCompositionUpdate={lockSearchInput}
onCompositionEnd={unLockSearchInput}
onChange={e => updateSearchKey(e.target.value)}
defaultValue={currentSearch}
/>
<div
className='absolute right-0 mr-4 items-center justify-center py-2 text-gray-400 dark:text-gray-600'
onClick={handleSearch}>
Ctrl+K
</div>
{showClean && (
<div className='-ml-12 cursor-pointer flex float-right items-center justify-center py-2'>
<i
className='fas fa-times hover:text-black transform duration-200 text-gray-400 cursor-pointer dark:hover:text-gray-300'
onClick={cleanSearch}
/>
</div>
)}
</div>
)
}
export default SearchInput