- PropTypes (include children as function) and/or Flow
- Do not allow multiple inflight fetch requests?
- Add
debounce
/throttle
- Add
- Setup UMD build
- Examples
- Wrapping in own data component
- How to use wtih
react-select
/ material-ui'sAutoComplete
- Show setting
manual
but using URL generated to create a link (download button). Maybe better to add to react-odata - POST/PATCH examples (passing
body
, setting headers (Content-Type
, etc))manual
with button to trigger
- Compositon
- Fetching items at the same time (peers or nested components)
- Fetching after another completes (needs info from first query) -
data && <Fetch />
- Using
onChange
to callthis.setState()
or dispatch a redux action.this.setState()
within render (children function) will raise:- "Warning: setState(...): Cannot update during an existing state transition (such as within
render
or another component's constructor side-effects are an anti-pattern, but can be moved tocomponentWillMount
)"
- "Warning: setState(...): Cannot update during an existing state transition (such as within
- Pagination
- concating new results to previous using
onDataChange
- concating new results to previous using
- Loading more (at bottom)
- Interceptors / Middleware
- Request (setting Authorization header, other default headers, etc)
- Response (handling 401 to redirect to login, etc)
- Reload button on error
- http://visionmedia.github.io/superagent/
- http://aurelia.io/hub.html#/doc/article/aurelia/fetch-client/latest/http-services/2