FirebaseExtended / FirebaseExtended/reactfire
useFirestoreCollection triggers a double render
- Lingua principale
- TypeScript
- Stelle
- 3.6k
- Fork
- 403
- Merge medio
- 14h 53m
- PR unite (30g)
- 5
Descrizione
Hi,
Seems like `useFirestoreCollection` always triggers unnecessary render when fetching data (suspense is **on**). Similar behavior is also the case for `useUser`.
There's a chance I'm simply using the API wrong, so please advise if so :)
### Version info
**React:** 17.0.2
**Firebase:** 9.1.3
**ReactFire:** 4.2.0
### Test case
```javascript
const q = /* whatever query */;
const queryResults = useFirestoreCollection(q);
console.log(queryResults);
```
### Expected behavior
`console.log` is called once.
### Actual behavior
`console.log` is called twice.
Ultimately, what I'm trying to achieve is a code similar to the one below
```javascript
const queryResults = useFirestoreCollection(query);
return queryResults.data.docs.map((d) => /* render */);
```
that renders only once when the data is fetched (and then only when there're changes in the collection).
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.