withInfinityList
Function that returns HOC to work with infinity lists.
resource
Resource config or Custom Resource
options
Object with additional configurations. To read more visit this link
Property | type | Default |
---|---|---|
refresh | Boolean | true |
destroyOnUnmount | Boolean | true |
defaultParams | Object | null |
Loader | React Element | |
method | 'GET' | POST |
prefetch | Boolean | true |
Most configurations are same with prefetchResources
. But here is one new param prefetch
prefetch
Boolean flag to configure if withInfinityList
HOC needs to send initial API request.
Usage
withInfinityList will pass 3 more additional props to your component:
loadNext
Function that could be used on scroll end. This will automatically increment offset by limit and concatenates previous data with new batch of data.
caution
loadNext will only work with offset
limit
pagination type
onRefresh
Function to refresh list data. In most case it is pull down to refresh. This will automatically set offset to 0 and replace previous data in redux with new one
isRefreshing
Boolean indicator that shows if refresh is pending
onSearch
onSearch
function to handle what ever filter requests.
This function has debounce 300 to have ability to use it for on air search.
Also pending search requests will be terminated on component unmount and each next search request will terminate previous search request.