Resource config
Resource is type of data to describe API endpoint. In general Resource is an Object with next options:
Option | Date type | isRequired |
---|---|---|
namespace | String | true |
endpoint | String | false |
forceUpdates | Boolean | false |
queries | Array<String> | false |
reducer | String|Function | false |
baseURL | String | false |
cache | cacheConfig | false |
transformValue | function | false |
transformErrors | function | false |
namespace
This is the main option and only 1 required. This option will be used to setup:
- key in redux store to save data
- property name to pass to Component using HOC's
namespace
simple The most common usage is to define namespace
as a string key in Redux
namespace
as dynamic Url
You can define namespace
as an Url with dynamic arguments. In this case namespace
will be used as endpoint
and original value of namespace
will be string without all dynamic parts
namespace
as Url
You can define namespace
as an Url. In this case namespace
will be used as endpoint
and original value of namespace
will be cammelCased string without all dynamic parts
endpoint
endpoint is URL String to describe your HTTP request. This field is not required and by default equals to namespace
To have dynamic url config you can use path-to-regex syntax.
Basic ussage
Missed endpoint
Dynamic endpoint
caution
endpoint
should not contain trailing slashes
forceUpdates
A boolean indicator that controls if it needed to store filters, loading, and errors in redux store. Default false
This is common usage for form submit actions where you don't need to save errors and loading states in redux.
queries
Array of possible query params. It is recommended to pass here all possible query params that are defined in your Swagger schema.
caution
It is important to define queries
if you need to send HTTP request with query string.
Otherwise your get requests will be without filters even if you pass it to fetch
function
Bad
Good
tip
queryString will only work for GET requests. If you need to send HHTP a query string with what ever else HTTP request type, you need to pass queries once more as overrides meta.
For example POST /cars?country=uk
Bad
Good
reducer
Function that will be called in redux reducer. Default 'replace'
.
By default connect resources has already defined 4 types of most reusable reducers.
And you may use it as a String.
Or you can create your own reducer and pass is as a function
object
reducer
Merge prev state and action payload
none
reducer
Do not change store data
replace
reducer
Skip store data and use action payload
infinityList
reducer
This is the most complex type of reducers that works for endpoint with list data types
infinityList
helpful when you work with infinity List to load next items on scroll to bottom. The basic idea of infinity lists is that when u first enter the page you need to send GET request for first n
rows and on scroll end send one more request to get next batch of data and join 2 array. Next problem is inline editing.
custom reducer function
You may create your own logic for reducer. For example:
caution
Creating your own reducer, please pay attention to Redux Style Guide
baseURL
By default API
module is configured to use the base URL prefix /api/
.
That means that you can use an endpoint like users
that will send HTTP requests to /api/users
URL.
To change default /api/
value you can use baseURL
config
caution
Please check that you add /
at the end of the baseURL
config
Bad
Good
cache
Cache module configuration to store API data in storage. For more info, use the link
transformValue
Function to modify API responce data before passing to React component and caching
transformErrors
Function to modify API responce errors before passing to React component
Simple syntax
As you may remember that Resource
object has only 1 required option (namespace), you can use more light syntax to define Resource as a String