accounts-frontend/src/pages/profile/ChangePasswordPage.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

import React, { Component, PropTypes } from 'react';
import accounts from 'services/api/accounts';
import { FormModel } from 'components/ui/form';
import ChangePassword from 'components/profile/changePassword/ChangePassword';
class ChangePasswordPage extends Component {
static displayName = 'ChangePasswordPage';
static propTypes = {
updateUser: PropTypes.func.isRequired
};
static contextTypes = {
onSubmit: PropTypes.func.isRequired,
goToProfile: PropTypes.func.isRequired
};
form = new FormModel();
render() {
return (
<ChangePassword onSubmit={this.onSubmit} form={this.form} />
);
}
onSubmit = () => {
const {form} = this;
2017-02-27 11:17:31 +05:30
return this.context.onSubmit({
form,
sendData: () => accounts.changePassword(form.serialize())
}).then(() => {
this.props.updateUser({
2016-08-03 00:43:11 +05:30
passwordChangedAt: Date.now() / 1000
});
this.context.goToProfile();
});
};
}
import { connect } from 'react-redux';
import { updateUser } from 'components/user/actions';
export default connect(null, {
updateUser
})(ChangePasswordPage);