2015-10-07 20:19:29 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-10-07 20:19:29 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
2015-11-20 14:57:04 +03:00
|
|
|
var React = require('react');
|
2015-11-26 20:10:36 +03:00
|
|
|
var sdk = require('../../../index');
|
|
|
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
2015-10-07 20:19:29 +03:00
|
|
|
|
2015-11-26 20:10:36 +03:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'ChangeDisplayName',
|
2015-11-20 14:57:04 +03:00
|
|
|
propTypes: {
|
|
|
|
onFinished: React.PropTypes.func
|
|
|
|
},
|
|
|
|
|
2015-10-07 20:19:29 +03:00
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
onFinished: function() {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
busy: false,
|
|
|
|
errorString: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
this.setState({busy: true});
|
|
|
|
var self = this;
|
|
|
|
cli.getProfileInfo(cli.credentials.userId).done(function(result) {
|
|
|
|
self.setState({
|
2015-10-09 13:54:46 +03:00
|
|
|
displayName: result.displayname,
|
2015-10-07 20:19:29 +03:00
|
|
|
busy: false
|
|
|
|
});
|
|
|
|
}, function(error) {
|
|
|
|
self.setState({
|
|
|
|
errorString: "Failed to fetch display name",
|
|
|
|
busy: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
changeDisplayname: function(new_displayname) {
|
|
|
|
this.setState({
|
|
|
|
busy: true,
|
|
|
|
errorString: null,
|
|
|
|
})
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
MatrixClientPeg.get().setDisplayName(new_displayname).then(function() {
|
2015-10-09 13:54:46 +03:00
|
|
|
self.setState({
|
|
|
|
busy: false,
|
|
|
|
displayName: new_displayname
|
|
|
|
});
|
2015-10-07 20:19:29 +03:00
|
|
|
}, function(error) {
|
|
|
|
self.setState({
|
|
|
|
busy: false,
|
|
|
|
errorString: "Failed to set display name"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2015-11-26 20:10:36 +03:00
|
|
|
|
|
|
|
edit: function() {
|
|
|
|
this.refs.displayname_edit.edit()
|
|
|
|
},
|
|
|
|
|
|
|
|
onValueChanged: function(new_value, shouldSubmit) {
|
|
|
|
if (shouldSubmit) {
|
|
|
|
this.changeDisplayname(new_value);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
if (this.state.busy) {
|
|
|
|
var Loader = sdk.getComponent("elements.Spinner");
|
|
|
|
return (
|
|
|
|
<Loader />
|
|
|
|
);
|
|
|
|
} else if (this.state.errorString) {
|
|
|
|
return (
|
|
|
|
<div className="error">{this.state.errorString}</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
var EditableText = sdk.getComponent('elements.EditableText');
|
|
|
|
return (
|
2015-12-23 17:14:25 +03:00
|
|
|
<EditableText ref="displayname_edit" initialValue={this.state.displayName}
|
2016-01-15 16:11:37 +03:00
|
|
|
className="mx_EditableText"
|
|
|
|
placeholderClassName="mx_EditableText_placeholder"
|
|
|
|
placeholder="No display name"
|
2015-12-23 17:14:25 +03:00
|
|
|
onValueChanged={this.onValueChanged} />
|
2015-11-26 20:10:36 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|