Я создаю приложение на React-native, но у меня возникает такая проблема:
когда я вхожу в систему или регистрируюсь в моем приложении, аутентификация работает хорошо, но когда я пытаюсь получить мой userId, например: "getState (). auth.userId" в других действиях результат нулевой.
не могли бы вы помочь мне найти проблему, пожалуйста?
это приложение. js
const rootReducer = combineReducers({
friends : friendReducer,
auth : authReducer
})
const store = createStore(rootReducer,applyMiddleware(ReduxThunk));
export default function App() {
return (
<Provider store={store}>
<Navigator/>
</Provider>
);
}
auth reducer
const initialState = {
token: null,
userId: null
}
export default (state = initialState, action) => {
switch (action.type){
case SIGN_UP:
return {
token: action.payload.token,
userId: action.payload.localId
}
case LOGIN:
return {
token: action.payload.token,
userId: action.payload.localId
}
case LOGOUT:
return initialState
default:
return state
}
}
auth actions
export const SIGN_UP = 'SIGN_UP'
export const LOGIN = 'LOGIN'
export const AUTHENTICATE = 'AUTHENTICATE'
export const LOGOUT = 'LOGOUT'
export const authenticate = (localId, token, expiryTime) => {
return dispatch => {
dispatch(setLogOutTimer(expiryTime))
dispatch({type: LOGIN, payload :{localId: localId, token: token}})
}}
export const sign_up = (userId, token, expiryTime) => {
return dispatch => {
dispatch(setLogOutTimer(expiryTime))
dispatch({type: SIGN_UP, payload :{userId: userId, token: token}})
}}
export const signUp = (email,password) => {
return async dispatch => {
const response = await fetch(
'https://identitytoolkit.googleapis.com/v1/accounts:signUp?key=AIzaSyDu59dDOXxR1OakrD2iWam2zhRSEOZdddc',
{
method: 'POST',
headers: {
'Content-Type':'application/json'
},
body: JSON.stringify({
email: email,
password: password,
returnSecureToken: true
})
})
if (!response.ok){
const errorData = await response.json()
console.log(errorData)
const errorId = errorData.error.message
let message = 'something went wrong'
if (errorId == 'EMAIL_EXISTS'){
message= 'This email addess already exists!'
}
throw new Error(message)
}
const resData = await response.json()
console.log(resData)
dispatch(sign_up(
resData.localId,
resData.idToken,
parseInt(resData.expiresIn )* 1000 ))
const expiration = new Date(new Date().getTime() + parseInt(resData.expiresIn) * 1000)
saveDataToStorage(resData.idToken, resData.localId, expiration)
}
}
export const login = (email,password) => {
return async dispatch => {
const response = await fetch(
'https://identitytoolkit.googleapis.com/v1/accounts:signInWithPassword?key=AIzaSyDu59dDOXxR1OakrD2iWam2zhRSEOZdddc',
{
method: 'POST',
headers: {
'Content-Type':'application/json'
},
body: JSON.stringify({
email: email,
password: password,
returnSecureToken: true
})
})
if (!response.ok){
const errorData = await response.json()
console.log(errorData)
const errorId = errorData.error.message
let message = 'something went wrong'
if (errorId == 'EMAIL_NOT_FOUND'){
message= 'We can not find this email, sorry!'
}else if (errorId == 'INVALID_PASSWORD'){
message = 'this password is not valid, sorry'
}
throw new Error(message)
}
const resData = await response.json()
console.log('printing resData...')
console.log(resData)
console.log(resData.localId)
dispatch(authenticate(resData.localId, resData.idToken, parseInt(resData.expiresIn) * 1000))
const expiration = new Date(new Date().getTime() + parseInt(resData.expiresIn) * 1000)
saveDataToStorage(resData.idToken, resData.localId, expiration)
}
}
и вот еще одно действие, в котором я пытаюсь получить userId из редуктора auth (это проверка нуля в базе данных Firebase , поэтому я думаю, что моя проблема здесь ...):
export const addFriend = friend => {
return async (dispatch, getState) => {
const userId = getState().auth.userId
const response = await fetch(`https://placeyou-84d85.firebaseio.com/friends/${userId}.json`, {
method: 'POST',
headers: {
'Content-Type' : 'application/json' },
body: JSON.stringify({ ecc....
спасибо всем постараюсь мне помочь.