76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
|
import { useCallback, useEffect, useState, useRef } from 'react'
|
||
|
import InfiniteScroll from 'react-infinite-scroll-component'
|
||
|
|
||
|
import { useAuthentication } from 'utils/authentication'
|
||
|
import { GuildPublic } from 'models/Guild'
|
||
|
import { Loader } from 'components/design/Loader'
|
||
|
import { useFetchState } from 'hooks/useFetchState'
|
||
|
import { Guild } from './Guild'
|
||
|
|
||
|
export const JoinGuildsPublic: React.FC = () => {
|
||
|
const [guilds, setGuilds] = useState<GuildPublic[]>([])
|
||
|
const [hasMore, setHasMore] = useState(true)
|
||
|
const [inputSearch, setInputSearch] = useState('')
|
||
|
const [fetchState, setFetchState] = useFetchState('idle')
|
||
|
const afterId = useRef<number | null>(null)
|
||
|
|
||
|
const { authentication } = useAuthentication()
|
||
|
|
||
|
const fetchGuilds = useCallback(async (): Promise<void> => {
|
||
|
if (fetchState !== 'idle') {
|
||
|
return
|
||
|
}
|
||
|
setFetchState('loading')
|
||
|
const { data } = await authentication.api.get<GuildPublic[]>(
|
||
|
`/guilds/public?limit=20&search=${inputSearch}${
|
||
|
afterId.current != null ? `&after=${afterId.current}` : ''
|
||
|
}`
|
||
|
)
|
||
|
afterId.current = data.length > 0 ? data[data.length - 1].id : null
|
||
|
setGuilds((oldGuilds) => {
|
||
|
return [...oldGuilds, ...data]
|
||
|
})
|
||
|
setHasMore(data.length > 0)
|
||
|
setFetchState('idle')
|
||
|
}, [authentication, fetchState, setFetchState, inputSearch])
|
||
|
|
||
|
useEffect(() => {
|
||
|
afterId.current = null
|
||
|
setGuilds([])
|
||
|
fetchGuilds().catch((error) => {
|
||
|
console.error(error)
|
||
|
})
|
||
|
}, [inputSearch]) // eslint-disable-line react-hooks/exhaustive-deps
|
||
|
|
||
|
const handleChange = (event: React.ChangeEvent<HTMLInputElement>): void => {
|
||
|
setInputSearch(event.target.value)
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<input
|
||
|
data-cy='search-guild-input'
|
||
|
onChange={handleChange}
|
||
|
className='w-10/12 sm:w-8/12 md:w-6/12 lg:w-5/12 bg-white dark:bg-[#3B3B3B] border-gray-500 dark:border-gray-700 p-3 my-6 mt-16 mx-auto rounded-md border'
|
||
|
type='search'
|
||
|
name='search-guild'
|
||
|
placeholder='🔎 Search...'
|
||
|
/>
|
||
|
<div className='w-full flex items-center justify-center p-12'>
|
||
|
<InfiniteScroll
|
||
|
className='guilds-list max-w-[1600px] grid grid-cols-1 xl:grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-8 !overflow-hidden'
|
||
|
dataLength={guilds.length}
|
||
|
next={fetchGuilds}
|
||
|
scrollableTarget='application-page-content'
|
||
|
hasMore={hasMore}
|
||
|
loader={<Loader />}
|
||
|
>
|
||
|
{guilds.map((guild) => {
|
||
|
return <Guild guild={guild} key={guild.id} />
|
||
|
})}
|
||
|
</InfiniteScroll>
|
||
|
</div>
|
||
|
</>
|
||
|
)
|
||
|
}
|