mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-13 03:35:55 +05:30
72 lines
1.5 KiB
JavaScript
72 lines
1.5 KiB
JavaScript
// @flow
|
|
import React, { Component } from 'react';
|
|
import { Redirect } from 'react-router-dom';
|
|
|
|
import authFlow from 'services/authFlow';
|
|
|
|
type ComponentProps = {
|
|
component: any,
|
|
routerProps: Object
|
|
};
|
|
|
|
export default class AuthFlowRouteContents extends Component {
|
|
props: ComponentProps;
|
|
|
|
state: {
|
|
component: any
|
|
} = {
|
|
component: null
|
|
};
|
|
|
|
_isMounted = false;
|
|
|
|
componentDidMount() {
|
|
this._isMounted = true;
|
|
this.handleProps(this.props);
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps: ComponentProps) {
|
|
this.handleProps(nextProps);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this._isMounted = false;
|
|
}
|
|
|
|
render() {
|
|
return this.state.component;
|
|
}
|
|
|
|
handleProps(props: ComponentProps) {
|
|
const {routerProps} = props;
|
|
|
|
authFlow.handleRequest({
|
|
path: routerProps.location.pathname,
|
|
params: routerProps.match.params,
|
|
query: routerProps.location.query
|
|
}, this.onRedirect.bind(this), this.onRouteAllowed.bind(this, props));
|
|
}
|
|
|
|
onRedirect(path: string) {
|
|
if (!this._isMounted) {
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
component: <Redirect to={path} />
|
|
});
|
|
}
|
|
|
|
onRouteAllowed(props: ComponentProps) {
|
|
const {component: Component} = props;
|
|
|
|
if (!this._isMounted) {
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
component: <Component {...props.routerProps} />
|
|
});
|
|
}
|
|
}
|