2016-05-02 23:02:03 +05:30
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
|
|
|
|
import ChangeEmail from 'components/profile/changeEmail/ChangeEmail';
|
|
|
|
|
2016-05-22 13:23:40 +05:30
|
|
|
import accounts from 'services/api/accounts';
|
|
|
|
|
2016-05-22 20:26:39 +05:30
|
|
|
class ChangeEmailPage extends Component {
|
|
|
|
static displayName = 'ChangeEmailPage';
|
2016-05-02 23:02:03 +05:30
|
|
|
|
|
|
|
static propTypes = {
|
2016-05-20 10:44:14 +05:30
|
|
|
email: PropTypes.string.isRequired,
|
2016-05-28 03:06:10 +05:30
|
|
|
lang: PropTypes.string.isRequired,
|
2017-05-26 00:41:57 +05:30
|
|
|
history: PropTypes.shape({
|
|
|
|
push: PropTypes.func
|
|
|
|
}).isRequired,
|
|
|
|
match: PropTypes.shape({
|
|
|
|
params: PropTypes.shape({
|
|
|
|
step: PropTypes.oneOf(['step1', 'step2', 'step3']),
|
|
|
|
code: PropTypes.string
|
|
|
|
})
|
2016-05-20 10:44:14 +05:30
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
static contextTypes = {
|
2016-05-22 13:23:40 +05:30
|
|
|
onSubmit: PropTypes.func.isRequired,
|
|
|
|
goToProfile: PropTypes.func.isRequired
|
2016-05-02 23:02:03 +05:30
|
|
|
};
|
|
|
|
|
2016-05-20 10:44:14 +05:30
|
|
|
componentWillMount() {
|
2017-05-26 00:41:57 +05:30
|
|
|
const step = this.props.match.params.step;
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2017-05-26 00:41:57 +05:30
|
|
|
if (step && !/^step[123]$/.test(step)) {
|
2016-05-20 10:44:14 +05:30
|
|
|
// wrong param value
|
2017-05-26 00:41:57 +05:30
|
|
|
this.props.history.push('/404');
|
2016-05-20 10:44:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 23:02:03 +05:30
|
|
|
render() {
|
2017-05-26 00:41:57 +05:30
|
|
|
const {step = 'step1', code} = this.props.match.params;
|
2016-05-20 10:44:14 +05:30
|
|
|
|
2016-05-02 23:02:03 +05:30
|
|
|
return (
|
2016-05-22 13:23:40 +05:30
|
|
|
<ChangeEmail
|
2016-05-02 23:02:03 +05:30
|
|
|
onSubmit={this.onSubmit}
|
|
|
|
email={this.props.email}
|
2016-05-28 03:06:10 +05:30
|
|
|
lang={this.props.lang}
|
2016-05-22 13:23:40 +05:30
|
|
|
step={step.slice(-1) * 1 - 1}
|
2016-05-20 10:44:14 +05:30
|
|
|
onChangeStep={this.onChangeStep}
|
|
|
|
code={code}
|
2016-05-02 23:02:03 +05:30
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-05-20 10:44:14 +05:30
|
|
|
onChangeStep = (step) => {
|
2017-05-26 00:41:57 +05:30
|
|
|
this.props.history.push(`/profile/change-email/step${++step}`);
|
2016-05-20 10:44:14 +05:30
|
|
|
};
|
|
|
|
|
2016-05-22 13:23:40 +05:30
|
|
|
onSubmit = (step, form) => {
|
|
|
|
return this.context.onSubmit({
|
|
|
|
form,
|
|
|
|
sendData: () => {
|
|
|
|
const data = form.serialize();
|
|
|
|
|
|
|
|
switch (step) {
|
|
|
|
case 0:
|
2016-05-23 00:34:52 +05:30
|
|
|
return accounts.requestEmailChange(data).catch(handleErrors());
|
2016-05-22 13:23:40 +05:30
|
|
|
case 1:
|
2016-05-22 20:46:51 +05:30
|
|
|
return accounts.setNewEmail(data).catch(handleErrors('/profile/change-email'));
|
2016-05-22 13:23:40 +05:30
|
|
|
case 2:
|
2016-05-22 20:46:51 +05:30
|
|
|
return accounts.confirmNewEmail(data).catch(handleErrors('/profile/change-email'));
|
2016-05-22 13:23:40 +05:30
|
|
|
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) {
|
|
|
|
return (resp) => {
|
|
|
|
if (resp.errors) {
|
|
|
|
if (resp.errors.key) {
|
|
|
|
resp.errors.key = {
|
|
|
|
type: resp.errors.key,
|
|
|
|
payload: {}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (['error.key_not_exists', 'error.key_expire'].includes(resp.errors.key.type) && repeatUrl) {
|
|
|
|
Object.assign(resp.errors.key.payload, {
|
|
|
|
repeatUrl
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.reject(resp);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-05-02 23:02:03 +05:30
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
export default connect((state) => ({
|
2016-05-28 03:06:10 +05:30
|
|
|
email: state.user.email,
|
|
|
|
lang: state.user.lang
|
2016-05-02 23:02:03 +05:30
|
|
|
}), {
|
2016-05-22 20:26:39 +05:30
|
|
|
})(ChangeEmailPage);
|