mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 06:10:22 +00:00
254 lines
7.6 KiB
TypeScript
254 lines
7.6 KiB
TypeScript
import { Bot, ResponseProps, Server } from '@types'
|
|
import Fetch from '@utils/Fetch'
|
|
import { makeBotURL, makeServerURL, redirectTo } from '@utils/Tools'
|
|
import dynamic from 'next/dynamic'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import { useEffect, useRef, useState } from 'react'
|
|
|
|
import Day from '@utils/Day'
|
|
import useOutsideClick from '@utils/useOutsideClick'
|
|
|
|
const DiscordAvatar = dynamic(() => import('@components/DiscordAvatar'))
|
|
const ServerIcon = dynamic(() => import('@components/ServerIcon'))
|
|
|
|
interface SearchProps {
|
|
compact?: boolean
|
|
}
|
|
|
|
const Search: React.FC<SearchProps> = ({ compact = false }) => {
|
|
const router = useRouter()
|
|
const ref = useRef()
|
|
const [query, setQuery] = useState('')
|
|
const [recentSearch, setRecentSearch] = useState([])
|
|
const [data, setData] = useState<ResponseProps<ListAll>>(null)
|
|
const [loading, setLoading] = useState(false)
|
|
const abortController = useRef(null)
|
|
const [hidden, setHidden] = useState(true)
|
|
useEffect(() => {
|
|
setQuery('')
|
|
setData(null)
|
|
setLoading(false)
|
|
try {
|
|
setRecentSearch(JSON.parse(localStorage.recentSearch))
|
|
} catch {
|
|
setRecentSearch([])
|
|
}
|
|
}, [router])
|
|
useOutsideClick(ref, () => setHidden(true))
|
|
|
|
useEffect(() => {
|
|
if (query.length < 2) {
|
|
setData(null)
|
|
return
|
|
}
|
|
const timeout = setTimeout(async () => {
|
|
setData(null)
|
|
try {
|
|
if (abortController.current) {
|
|
abortController.current.abort()
|
|
}
|
|
} catch (e) {
|
|
return null
|
|
}
|
|
abortController.current = new AbortController()
|
|
if (query.length > 1) setLoading(true)
|
|
const res = await Fetch<ListAll>(`/search/all?q=${encodeURIComponent(query)}`, {
|
|
signal: abortController.current.signal,
|
|
}).catch((e) => {
|
|
if (e.name !== 'AbortError') throw e
|
|
else return
|
|
})
|
|
abortController.current = null
|
|
setData(res || {})
|
|
setLoading(false)
|
|
}, 1000)
|
|
return () => {
|
|
clearTimeout(timeout)
|
|
try {
|
|
abortController.current?.abort()
|
|
abortController.current = null
|
|
} catch (e) {
|
|
return null
|
|
}
|
|
}
|
|
}, [query])
|
|
|
|
const onSubmit = () => {
|
|
if (query.length < 2) return
|
|
if (!localStorage.recentSearch) localStorage.recentSearch = '[]'
|
|
try {
|
|
const d = JSON.parse(localStorage.recentSearch).reverse()
|
|
if (d.findIndex((n) => n.value === query) !== -1)
|
|
d.splice(
|
|
d.findIndex((n) => n.value === query),
|
|
1
|
|
)
|
|
d.push({
|
|
value: query,
|
|
date: Date.now(),
|
|
})
|
|
d.reverse()
|
|
setRecentSearch(d.slice(0, 10))
|
|
localStorage.recentSearch = JSON.stringify(d.slice(0, 10))
|
|
} catch {
|
|
setRecentSearch([
|
|
{
|
|
value: query,
|
|
date: Date.now(),
|
|
},
|
|
])
|
|
localStorage.recentSearch = JSON.stringify(recentSearch)
|
|
} finally {
|
|
redirectTo(router, `/search/?q=${encodeURIComponent(query)}`)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className={`relative w-full z-10 ${compact ? '' : 'mt-5'}`}>
|
|
<div onFocus={() => setHidden(false)} ref={ref}>
|
|
<div className={`relative z-10 flex w-full items-center bg-white text-black dark:bg-very-black dark:text-gray-100 ${compact ? 'h-10 px-3 rounded-md' : 'rounded-lg'}`}>
|
|
<input
|
|
type='search'
|
|
maxLength={50}
|
|
className={`grow border-0 border-none bg-transparent pr-20 shadow outline-none ${compact ? 'h-10 text-sm' : 'h-16 px-7 py-3 text-xl'}`}
|
|
placeholder='검색...'
|
|
value={query}
|
|
onChange={(e) => {
|
|
setQuery(e.target.value)
|
|
}}
|
|
onKeyDown={(e) => {
|
|
if (e.key === 'Enter') {
|
|
onSubmit()
|
|
}
|
|
}}
|
|
/>
|
|
<button
|
|
className='absolute right-4 top-1/2 -translate-y-1/2 outline-none'
|
|
onClick={onSubmit}
|
|
>
|
|
<i className={`fas fa-search text-gray-600 hover:text-gray-700 ${compact ? 'text-sm' : 'text-2xl'}`} />
|
|
</button>
|
|
</div>
|
|
<div className={`relative ${hidden ? 'hidden' : 'block'} z-50`}>
|
|
<div className='absolute top-full mt-2 max-h-60 w-full overflow-y-auto rounded bg-white text-black shadow-md dark:bg-very-black dark:text-gray-100 md:h-80'>
|
|
<ul>
|
|
{data && data.code === 200 ? (
|
|
<div className='grid lg:grid-cols-2'>
|
|
<ul>
|
|
<li className='px-3 py-3.5 font-bold'>봇</li>
|
|
{data.data.bots.length === 0 ? (
|
|
<li className='px-3 py-3.5'>검색 결과가 없습니다.</li>
|
|
) : (
|
|
data.data.bots.map((el) => (
|
|
<Link key={el.id} href={makeBotURL(el)} legacyBehavior>
|
|
<li className='h-15 flex cursor-pointer px-3 py-2'>
|
|
<DiscordAvatar className='mt-1 h-12 w-12' size={128} userID={el.id} hash={el.avatar}/>
|
|
<div className='ml-2'>
|
|
<h1 className='text-lg text-black dark:text-gray-100'>{el.name}</h1>
|
|
<p className='text-sm text-gray-400'>{el.intro}</p>
|
|
</div>
|
|
</li>
|
|
</Link>
|
|
))
|
|
)}
|
|
</ul>
|
|
<ul>
|
|
<li className='px-3 py-3.5 font-bold'>서버</li>
|
|
{data.data.servers.length === 0 ? (
|
|
<li className='px-3 py-3.5'>검색 결과가 없습니다.</li>
|
|
) : (
|
|
data.data.servers.map((el) => (
|
|
<Link key={el.id} href={makeServerURL(el)} legacyBehavior>
|
|
<li className='h-15 flex cursor-pointer px-3 py-2'>
|
|
<ServerIcon className='mt-1 h-12 w-12' size={128} id={el.id} hash={el.icon} />
|
|
<div className='ml-2'>
|
|
<h1 className='text-lg text-black dark:text-gray-100'>{el.name}</h1>
|
|
<p className='text-sm text-gray-400'>{el.intro}</p>
|
|
</div>
|
|
</li>
|
|
</Link>
|
|
))
|
|
)}
|
|
</ul>
|
|
</div>
|
|
) : loading ? (
|
|
<ul>
|
|
<li className='px-3 py-3.5'>검색중입니다...</li>
|
|
</ul>
|
|
) : (
|
|
<ul className='px-3 py-3.5'>
|
|
{query && data ? (
|
|
data.message?.includes('문법') ? (
|
|
<li className='px-3 py-3.5'>
|
|
검색 문법이 잘못되었습니다.
|
|
<br />
|
|
<a
|
|
className='text-blue-500 hover:text-blue-400'
|
|
href='https://docs.koreanbots.dev/bots/usage/search'
|
|
target='_blank'
|
|
rel='noreferrer'
|
|
>
|
|
더 알아보기
|
|
</a>
|
|
</li>
|
|
) : (
|
|
<li className='px-3 py-3.5'>
|
|
{(data.errors && data.errors[0]) || data.message || '검색중입니다...'}
|
|
</li>
|
|
)
|
|
) : query.length === 0 ? (
|
|
!recentSearch || !Array.isArray(recentSearch) || recentSearch.length === 0 ? (
|
|
<li >최근 검색 기록이 없습니다.</li>
|
|
) : (
|
|
<>
|
|
<li className='h-15 cursor-pointer font-semibold'>
|
|
최근 검색어
|
|
<button
|
|
className='absolute right-0 pr-10 text-sm text-red-500 hover:opacity-90'
|
|
onClick={() => {
|
|
setRecentSearch([])
|
|
localStorage.recentSearch = '[]'
|
|
}}
|
|
>
|
|
전체 삭제
|
|
</button>
|
|
</li>
|
|
{recentSearch.slice(0, 10).map((el, n) => (
|
|
<Link
|
|
key={n}
|
|
href={`/search?q=${encodeURIComponent(el?.value)}`}
|
|
legacyBehavior
|
|
>
|
|
<li className='h-15 cursor-pointer px-3 py-2'>
|
|
<i className='fas fa-history' /> {el?.value}
|
|
<span className='absolute right-0 pr-10 text-sm text-gray-400'>
|
|
{Day(el?.date).format('MM.DD.')}
|
|
</span>
|
|
</li>
|
|
</Link>
|
|
))}
|
|
</>
|
|
)
|
|
) : query.length < 2 ? (
|
|
'최소 2글자 이상 입력해주세요.'
|
|
) : (
|
|
'검색어를 입력해주세요.'
|
|
)}
|
|
</ul>
|
|
)}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Search
|
|
|
|
interface ListAll {
|
|
bots: Bot[]
|
|
servers: Server[]
|
|
}
|