Add method to Modal to create dialog with instantiated React elements as well as Classes.
This commit is contained in:
@@ -19,7 +19,6 @@ var MatrixClientPeg = require("../../MatrixClientPeg");
|
||||
|
||||
module.exports = {
|
||||
propTypes: {
|
||||
onFinished: React.PropTypes.func,
|
||||
initialAvatarUrl: React.PropTypes.string.isRequired,
|
||||
},
|
||||
|
||||
@@ -29,12 +28,6 @@ module.exports = {
|
||||
Error: "error",
|
||||
},
|
||||
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
onFinished: function() {},
|
||||
};
|
||||
},
|
||||
|
||||
getInitialState: function() {
|
||||
return {
|
||||
avatarUrl: this.props.initialAvatarUrl,
|
||||
|
||||
@@ -39,7 +39,7 @@ module.exports = {
|
||||
var self = this;
|
||||
cli.getProfileInfo(cli.credentials.userId).done(function(result) {
|
||||
self.setState({
|
||||
displayname: result.displayname,
|
||||
displayName: result.displayname,
|
||||
busy: false
|
||||
});
|
||||
}, function(error) {
|
||||
@@ -60,7 +60,10 @@ module.exports = {
|
||||
|
||||
var self = this;
|
||||
MatrixClientPeg.get().setDisplayName(new_displayname).then(function() {
|
||||
self.setState({busy: false});
|
||||
self.setState({
|
||||
busy: false,
|
||||
displayName: new_displayname
|
||||
});
|
||||
}, function(error) {
|
||||
self.setState({
|
||||
busy: false,
|
||||
|
||||
Reference in New Issue
Block a user