prefetchResources
prefetchResources HOC that calls async action to retrieve remote data when your component mounts to the DOM.
Standard work flow
The main idea is that in most cases when you need to render some React Element you may need to send HTTP request to retrieve some remote data and then draw your widget. To do this you basically need to implement next logic
- using React life cycle methods, send HTTP request when your Component will be mounted to the DOM
- Show loading indicator while fetching remote data
- Terminate pending HTTP request when Component will be unmounted from the DOM
- clear Redux store data for given Component.
All this things are already implemented with prefetchResources
, so that you can safe your time and do not duplicate your code.
API
resources
Resources is Resource config, or Array<ResourceConfig>
options
Object with additional configurations
Property | type | Default |
---|---|---|
refresh | Boolean | true |
destroyOnUnmount | Boolean | true |
defaultParams | Object | null |
Loader | React Element | ({ isLoading, children})=> isLoading? null : children |
method | "POST" or "GET" | "GET" |
refresh
Boolean flag that mostly will used in pair with destroyOnUnmount = false
.
In general this flag helps to control if it is needed to send HTTP request once more in case there is already redux data under this namespace.
In this example there is already all data in store to render Users List React Component. In case refresh
option is false
, prefetchResources
HOC will NOT send initial GET request. This is mostly performance flag to do not send same HTTP requests.
destroyOnUnmount
Boolean flag to configure if you need to store data after your Component will be removed from the DOM or not.
For example:
- Redux store is empty
- React renders Component with
prefetchResources
HOC
- After your element appears in the DOM,
prefetchResources
HOC will send GET/users
HTTP request and store data in redux. Now in redux store is
- Component unmount from the DOM.
If
destroyOnUnmount=true
,prefetchResources
dispatchesclear
action. So that redux store will be
defaultParams
Default params is an optional param to pass hard-coded values to initial HTTP request.
GET /api/users?offset=0&limit=25
on Component mount
caution
Please do not forget that you need to define queries
in Resource configs)
Loader
React Element that will be shown while initial request is pending.
important
This component will be shown only when initial request is pending.
By default prefetchResources
will not render your Component while initial request is pending.
If you want to show your own loader you can create your Loader Component for example.
Loader component accepts 2 props isLoading
and children
.
Custom Resource
You can use customResource with prefetchResources
to call your custom async function on Component mount
Several resources
caution
Please do not use React life-cycle methods to send HTTP request on mount by your own. It is important to use prefetchResources for several reasons:
- do not duplicate code
- do not loose implementation that is already done in prefetchResources