accounts-frontend/packages/app/containers/AuthFlowRouteContents.tsx

98 lines
2.0 KiB
TypeScript
Raw Normal View History

2019-12-07 16:58:52 +05:30
import React from 'react';
2019-12-10 13:17:32 +05:30
import { Redirect, RouteComponentProps } from 'react-router-dom';
import authFlow from 'app/services/authFlow';
2019-12-10 13:17:32 +05:30
interface Props {
component:
| React.ComponentType<RouteComponentProps<any>>
| React.ComponentType<any>;
routerProps: RouteComponentProps;
}
interface State {
access: null | 'rejected' | 'allowed';
component: React.ReactElement | null;
}
2019-12-07 16:58:52 +05:30
export default class AuthFlowRouteContents extends React.Component<
2019-12-10 13:17:32 +05:30
Props,
State
> {
2019-12-10 13:17:32 +05:30
state: State = {
access: null,
component: null,
};
2019-12-10 13:17:32 +05:30
mounted = false;
shouldComponentUpdate(
{ routerProps: nextRoute, component: nextComponent }: Props,
state: State,
) {
const { component: prevComponent, routerProps: prevRoute } = this.props;
return (
prevRoute.location.pathname !== nextRoute.location.pathname ||
prevRoute.location.search !== nextRoute.location.search ||
prevComponent !== nextComponent ||
this.state.access !== state.access
);
}
componentDidMount() {
2019-12-10 13:17:32 +05:30
this.mounted = true;
this.handleProps(this.props);
}
2019-12-10 13:17:32 +05:30
componentDidUpdate() {
this.handleProps(this.props);
}
componentWillUnmount() {
2019-12-10 13:17:32 +05:30
this.mounted = false;
}
render() {
return this.state.component;
}
2019-12-10 13:17:32 +05:30
handleProps(props: Props) {
const { routerProps } = props;
authFlow.handleRequest(
{
path: routerProps.location.pathname,
params: routerProps.match.params,
2019-12-10 13:17:32 +05:30
query: new URLSearchParams(routerProps.location.search),
},
this.onRedirect.bind(this),
this.onRouteAllowed.bind(this, props),
);
}
onRedirect(path: string) {
2019-12-10 13:17:32 +05:30
if (!this.mounted) {
return;
}
this.setState({
2019-12-10 13:17:32 +05:30
access: 'rejected',
component: <Redirect to={path} />,
});
}
2019-12-10 13:17:32 +05:30
onRouteAllowed(props: Props) {
if (!this.mounted) {
return;
}
2019-12-10 13:17:32 +05:30
const { component: Component } = props;
this.setState({
2019-12-10 13:17:32 +05:30
access: 'allowed',
component: <Component {...props.routerProps} />,
});
}
}