react-request icon indicating copy to clipboard operation
react-request copied to clipboard

Declarative HTTP requests for React

Results 19 react-request issues
Sort by recently updated
recently updated
newest added

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:...

help wanted
refactor

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...

question

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...

enhancement
help wanted
breaking

**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...

enhancement
revisit

- [x] Create a table that lists all of the `` props ( #162 ) - [ ] Add limitations ( #138 ) - [ ] Emphasize proper usage of...

documentation

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...

tests

`` 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...

question

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...

refactor

I should add the one missing test to hit 100% code coverage :v: ![image](https://user-images.githubusercontent.com/2322305/39228329-6d2854c2-4812-11e8-984b-88d58a042bf8.png)

tests