mirror of https://github.com/vector-im/riot-web
Merge remote-tracking branch 'origin/develop' into develop
commit
4ef8defd90
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright 2015, 2016 OpenMarket Ltd
|
Copyright 2015, 2016 OpenMarket Ltd
|
||||||
|
Copyright 2018 New Vector Ltd
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -14,36 +15,28 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
import React from 'react';
|
||||||
const React = require('react');
|
import sdk from '../../../index';
|
||||||
const sdk = require('../../../index');
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
const MatrixClientPeg = require("../../../MatrixClientPeg");
|
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'ChangeDisplayName',
|
displayName: 'ChangeDisplayName',
|
||||||
|
|
||||||
_getDisplayName: function() {
|
_getDisplayName: async function() {
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
return cli.getProfileInfo(cli.credentials.userId).then(function(result) {
|
try {
|
||||||
let displayname = result.displayname;
|
const res = await cli.getProfileInfo(cli.getUserId());
|
||||||
if (!displayname) {
|
return res.displayname;
|
||||||
if (MatrixClientPeg.get().isGuest()) {
|
} catch (e) {
|
||||||
displayname = "Guest " + MatrixClientPeg.get().getUserIdLocalpart();
|
|
||||||
} else {
|
|
||||||
displayname = MatrixClientPeg.get().getUserIdLocalpart();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return displayname;
|
|
||||||
}, function(error) {
|
|
||||||
throw new Error("Failed to fetch display name");
|
throw new Error("Failed to fetch display name");
|
||||||
});
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_changeDisplayName: function(new_displayname) {
|
_changeDisplayName: function(newDisplayname) {
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
return cli.setDisplayName(new_displayname).catch(function(e) {
|
return cli.setDisplayName(newDisplayname).catch(function(e) {
|
||||||
throw new Error("Failed to set display name");
|
throw new Error("Failed to set display name", e);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue