You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
Merge pull request #673 from matrix-org/dbkr/make_default_avatars_clickable
Make default avatars clickable
This commit is contained in:
@ -145,17 +145,37 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
if (imageUrl === this.state.defaultImageUrl) {
|
if (imageUrl === this.state.defaultImageUrl) {
|
||||||
const initialLetter = this._getInitialLetter(name);
|
const initialLetter = this._getInitialLetter(name);
|
||||||
return (
|
const textNode = (
|
||||||
<span className="mx_BaseAvatar" {...otherProps}>
|
<EmojiText className="mx_BaseAvatar_initial" aria-hidden="true"
|
||||||
<EmojiText className="mx_BaseAvatar_initial" aria-hidden="true"
|
style={{ fontSize: (width * 0.65) + "px",
|
||||||
style={{ fontSize: (width * 0.65) + "px",
|
width: width + "px",
|
||||||
width: width + "px",
|
lineHeight: height + "px" }}
|
||||||
lineHeight: height + "px" }}>{initialLetter}</EmojiText>
|
>
|
||||||
<img className="mx_BaseAvatar_image" src={imageUrl}
|
{initialLetter}
|
||||||
alt="" title={title} onError={this.onError}
|
</EmojiText>
|
||||||
width={width} height={height} />
|
|
||||||
</span>
|
|
||||||
);
|
);
|
||||||
|
const imgNode = (
|
||||||
|
<img className="mx_BaseAvatar_image" src={imageUrl}
|
||||||
|
alt="" title={title} onError={this.onError}
|
||||||
|
width={width} height={height} />
|
||||||
|
);
|
||||||
|
if (onClick != null) {
|
||||||
|
return (
|
||||||
|
<AccessibleButton element='span' className="mx_BaseAvatar"
|
||||||
|
onClick={onClick} {...otherProps}
|
||||||
|
>
|
||||||
|
{textNode}
|
||||||
|
{imgNode}
|
||||||
|
</AccessibleButton>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return (
|
||||||
|
<span className="mx_BaseAvatar" {...otherProps}>
|
||||||
|
{textNode}
|
||||||
|
{imgNode}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (onClick != null) {
|
if (onClick != null) {
|
||||||
return (
|
return (
|
||||||
|
Reference in New Issue
Block a user