Added ES6 function 'fromCodePoint' to retrive first initial for default avatars that begin with a large unicode character.

This commit is contained in:
Will Hunt 2016-02-25 16:23:38 +00:00
parent 2e5df1a96f
commit 081a975d2a

View file

@ -101,9 +101,11 @@ module.exports = React.createClass({
_getInitialLetter: function() {
var name = this.props.name;
var initial = name[0];
//For large characters (exceeding 2 bytes), this function will get the correct character.
//However, this does NOT get the second character correctly if a large character is before it.
var initial = String.fromCodePoint(name.codePointAt(0));
if ((initial === '@' || initial === '#') && name[1]) {
initial = name[1];
initial = String.fromCodePoint(name.codePointAt(1));
}
return initial.toUpperCase();
},
@ -127,7 +129,7 @@ module.exports = React.createClass({
title={this.props.title} onError={this.onError}
width={this.props.width} height={this.props.height} />
</span>
);
);
}
return (
<img className="mx_BaseAvatar mx_BaseAvatar_image" src={imageUrl}