Answer the question
In order to leave comments, you need to log in
Why does authorization fail after page refresh?
There is an application on React, with authorization and all the cases. For some reason, authorization crashes when the page is refreshed.
I save the token and timeout in localStorage. There at login everything is recorded correctly.
Based on this, I reasonably suspect that I messed up somewhere during the check. But I can't figure out where.
Here is authCheckState , which is supposed to check the data from localStorage and if everything is in order, initialize authSuccess with the desired token.
export const authCheckState = () => {
return dispatch => {
const token = localStorage.getItem('token');
if (token === undefined) {
dispatch(authLogout());
} else {
const expirationDate = new Date(localStorage.getItem('expirationDate'));
if ( expirationDate <= new Date() ) {
dispatch(authLogout());
} else {
dispatch(authSuccess(token));
dispatch(checkAuthTimeout( (expirationDate.getTime() - new Date().getTime()) / 1000) );
}
}
}
}
class App extends Component {
componentDidMount() {
this.props.onTryAutoSignup();
}
render() {
return (
<div>
<Router>
<CustomLayout {...this.props}>
<BaseRouter />
</CustomLayout>
</Router>
</div>
);
}
}
const mapStateToProps = state => {
return {
isAuthenticated: state.token !== null
}
}
const mapDispatchToProps = dispatch => {
return {
onTryAutoSignup: () => dispatch(actions.authCheckState)
}
}
export const authSuccess = token => {
return {
type: actionTypes.AUTH_SUCCESS,
token: token,
}
}
Answer the question
In order to leave comments, you need to log in
const mapDispatchToProps = dispatch => ({
onTryAutoSignup: () => dispatch(actions.authCheckState()),
});
const mapDispatchToProps = {
onTryAutoSignup: actions.authCheckState,
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question