mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-26 15:00:23 +05:30
be08857edc
Handle more errors for device code. Dispatch a BSOD for an any unhandled exception from auth flow state
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import React, { FC, ReactElement, ComponentType, useEffect, useState } from 'react';
|
|
import { RouteComponentProps } from 'react-router-dom';
|
|
|
|
import { useIsMounted } from 'app/hooks';
|
|
import authFlow from 'app/services/authFlow';
|
|
|
|
interface Props extends RouteComponentProps {
|
|
component: ComponentType<RouteComponentProps>;
|
|
}
|
|
|
|
const AuthFlowRouteContents: FC<Props> = ({ component: WantedComponent, location, match, history }) => {
|
|
const isMounted = useIsMounted();
|
|
const [component, setComponent] = useState<ReactElement | null>(null);
|
|
|
|
useEffect(() => {
|
|
// Promise that will be resolved after handleRequest might contain already non-actual component to render,
|
|
// so set it to false in the effect's clear function to prevent unwanted UI state
|
|
let isActual = true;
|
|
|
|
authFlow.handleRequest(
|
|
{
|
|
path: location.pathname,
|
|
params: match.params,
|
|
query: new URLSearchParams(location.search),
|
|
},
|
|
history.push,
|
|
() => {
|
|
if (isActual && isMounted()) {
|
|
setComponent(<WantedComponent history={history} location={location} match={match} />);
|
|
}
|
|
},
|
|
);
|
|
|
|
return () => {
|
|
isActual = false;
|
|
};
|
|
}, [location.pathname, location.search]);
|
|
|
|
return component;
|
|
};
|
|
|
|
export default AuthFlowRouteContents;
|