Created
May 17, 2020 02:49
-
-
Save felipevlima/aa2666b6b69aff0beb499695b94ad862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import useSWR, { ConfigInterface, responseInterface } from 'swr' | |
import axios, { AxiosRequestConfig, AxiosResponse, AxiosError } from 'axios' | |
export type GetRequest = AxiosRequestConfig | null | |
interface Return<Data, Error> | |
extends Pick< | |
responseInterface<AxiosResponse<Data>, AxiosError<Error>>, | |
'isValidating' | 'revalidate' | 'error' | |
> { | |
data: Data | undefined | |
response: AxiosResponse<Data> | undefined | |
} | |
export interface Config<Data = unknown, Error = unknown> | |
extends Omit< | |
ConfigInterface<AxiosResponse<Data>, AxiosError<Error>>, | |
'initialData' | |
> { | |
initialData?: Data | |
} | |
export default function useRequest<Data = unknown, Error = unknown>( | |
request: GetRequest, | |
{ initialData, ...config }: Config<Data, Error> = {} | |
): Return<Data, Error> { | |
const { data: response, error, isValidating, revalidate } = useSWR< | |
AxiosResponse<Data>, | |
AxiosError<Error> | |
>( | |
request && JSON.stringify(request), | |
/** | |
* NOTE: Typescript thinks `request` can be `null` here, but the fetcher | |
* function is actually only called by `useSWR` when it isn't. | |
*/ | |
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion | |
() => axios(request!), | |
{ | |
...config, | |
initialData: initialData && { | |
status: 200, | |
statusText: 'InitialData', | |
config: request, | |
headers: {}, | |
data: initialData | |
} | |
} | |
) | |
return { | |
data: response && response.data, | |
response, | |
error, | |
isValidating, | |
revalidate | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment