mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +05:30
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
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';
|
|
import Context from 'app/components/profile/Context';
|
|
|
|
interface Props {
|
|
updateUser: (fields: Partial<User>) => void;
|
|
}
|
|
|
|
class ChangePasswordPage extends React.Component<Props> {
|
|
static contextType = Context;
|
|
/* TODO: use declare */ context: React.ContextType<typeof Context>;
|
|
|
|
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,
|
|
});
|
|
this.context.goToProfile();
|
|
});
|
|
};
|
|
}
|
|
|
|
export default connect(null, {
|
|
updateUser,
|
|
})(ChangePasswordPage);
|