React component to declaratively fetch data
yarn add react-fetch-component
or
npm install --save react-fetch-component
You supply a single function as a child of <Fetch />
which receives a single argument as an object. The function will be called anytime the state of the fetch request changes (for example, before a request has been made, while the request is in flight, and after the request returned a response).
While you can pass a single property to the function (for example, (fetchProps) => ...
), it is common to instead use object destructuring to peel off the properties on the object you plan to use.
An example of destructing and using the most common properties loading
, error
, and data
.
<Fetch url="someUrl">
{ ({ loading, error, data }) => (
<div>
{ loading && {/* handle loading here */} }
{ error && {/* handle error here */} }
{ data && {/* handle data here */}}
</div>
)}
</Fetch>
url
(string) - address of the request. Initial fetch will only be created when it's a non-empty string. You can initially set this toundefined
,false
, or an empty string to delay the fetch to a later render.options
(object|function) - request options such asmethod
,headers
,credentials
, etc. If passed as a function, it will not be evaluated until the request is sent, which is useful when calling expensive methods likeJSON.stringify
foroptions.body
for example.- see Request properties for all available options.
as
- declare how to handle the response body- default:
json
- can be set to any body method including:
arrayBuffer
blob
formData
json
text
- default:
cache
(boolean) - If true, will cache responses byurl
and return from cache without issuing another request. Useful for typeahead features, etc.- default:
false
- default:
manual
(boolean) - Iftrue
, requires callingfetch
explicitly to initiate requests. Useful for better control of POST/PUT/PATCH requests.- default:
false
- default:
onDataChange
(function) - Function called only when data is changed. It is called beforeonChange
, and if a result is returned (i.e. notundefined
), this value will be used asdata
passed toonChange
and the child function instead of the original data.onDataChange
also receives the current data as the second parameter, which allows for concatenating data (ex. infinity scroll).onChange
(function) - Function called with same props as child function. Useful to callsetState
(or dispatch a redux action) since this is not allowed withinrender
.onChange
will always be called even if<Fetch />
component has been unmounted.- default:
undefined
- default:
loading
- Set to
true
while request is pending - Set to
false
once response has returned
- Set to
error
- Is
undefined
while request is pending - Will be set to the parsed response body (
json
by default) if!response.ok
(i.e. status < 200 || status >= 300) - Will be set to an
Error
instance if thrown during the request (ex. CORS issue) or if thrown while attemping to parse the response body, such as returning text/html whenjson
was expected (which is the default parser) - Will remain
undefined
if neither of the previous occur
- Is
data
- Is
undefined
while request is pending - Set to parsed response body (
json
by default) unless one of theerror
conditions occur
- Is
request
- Set to an object containing the props passed to the component (
url
,options
, etc) when request is sent. - Added for convenience when
<Fetch />
is wrapped by your own data component (ex.<UserData />
)
- Set to an object containing the props passed to the component (
response
- Set to the response of the
fetch
call - Useful to check the status code/text, headers, etc
- Set to the response of the
fetch
- Function that can be called to create a new fetch request (useful when last request had an error or you want to manually refresh the data (see
manual
prop)) - The first 2 parameters match
window.fetch
(url
,options
). A third parameter (updateOptions
) is available to pass options to the update phase (whereonChange
,onDataChange
, and the child render function is called). Currently only 1 option is available (ignorePreviousData
) which passesundefined
as the current data (second parameter) toonDataChange
, which is useful when usingonDataChange
to concatenate data across requests (ie. infinite loading) and the query changes
- Function that can be called to create a new fetch request (useful when last request had an error or you want to manually refresh the data (see
clearData
- Function to clear data state.
<Fetch url="someUrl" options={{ credentials: 'include' }}>
{/* ... */}
</Fetch>
More interactive examples on CodeSandbox
- react-odata - uses
<Fetch />
for OData endpoints