react-request
react-request copied to clipboard
Declarative HTTP requests for React
If I render the same `Fetch` with new url, first I get it's children rendered with previous state (old url, old data, etc.) It looks like the problem is known:...
Hi! Our app has two instances of the same Fetch component which are both rendered at the same time. When calling `doFetch` on one (which causes the cache to be...
I was wondering if you'd consider a slight change for non-lazy behavior. Right now it seems like you need to do: ```js {({ fetching, failed, data }) => { if...
**Heads up:** Subsequent requests are "fake-aborted" by React Request. The request still continues on, and the result will even be stored in the cache, but the render prop won't be...
- [x] Create a table that lists all of the `` props ( #162 ) - [ ] Add limitations ( #138 ) - [ ] Emphasize proper usage of...
This issue describes two changes that I want to make to the unit tests. 1. Fix the cancellation tests' race condition. I'm trying to keep track of how many times...
`` works well for parallel requests, but what is the solution for serial requests? Consider: 1. Get Data A from Endpoint A 2. Use Data A to make request to...
There are a few situations in React Request where the lib is using component state outside of render or event callbacks. This needs to be refactored to be accessed like...
I should add the one missing test to hit 100% code coverage :v: 