withLazyData
Params:
options: HocOptionsurl: stringname: stringqueryParams: Record<string, any>fetchOptions: RequestInit = {}dataOptions: DataHookOptions
To learn more about what
dataOptionscan be passed, go here.
Example usage:
const MyComponent = () => {const [fetchData, { data, loading, error, refetch }] = this.props.pokemonData;return (!data? <button onClick={fetchData}>Click me to load data</button>: <div>The data is: {JSON.stringify(data)}</div>);};export default withLazyData({// the url string of the endpoint we will send request tourl: 'https://pokeapi.co/api/v2/pokemon/4/',// the name of the prop the data will be injected toname: 'pokemonData',// Object of query paramsqueryParams: {},// Any options that you normally pass to `fetch()`fetchOptions: {method: 'GET',},// dataOptions object. Used to configure some behaviors.dataOptions: {ssr: false,},})(MyComponent);
The response from the REST endpoint will be parsed as JSON, and will throw an error if it is not a valid JSON. The response will be available in the data variable.
The HOC will inject a 2-element array as a props named name (depending on the name you passed to the HOC). The first element of the array will be the fetchData() function, and the second element will be an object with similar keys to what is injected by withData():
fetchData(): Promise<any>A function that will send the request to the endpoint. You can use this inside an event handler such as
onClickto trigger the request on demand. The promise will resolve with the data from the endpoint with exactly the same value asdata. Fetching data this way will respect thefetchPolicy.data <any>The JSON response from the endpoint.
loading <boolean>A
booleanvalue that determine whether a request is currently in-flighterror <Error | null>The
Errorobject, if any error happened during the network request.nullif no error happened.refetch: () => Promise<any>A function that will trigger refetching data from network. Fetching data from network this way will always bypass the cache, no matter what the
fetchPolicyis set to.
Which are basically exactly the same as what useLazyData() is returning.
Supported methods
Same as useLazyData(), all HTTP methods are supported. But, only GET requests are cached.