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

79 lines
2.0 KiB
JavaScript
Raw Normal View History

// @flow
import PropTypes from 'prop-types';
import React, { Component } from 'react';
2016-05-02 16:13:18 +03:00
import { changeUsername } from 'services/api/accounts';
2016-05-02 16:13:18 +03:00
import { FormModel } from 'components/ui/form';
import ChangeUsername from 'components/profile/changeUsername/ChangeUsername';
type OwnProps = {|
|};
type Props = {
username: string;
updateUsername: (username: string) => void;
};
2016-05-02 16:13:18 +03:00
class ChangeUsernamePage extends Component<Props> {
static contextTypes = {
userId: PropTypes.number.isRequired,
onSubmit: PropTypes.func.isRequired,
goToProfile: PropTypes.func.isRequired,
2016-05-02 16:13:18 +03:00
};
form = new FormModel();
actualUsername: string;
2016-05-02 16:13:18 +03:00
componentWillMount() {
this.actualUsername = this.props.username;
2016-05-02 16:13:18 +03:00
}
componentWillUnmount() {
this.props.updateUsername(this.actualUsername);
2016-05-02 16:13:18 +03:00
}
render() {
return (
<ChangeUsername form={this.form}
onSubmit={this.onSubmit}
onChange={this.onUsernameChange}
username={this.props.username}
/>
);
}
onUsernameChange = (username: string) => {
2016-05-02 16:13:18 +03:00
this.props.updateUsername(username);
};
onSubmit = () => {
const { form } = this;
if (this.actualUsername === this.props.username) {
this.context.goToProfile();
2017-02-27 07:47:31 +02:00
return Promise.resolve();
}
2017-02-27 07:47:31 +02:00
return this.context.onSubmit({
form,
sendData: () => {
const { username, password } = form.serialize();
return changeUsername(this.context.userId, username, password);
},
}).then(() => {
this.actualUsername = form.value('username');
2017-01-02 15:37:02 +02:00
this.context.goToProfile();
2016-05-02 16:13:18 +03:00
});
};
}
import { connect } from 'react-redux';
import { updateUser } from 'components/user/actions';
export default connect<Props, OwnProps, _, _, _, _>((state) => ({
username: state.user.username,
2016-05-02 16:13:18 +03:00
}), {
updateUsername: (username) => updateUser({username}),
2016-05-02 16:13:18 +03:00
})(ChangeUsernamePage);