mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { RouteComponentProps, Redirect } from 'react-router-dom';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
import MultiFactorAuth, {
|
|
MfaStep,
|
|
} from 'app/components/profile/multiFactorAuth';
|
|
import { FormModel } from 'app/components/ui/form';
|
|
import { User } from 'app/components/user';
|
|
import { RootState } from 'app/reducers';
|
|
|
|
interface Props
|
|
extends RouteComponentProps<{
|
|
step?: '1' | '2' | '3';
|
|
}> {
|
|
user: User;
|
|
}
|
|
|
|
class MultiFactorAuthPage extends React.Component<Props> {
|
|
static contextTypes = {
|
|
onSubmit: PropTypes.func.isRequired,
|
|
goToProfile: PropTypes.func.isRequired,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
user,
|
|
match: {
|
|
params: { step },
|
|
},
|
|
} = this.props;
|
|
|
|
if (step) {
|
|
if (!/^[1-3]$/.test(step)) {
|
|
// wrong param value
|
|
return <Redirect to="/404" />;
|
|
}
|
|
|
|
if (user.isOtpEnabled) {
|
|
return <Redirect to="/mfa" />;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<MultiFactorAuth
|
|
isMfaEnabled={user.isOtpEnabled}
|
|
onSubmit={this.onSubmit}
|
|
step={this.getStep()}
|
|
onChangeStep={this.onChangeStep}
|
|
onComplete={this.onComplete}
|
|
/>
|
|
);
|
|
}
|
|
|
|
getStep(): MfaStep {
|
|
const step = Number(this.props.match.params.step) - 1;
|
|
|
|
if (step !== 0 && step !== 1 && step !== 2) {
|
|
return 0;
|
|
}
|
|
|
|
return step;
|
|
}
|
|
|
|
onChangeStep = (step: MfaStep) => {
|
|
this.props.history.push(`/profile/mfa/step${step + 1}`);
|
|
};
|
|
|
|
onSubmit = (form: FormModel, sendData: () => Promise<void>) => {
|
|
return this.context.onSubmit({
|
|
form,
|
|
sendData,
|
|
});
|
|
};
|
|
|
|
onComplete = () => {
|
|
this.context.goToProfile();
|
|
};
|
|
}
|
|
|
|
export default connect(({ user }: RootState) => ({ user }))(
|
|
MultiFactorAuthPage,
|
|
);
|