2019-12-07 16:58:52 +05:30
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
2017-08-23 00:19:50 +05:30
|
|
|
import PropTypes from 'prop-types';
|
2019-12-08 00:32:00 +05:30
|
|
|
import { changePassword } from 'app/services/api/accounts';
|
|
|
|
import { FormModel } from 'app/components/ui/form';
|
|
|
|
import ChangePassword from 'app/components/profile/changePassword/ChangePassword';
|
|
|
|
import { User } from 'app/components/user';
|
|
|
|
import { updateUser } from 'app/components/user/actions';
|
2016-05-01 23:20:55 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
type OwnProps = {};
|
2019-06-30 19:02:50 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
type Props = OwnProps & {
|
|
|
|
updateUser: (fields: Partial<User>) => void;
|
2019-11-27 14:33:32 +05:30
|
|
|
};
|
2016-05-01 23:20:55 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
class ChangePasswordPage extends React.Component<Props> {
|
2019-11-27 14:33:32 +05:30
|
|
|
static contextTypes = {
|
|
|
|
userId: PropTypes.number.isRequired,
|
|
|
|
onSubmit: PropTypes.func.isRequired,
|
|
|
|
goToProfile: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
form = new FormModel();
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <ChangePassword onSubmit={this.onSubmit} form={this.form} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
onSubmit = () => {
|
|
|
|
const { form } = this;
|
|
|
|
|
|
|
|
return this.context
|
|
|
|
.onSubmit({
|
|
|
|
form,
|
|
|
|
sendData: () => changePassword(this.context.userId, form.serialize()),
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
this.props.updateUser({
|
|
|
|
passwordChangedAt: Date.now() / 1000,
|
2016-05-12 10:00:10 +05:30
|
|
|
});
|
2019-11-27 14:33:32 +05:30
|
|
|
this.context.goToProfile();
|
|
|
|
});
|
|
|
|
};
|
2016-05-01 23:20:55 +05:30
|
|
|
}
|
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export default connect(null, {
|
2019-11-27 14:33:32 +05:30
|
|
|
updateUser,
|
2016-05-01 23:20:55 +05:30
|
|
|
})(ChangePasswordPage);
|