2017-08-09 23:31:32 +05:30
|
|
|
// @flow
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2016-04-17 15:05:04 +05:30
|
|
|
|
2017-05-26 00:41:57 +05:30
|
|
|
import { Route, Switch, Redirect } from 'react-router-dom';
|
|
|
|
|
2017-01-02 19:09:34 +05:30
|
|
|
import logger from 'services/logger';
|
2017-08-09 23:31:32 +05:30
|
|
|
import { browserHistory } from 'services/history';
|
2017-05-26 00:41:57 +05:30
|
|
|
import Profile from 'components/profile/Profile';
|
|
|
|
import ChangePasswordPage from 'pages/profile/ChangePasswordPage';
|
|
|
|
import ChangeUsernamePage from 'pages/profile/ChangeUsernamePage';
|
|
|
|
import ChangeEmailPage from 'pages/profile/ChangeEmailPage';
|
2017-07-22 21:27:38 +05:30
|
|
|
import MultiFactorAuthPage from 'pages/profile/MultiFactorAuthPage';
|
2017-05-26 00:41:57 +05:30
|
|
|
|
2016-05-22 22:55:38 +05:30
|
|
|
import { FooterMenu } from 'components/footerMenu';
|
|
|
|
|
2016-04-17 15:05:04 +05:30
|
|
|
import styles from './profile.scss';
|
|
|
|
|
2017-08-09 23:31:32 +05:30
|
|
|
import type { FormModel } from 'components/ui/form';
|
2016-04-17 15:05:04 +05:30
|
|
|
|
2017-08-09 23:31:32 +05:30
|
|
|
class ProfilePage extends Component {
|
|
|
|
props: {
|
|
|
|
onSubmit: ({form: FormModel, sendData: () => Promise<*>}) => void,
|
|
|
|
fetchUserData: () => Promise<*>
|
2016-05-12 10:00:10 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
static childContextTypes = {
|
2016-05-14 13:24:26 +05:30
|
|
|
onSubmit: PropTypes.func,
|
|
|
|
goToProfile: PropTypes.func
|
2016-05-12 10:00:10 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
getChildContext() {
|
|
|
|
return {
|
2016-05-14 13:24:26 +05:30
|
|
|
onSubmit: this.props.onSubmit,
|
2017-08-09 23:31:32 +05:30
|
|
|
goToProfile: () => this.props.fetchUserData().then(this.goToProfile)
|
2016-05-12 10:00:10 +05:30
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-04-17 15:05:04 +05:30
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className={styles.container}>
|
2017-05-26 00:41:57 +05:30
|
|
|
<Switch>
|
2017-08-04 10:21:41 +05:30
|
|
|
<Route path="/profile/mfa/step:step([1-3])" component={MultiFactorAuthPage} />
|
|
|
|
<Route path="/profile/mfa" exact component={MultiFactorAuthPage} />
|
|
|
|
<Route path="/profile/change-password" exact component={ChangePasswordPage} />
|
|
|
|
<Route path="/profile/change-username" exact component={ChangeUsernamePage} />
|
2017-05-26 00:41:57 +05:30
|
|
|
<Route path="/profile/change-email/:step?/:code?" component={ChangeEmailPage} />
|
2017-08-04 10:21:41 +05:30
|
|
|
<Route path="/profile" exact component={Profile} />
|
2017-05-26 00:41:57 +05:30
|
|
|
<Route path="/" exact component={Profile} />
|
|
|
|
<Redirect to="/404" />
|
|
|
|
</Switch>
|
2016-05-22 22:55:38 +05:30
|
|
|
|
|
|
|
<div className={styles.footer}>
|
|
|
|
<FooterMenu />
|
|
|
|
</div>
|
2016-04-17 15:05:04 +05:30
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-08-09 23:31:32 +05:30
|
|
|
|
|
|
|
goToProfile = () => browserHistory.push('/');
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
2016-05-12 10:00:10 +05:30
|
|
|
|
|
|
|
import { connect } from 'react-redux';
|
2016-05-22 23:32:46 +05:30
|
|
|
import { fetchUserData } from 'components/user/actions';
|
2016-05-12 10:00:10 +05:30
|
|
|
import { create as createPopup } from 'components/ui/popup/actions';
|
|
|
|
import PasswordRequestForm from 'components/profile/passwordRequestForm/PasswordRequestForm';
|
|
|
|
|
|
|
|
export default connect(null, {
|
2016-05-22 23:32:46 +05:30
|
|
|
fetchUserData,
|
2016-05-28 01:34:17 +05:30
|
|
|
onSubmit: ({form, sendData}) => (dispatch) => {
|
|
|
|
form.beginLoading();
|
|
|
|
return sendData()
|
2016-05-12 10:00:10 +05:30
|
|
|
.catch((resp) => {
|
2016-05-22 13:23:40 +05:30
|
|
|
const requirePassword = resp.errors && !!resp.errors.password;
|
|
|
|
|
2016-05-12 10:00:10 +05:30
|
|
|
// prevalidate user input, because requestPassword popup will block the
|
|
|
|
// entire form from input, so it must be valid
|
|
|
|
if (resp.errors) {
|
|
|
|
Reflect.deleteProperty(resp.errors, 'password');
|
|
|
|
|
2016-07-28 09:55:02 +05:30
|
|
|
if (resp.errors.email && resp.data && resp.data.canRepeatIn) {
|
|
|
|
resp.errors.email = {
|
|
|
|
type: resp.errors.email,
|
|
|
|
payload: {
|
|
|
|
msLeft: resp.data.canRepeatIn * 1000
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-05-12 10:00:10 +05:30
|
|
|
if (Object.keys(resp.errors).length) {
|
|
|
|
form.setErrors(resp.errors);
|
|
|
|
return Promise.reject(resp);
|
|
|
|
}
|
|
|
|
|
2016-05-22 13:23:40 +05:30
|
|
|
return Promise.resolve({requirePassword});
|
|
|
|
}
|
2016-05-12 10:00:10 +05:30
|
|
|
})
|
2016-05-28 03:06:22 +05:30
|
|
|
.then((resp) => !resp.requirePassword || requestPassword(form))
|
2017-01-02 19:09:34 +05:30
|
|
|
.catch((resp) => {
|
|
|
|
if (!resp || !resp.errors) {
|
|
|
|
logger.warn('Unexpected profile editing error', {
|
|
|
|
resp
|
|
|
|
});
|
2017-02-27 11:17:31 +05:30
|
|
|
} else {
|
|
|
|
return Promise.reject(resp);
|
2017-01-02 19:09:34 +05:30
|
|
|
}
|
|
|
|
})
|
2016-05-28 01:34:17 +05:30
|
|
|
.finally(() => form.endLoading());
|
2016-05-28 03:06:22 +05:30
|
|
|
|
|
|
|
function requestPassword(form) {
|
|
|
|
return new Promise((resolve) => {
|
2016-07-26 10:10:45 +05:30
|
|
|
dispatch(createPopup({
|
2017-06-13 01:02:59 +05:30
|
|
|
Popup(props: {
|
|
|
|
onClose: Function
|
|
|
|
}) {
|
2016-07-26 10:10:45 +05:30
|
|
|
const onSubmit = () => {
|
|
|
|
form.beginLoading();
|
|
|
|
sendData()
|
2017-01-02 19:09:34 +05:30
|
|
|
.then(resolve)
|
|
|
|
.then(props.onClose)
|
2016-07-26 10:10:45 +05:30
|
|
|
.catch((resp) => {
|
|
|
|
if (resp.errors) {
|
|
|
|
form.setErrors(resp.errors);
|
2017-01-02 19:09:34 +05:30
|
|
|
} else {
|
|
|
|
return Promise.reject(resp);
|
2016-07-26 10:10:45 +05:30
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => form.endLoading());
|
|
|
|
};
|
|
|
|
|
|
|
|
return <PasswordRequestForm form={form} onSubmit={onSubmit} />;
|
|
|
|
},
|
|
|
|
disableOverlayClose: true
|
|
|
|
}));
|
2016-05-28 03:06:22 +05:30
|
|
|
});
|
|
|
|
}
|
2016-05-28 01:34:17 +05:30
|
|
|
}
|
2016-05-12 10:00:10 +05:30
|
|
|
})(ProfilePage);
|