summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-06-30 08:42:08 -0400
committerJoramWilander <jwawilander@gmail.com>2015-06-30 08:42:08 -0400
commit495b0e45235b646e7bb6aedf53004ee359b6887f (patch)
tree8fbb8ffb00047539892a4e10cda41ffeac451f1a /web/react
parent2d3ef0b0510e4c0be49cb6025e312fcb932789fd (diff)
downloadchat-495b0e45235b646e7bb6aedf53004ee359b6887f.tar.gz
chat-495b0e45235b646e7bb6aedf53004ee359b6887f.tar.bz2
chat-495b0e45235b646e7bb6aedf53004ee359b6887f.zip
add default icon for non-user autocompletes
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/mention.jsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/web/react/components/mention.jsx b/web/react/components/mention.jsx
index f1292c743..3c33ddf49 100644
--- a/web/react/components/mention.jsx
+++ b/web/react/components/mention.jsx
@@ -6,10 +6,16 @@ module.exports = React.createClass({
this.props.handleClick(this.props.username);
},
render: function() {
+ var icon;
+ if (this.props.id != null) {
+ icon = <span><img className="mention-img" src={"/api/v1/users/" + this.props.id + "/image"}/></span>;
+ } else {
+ icon = <span><i className="mention-img fa fa-users fa-2x"></i></span>;
+ }
return (
<div className="mentions-name" onClick={this.handleClick}>
- <img className="mention-img" src={"/api/v1/users/" + this.props.id + "/image"}/>
- <span>@{this.props.username}</span><span className="mention-fullname">{this.props.secondary_text}</span>
+ <div className="pull-left">{icon}</div>
+ <div className="pull-left mention-align"><span>@{this.props.username}</span><span className="mention-fullname">{this.props.secondary_text}</span></div>
</div>
);
}