Questions tagged [react-redux-firebase]
192 questions
0
votes
1 answer
TypeError: Cannot read property 'then' of undefined in my custom function
I am working on my react-app and I am now using react-redux-firebase. Following the step. I want to make it synchronize and use setState() method.
It shows the error:
TypeError: Cannot read property 'then' of undefined
dbGetDate.js
const…

MoMo WongHK
- 5
- 6
0
votes
1 answer
Material-UI Switch status is not being updated from DB value
The Material-ui Switch is not updating when the firebase value is updated.
I posted just a part of the code here, the full Demo is available on CodeSandbox.
The project is connected to firebase and using depenedncies as: react-redux-firebase,…

Cristian Muscalu
- 9,007
- 12
- 44
- 76
0
votes
1 answer
React-Redux-Firestore: Page Not Auto Reloading on Change in Firestore Data
I am making a react/redux app that is using a firestore database for storage and I was able to link up my app to firestore so that I can create, read, update, and destroy new data to firestore from within my app. The problem is, on one of my pages…

FrankTheTank
- 765
- 2
- 12
- 30
0
votes
1 answer
React Redux pass props to other component enhancer
I have 2 components, ReviewList and Review. ReviewList has a list of components Review and for each component Review has a property review.
I want to put some logic work on the component so I want to create an enhancer (Review.enhancer.js) to do…

Hugo Silva
- 517
- 1
- 6
- 11
0
votes
1 answer
React-Redux-Firebase and Redux-Firestore not populating my Redux state with data
I am a beginner using the above 2 libraries. I have some dummy employees data on my cloud firestore which I would like to get using react-redux-firebase and redux-firestore.
I have configured the redux store and added in the reducers but no…

Hendry Lim
- 1,929
- 2
- 21
- 45
0
votes
1 answer
Create user profile with user choice on firestore using redirect
I am creating a site using react-redux-firebase, and when a user logs in with facebook I want to create a profile that stores a user choice. I know how to define what to store with the profileFactory, but I don't know how to pass dynamic data coming…

Artur Carvalho
- 6,901
- 10
- 76
- 105
0
votes
1 answer
Reset Password Email with react-redux-firebase
I have a react-native project that is succesfully using react-redux-firebase. The documentation has a resetPassword() method, however it is mapped to Firebase's reset password method. React-redux-firebase seems to be missing a method mapped to…

krewllobster
- 405
- 5
- 8
0
votes
0 answers
Firebase load lada in specific range
I use firebase in React.js project.
in firebase I have such collection. there nearly 400 IDs:
users:{
'1JDJDHDHDSbBDBDB':20,
'2JDJDHDHDSbBDBDB':8,
'3JDJDHDHDSbBDBDB':23
...........
'3JDJDHDHDSbBDBDB':79
'3JDJDHDHDSbBDBDB':23
}
How to make…

Serhiy
- 1,893
- 9
- 30
- 48
0
votes
1 answer
navigation is not working using redux-saga
I am trying to navigate to Main Screen and code still work fine if the JS DEBUGGER is ON(running) but the problem is when i try to run my application when JS DEBUGGER is OFF(disable) and try to login at that time "yield…

ankit_morker
- 11
- 5
-1
votes
1 answer
history.push is slow to reload page when adding a new record
I'm pretty new to react and redux so this may be a silly question but I'll ask anyway as its driving me nuts and I want to fix it:
I have a LIST page which shows a list of records from Firebase Firestore. I'm loading that list as a connected state…

user3423377
- 19
- 1
- 1
-1
votes
2 answers
react-redux-firebase not populating profile in firebase reducer
react-redux-firebase isn't populating user profle in firebase reducer even after a successful signIn width auth.signInWithEmailAndPassword method and data exist users/${uid}.As I'm storing data in firestore so I've configured react-redux-firebase…

Ahsan Khan
- 21
- 1
- 3
-1
votes
1 answer
How to return component only when firebaseAuthIsReady
I decided to make component "reduxStore" (it is toplevel hoc in my project), where i'm creating a global store and make some config, including firebase middleware.
This is the code of component:
import React from 'react'
import { createStore,…

WhoIsDT
- 695
- 2
- 9
- 27