Custom Resource
connectResource will add all possible methods to work with standard REST API.
But what if you need something more then sending 1 HTTP request, what if you have more complex logic?
In this case you may need to use customresource
customresource
is a function that takes 1 argument async
function and returns modified connectResource function.
modified means that you will still have all props that you have with simple customresource
, but in additional you will have one more async property in your React Component this.props[namespace].request
that run your custom async action instead of sending 1 HTTP request based on REST.
Basic usage
Creating async function
danger
Note that async function that is passed to customResource
should return Promise
Function callback accepts 2 arguments:
API
Instance of API.
tip
It is recommended to use API module for sending HTTP request.
API already has global interceptor to handle 401 to logout user, so that you don't need to handle this exception.
API returns special type of Promise that has cancel
method to terminate request.
payload
Action payload, or params that will be passed to request
function
meta
Resource configuration
store
Configure resource
customresource
function returns same function as connectResources. To get the HOC you will need to pass Resource config
simple
You can define namespace as a String
Resource object
You can define namespace as a String