2019-01-28 00:42:58 +05:30
|
|
|
// @flow
|
2019-06-30 19:02:50 +05:30
|
|
|
import type { RouterHistory, Match } from 'react-router-dom';
|
|
|
|
import type FormModel from 'components/ui/form/FormModel';
|
2017-08-23 00:19:50 +05:30
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
2019-06-30 19:02:50 +05:30
|
|
|
import { connect } from 'react-redux';
|
2016-05-02 23:02:03 +05:30
|
|
|
import ChangeEmail from 'components/profile/changeEmail/ChangeEmail';
|
2019-11-27 14:33:32 +05:30
|
|
|
import {
|
|
|
|
requestEmailChange,
|
|
|
|
setNewEmail,
|
|
|
|
confirmNewEmail,
|
|
|
|
} from 'services/api/accounts';
|
2019-01-28 00:42:58 +05:30
|
|
|
|
2019-06-30 19:02:50 +05:30
|
|
|
type OwnProps = {|
|
2019-11-27 14:33:32 +05:30
|
|
|
history: RouterHistory,
|
|
|
|
match: {
|
|
|
|
...Match,
|
|
|
|
params: {
|
|
|
|
step: 'step1' | 'step2' | 'step3',
|
|
|
|
code: string,
|
|
|
|
},
|
|
|
|
},
|
2019-06-30 19:02:50 +05:30
|
|
|
|};
|
|
|
|
|
|
|
|
type Props = {
|
2019-11-27 14:33:32 +05:30
|
|
|
...OwnProps,
|
|
|
|
lang: string,
|
|
|
|
email: string,
|
|
|
|
};
|
2016-05-22 13:23:40 +05:30
|
|
|
|
2019-01-28 00:42:58 +05:30
|
|
|
class ChangeEmailPage extends Component<Props> {
|
2019-11-27 14:33:32 +05:30
|
|
|
static displayName = 'ChangeEmailPage';
|
2016-05-02 23:02:03 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
static contextTypes = {
|
|
|
|
userId: PropTypes.number.isRequired,
|
|
|
|
onSubmit: PropTypes.func.isRequired,
|
|
|
|
goToProfile: PropTypes.func.isRequired,
|
|
|
|
};
|
2016-05-02 23:02:03 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
componentWillMount() {
|
|
|
|
const { step } = this.props.match.params;
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (step && !/^step[123]$/.test(step)) {
|
|
|
|
// wrong param value
|
|
|
|
this.props.history.push('/404');
|
2016-05-20 10:44:14 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
render() {
|
|
|
|
const { step = 'step1', code } = this.props.match.params;
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
return (
|
|
|
|
<ChangeEmail
|
|
|
|
onSubmit={this.onSubmit}
|
|
|
|
email={this.props.email}
|
|
|
|
lang={this.props.lang}
|
|
|
|
step={((step.slice(-1): any): number) * 1 - 1}
|
|
|
|
onChangeStep={this.onChangeStep}
|
|
|
|
code={code}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2016-05-02 23:02:03 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
onChangeStep = (step: number) => {
|
|
|
|
this.props.history.push(`/profile/change-email/step${++step}`);
|
|
|
|
};
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
onSubmit = (step: number, form: FormModel) => {
|
|
|
|
return this.context
|
|
|
|
.onSubmit({
|
|
|
|
form,
|
|
|
|
sendData: () => {
|
|
|
|
const { userId } = this.context;
|
|
|
|
const data = form.serialize();
|
2016-05-22 13:23:40 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
switch (step) {
|
|
|
|
case 0:
|
|
|
|
return requestEmailChange(userId, data.password).catch(
|
|
|
|
handleErrors(),
|
|
|
|
);
|
|
|
|
case 1:
|
|
|
|
return setNewEmail(userId, data.email, data.key).catch(
|
|
|
|
handleErrors('/profile/change-email'),
|
|
|
|
);
|
|
|
|
case 2:
|
|
|
|
return confirmNewEmail(userId, data.key).catch(
|
|
|
|
handleErrors('/profile/change-email'),
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported step ${step}`);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
step > 1 && this.context.goToProfile();
|
|
|
|
});
|
|
|
|
};
|
2016-05-02 23:02:03 +05:30
|
|
|
}
|
|
|
|
|
2016-05-22 20:46:51 +05:30
|
|
|
function handleErrors(repeatUrl) {
|
2019-11-27 14:33:32 +05:30
|
|
|
return resp => {
|
|
|
|
if (resp.errors) {
|
|
|
|
if (resp.errors.key) {
|
|
|
|
resp.errors.key = {
|
|
|
|
type: resp.errors.key,
|
|
|
|
payload: {},
|
|
|
|
};
|
2016-05-22 20:46:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (
|
|
|
|
['error.key_not_exists', 'error.key_expire'].includes(
|
|
|
|
resp.errors.key.type,
|
|
|
|
) &&
|
|
|
|
repeatUrl
|
|
|
|
) {
|
|
|
|
Object.assign(resp.errors.key.payload, {
|
|
|
|
repeatUrl,
|
|
|
|
});
|
2016-05-22 20:46:51 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
|
|
|
}
|
2016-05-22 20:46:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
return Promise.reject(resp);
|
|
|
|
};
|
2016-05-22 20:46:51 +05:30
|
|
|
}
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
export default connect<Props, OwnProps, _, _, _, _>(state => ({
|
|
|
|
email: state.user.email,
|
|
|
|
lang: state.user.lang,
|
2019-06-30 19:02:50 +05:30
|
|
|
}))(ChangeEmailPage);
|