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

78 lines
2.0 KiB
JavaScript
Raw Normal View History

// @flow
import PropTypes from 'prop-types';
import React, { Component } from 'react';
2016-05-02 18:43:18 +05:30
import { changeUsername } from 'services/api/accounts';
2016-05-02 18:43:18 +05:30
import { FormModel } from 'components/ui/form';
import ChangeUsername from 'components/profile/changeUsername/ChangeUsername';
interface Props {
username: string;
updateUsername: (username: string) => void;
}
2016-05-02 18:43:18 +05:30
class ChangeUsernamePage extends Component<Props> {
static displayName = 'ChangeUsernamePage';
static contextTypes = {
userId: PropTypes.number.isRequired,
onSubmit: PropTypes.func.isRequired,
goToProfile: PropTypes.func.isRequired,
2016-05-02 18:43:18 +05:30
};
form = new FormModel();
actualUsername: string;
2016-05-02 18:43:18 +05:30
componentWillMount() {
this.actualUsername = this.props.username;
2016-05-02 18:43:18 +05:30
}
componentWillUnmount() {
this.props.updateUsername(this.actualUsername);
2016-05-02 18:43:18 +05:30
}
render() {
return (
<ChangeUsername form={this.form}
onSubmit={this.onSubmit}
onChange={this.onUsernameChange}
username={this.props.username}
/>
);
}
onUsernameChange = (username) => {
this.props.updateUsername(username);
};
onSubmit = () => {
const { form } = this;
if (this.actualUsername === this.props.username) {
this.context.goToProfile();
2017-02-27 11:17:31 +05:30
return Promise.resolve();
}
2017-02-27 11:17:31 +05:30
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 19:07:02 +05:30
this.context.goToProfile();
2016-05-02 18:43:18 +05:30
});
};
}
import { connect } from 'react-redux';
import { updateUser } from 'components/user/actions';
export default connect((state) => ({
username: state.user.username,
2016-05-02 18:43:18 +05:30
}), {
updateUsername: (username) => updateUser({username}),
2016-05-02 18:43:18 +05:30
})(ChangeUsernamePage);