You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
import { SEARCHABLE_RELAY_URLS } from '@/constants' |
|
import { useFeed } from '@/providers/FeedProvider' |
|
import client from '@/services/client.service' |
|
import { TProfile } from '@/types' |
|
import { useEffect, useState } from 'react' |
|
import { useFetchRelayInfos } from './useFetchRelayInfos' |
|
|
|
export function useSearchProfiles(search: string, limit: number) { |
|
const { relayUrls } = useFeed() |
|
const { searchableRelayUrls } = useFetchRelayInfos(relayUrls) |
|
const [isFetching, setIsFetching] = useState(true) |
|
const [error, setError] = useState<Error | null>(null) |
|
const [profiles, setProfiles] = useState<TProfile[]>([]) |
|
|
|
useEffect(() => { |
|
const fetchProfiles = async () => { |
|
if (!search) { |
|
setProfiles([]) |
|
return |
|
} |
|
|
|
setIsFetching(true) |
|
setProfiles([]) |
|
try { |
|
const profiles = await client.fetchProfiles( |
|
searchableRelayUrls.concat(SEARCHABLE_RELAY_URLS).slice(0, 4), |
|
{ |
|
search, |
|
limit |
|
} |
|
) |
|
if (profiles) { |
|
setProfiles(profiles) |
|
} |
|
} catch (err) { |
|
setError(err as Error) |
|
} finally { |
|
setIsFetching(false) |
|
} |
|
} |
|
|
|
fetchProfiles() |
|
}, [searchableRelayUrls, search, limit]) |
|
|
|
return { isFetching, error, profiles } |
|
}
|
|
|