mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 11:41:04 +05:30
Completly reset all auth state on header logo click
This commit is contained in:
parent
a1c713236a
commit
cfcfe39bb7
@ -286,6 +286,18 @@ export function resetOAuth() {
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Resets all temporary state related to auth
|
||||
*
|
||||
* @return {function}
|
||||
*/
|
||||
export function resetAuth() {
|
||||
return (dispatch) => {
|
||||
dispatch(setLogin(null));
|
||||
dispatch(resetOAuth({}));
|
||||
};
|
||||
}
|
||||
|
||||
export const SET_OAUTH = 'set_oauth';
|
||||
export function setOAuthRequest(oauth) {
|
||||
return {
|
||||
|
@ -31,7 +31,7 @@ function RootPage(props) {
|
||||
})}>
|
||||
<div className={styles.header}>
|
||||
<div className={styles.headerContent}>
|
||||
<Link to="/" className={styles.logo} onClick={props.resetOAuth}>
|
||||
<Link to="/" className={styles.logo} onClick={props.resetAuth}>
|
||||
<Message {...messages.siteName} />
|
||||
</Link>
|
||||
<div className={styles.userbar}>
|
||||
@ -57,16 +57,16 @@ RootPage.propTypes = {
|
||||
pathname: PropTypes.string
|
||||
}).isRequired,
|
||||
children: PropTypes.element,
|
||||
resetOAuth: PropTypes.func.isRequired,
|
||||
resetAuth: PropTypes.func.isRequired,
|
||||
isPopupActive: PropTypes.bool.isRequired
|
||||
};
|
||||
|
||||
import { connect } from 'react-redux';
|
||||
import { resetOAuth } from 'components/auth/actions';
|
||||
import { resetAuth } from 'components/auth/actions';
|
||||
|
||||
export default connect((state) => ({
|
||||
user: state.user,
|
||||
isPopupActive: state.popup.popups.length > 0
|
||||
}), {
|
||||
resetOAuth
|
||||
resetAuth
|
||||
})(RootPage);
|
||||
|
Loading…
Reference in New Issue
Block a user