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.
29 lines
707 B
29 lines
707 B
import useSWR, { BareFetcher, SWRConfiguration } from 'swr'; |
|
|
|
import API_BASE_URL from '../lib/consts/API_BASE_URL'; |
|
|
|
import fetchJSON from '../lib/fetchers/fetchJSON'; |
|
|
|
type FetchHookResponse<D, E extends Error = Error> = { |
|
data?: D; |
|
error?: E; |
|
loading: boolean; |
|
}; |
|
|
|
const useFetch = <Data,>( |
|
url: string, |
|
options: SWRConfiguration<Data> & { |
|
fetcher?: BareFetcher<Data>; |
|
baseUrl?: string; |
|
} = {}, |
|
): FetchHookResponse<Data> => { |
|
const { fetcher = fetchJSON, baseUrl = API_BASE_URL, ...config } = options; |
|
|
|
const { data, error } = useSWR<Data>(`${baseUrl}${url}`, fetcher, config); |
|
|
|
const loading = !error && !data; |
|
|
|
return { data, error, loading }; |
|
}; |
|
|
|
export default useFetch;
|
|
|