summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_comment.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-08-22 20:35:28 -0400
committerCorey Hulen <corey@hulen.com>2016-08-22 16:35:28 -0800
commitc3c62ad2ad018be6887149e92dd35bb527f55168 (patch)
tree0402aca6be2f632a0d8d2bd54f7bae1646154842 /webapp/components/rhs_comment.jsx
parentf0c672e3ad64f0daf023d9ef70de940b3354e133 (diff)
downloadchat-c3c62ad2ad018be6887149e92dd35bb527f55168.tar.gz
chat-c3c62ad2ad018be6887149e92dd35bb527f55168.tar.bz2
chat-c3c62ad2ad018be6887149e92dd35bb527f55168.zip
PLT-3982 Add statuses to profile pictures in the RHS and popover member list (#3845)
* Added status indicator back to popover member list * Updating positions of status indicator (#3844) * Fixed squishy profile pictures and added statuses to RHS pics
Diffstat (limited to 'webapp/components/rhs_comment.jsx')
-rw-r--r--webapp/components/rhs_comment.jsx21
1 files changed, 14 insertions, 7 deletions
diff --git a/webapp/components/rhs_comment.jsx b/webapp/components/rhs_comment.jsx
index a90380510..92182e27a 100644
--- a/webapp/components/rhs_comment.jsx
+++ b/webapp/components/rhs_comment.jsx
@@ -4,6 +4,7 @@
import UserProfile from './user_profile.jsx';
import FileAttachmentList from './file_attachment_list.jsx';
import PendingPostOptions from 'components/post_view/components/pending_post_options.jsx';
+import ProfilePicture from 'components/profile_picture.jsx';
import TeamStore from 'stores/team_store.jsx';
import UserStore from 'stores/user_store.jsx';
@@ -13,7 +14,7 @@ import {flagPost, unflagPost} from 'actions/post_actions.jsx';
import * as TextFormatting from 'utils/text_formatting.jsx';
import * as Utils from 'utils/utils.jsx';
-import Client from 'client/web_client.jsx';
+import * as PostUtils from 'utils/post_utils.jsx';
import Constants from 'utils/constants.jsx';
import {Tooltip, OverlayTrigger} from 'react-bootstrap';
@@ -41,6 +42,10 @@ export default class RhsComment extends React.Component {
}
shouldComponentUpdate(nextProps) {
+ if (nextProps.status !== this.props.status) {
+ return true;
+ }
+
if (nextProps.compactDisplay !== this.props.compactDisplay) {
return true;
}
@@ -75,7 +80,7 @@ export default class RhsComment extends React.Component {
}
createDropdown() {
- var post = this.props.post;
+ const post = this.props.post;
if (post.state === Constants.POST_FAILED || post.state === Constants.POST_LOADING || post.state === Constants.POST_DELETED) {
return '';
@@ -212,7 +217,7 @@ export default class RhsComment extends React.Component {
}
render() {
- var post = this.props.post;
+ const post = this.props.post;
const flagIcon = Constants.FLAG_ICON_SVG;
var currentUserCss = '';
@@ -258,10 +263,11 @@ export default class RhsComment extends React.Component {
}
let profilePic = (
- <img
- src={Client.getUsersRoute() + '/' + post.user_id + '/image?time=' + timestamp}
- height='36'
+ <ProfilePicture
+ src={PostUtils.getProfilePicSrcForPost(post, timestamp)}
+ status={this.props.status}
width='36'
+ height='36'
/>
);
@@ -385,5 +391,6 @@ RhsComment.propTypes = {
currentUser: React.PropTypes.object.isRequired,
compactDisplay: React.PropTypes.bool,
useMilitaryTime: React.PropTypes.bool.isRequired,
- isFlagged: React.PropTypes.bool
+ isFlagged: React.PropTypes.bool,
+ status: React.PropTypes.string
};