accounts-frontend/packages/app/pages/profile/MultiFactorAuthPage.tsx

78 lines
1.9 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 { RouteComponentProps, Redirect } from 'react-router-dom';
import { connect } from 'app/functions';
2020-05-24 04:38:24 +05:30
import MultiFactorAuth, { MfaStep } from 'app/components/profile/multiFactorAuth';
import { FormModel } from 'app/components/ui/form';
import { User } from 'app/components/user';
2019-12-12 12:56:23 +05:30
import Context from 'app/components/profile/Context';
2019-12-07 16:58:52 +05:30
interface Props
2020-05-24 04:38:24 +05:30
extends RouteComponentProps<{
step?: '1' | '2' | '3';
}> {
user: User;
2019-12-07 16:58:52 +05:30
}
2017-07-22 21:27:38 +05:30
2019-12-07 16:58:52 +05:30
class MultiFactorAuthPage extends React.Component<Props> {
2020-05-24 04:38:24 +05:30
static contextType = Context;
/* TODO: use declare */ context: React.ContextType<typeof Context>;
2020-05-24 04:38:24 +05:30
render() {
const {
user,
match: {
params: { step },
},
} = this.props;
2020-05-24 04:38:24 +05:30
if (step) {
if (!/^[1-3]$/.test(step)) {
// wrong param value
return <Redirect to="/404" />;
}
2020-05-24 04:38:24 +05:30
if (user.isOtpEnabled) {
return <Redirect to="/mfa" />;
}
}
return (
<MultiFactorAuth
isMfaEnabled={user.isOtpEnabled}
onSubmit={this.onSubmit}
step={this.getStep()}
onChangeStep={this.onChangeStep}
onComplete={this.onComplete}
/>
);
2017-07-22 21:27:38 +05:30
}
2020-05-24 04:38:24 +05:30
getStep(): MfaStep {
const step = Number(this.props.match.params.step) - 1;
2020-05-24 04:38:24 +05:30
if (step !== 0 && step !== 1 && step !== 2) {
return 0;
}
2020-05-24 04:38:24 +05:30
return step;
2017-07-22 21:27:38 +05:30
}
2020-05-24 04:38:24 +05:30
onChangeStep = (step: number) => {
this.props.history.push(`/profile/mfa/step${step + 1}`);
};
2017-07-22 21:27:38 +05:30
2020-05-24 04:38:24 +05:30
onSubmit = (form: FormModel, sendData: () => Promise<void>) => {
return this.context.onSubmit({
form,
sendData,
});
};
2017-07-22 21:27:38 +05:30
2020-05-24 04:38:24 +05:30
onComplete = () => {
this.context.goToProfile();
};
2017-07-22 21:27:38 +05:30
}
export default connect(({ user }) => ({ user }))(MultiFactorAuthPage);