// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import UserProfile from './user_profile.jsx'; import FileAttachmentListContainer from './file_attachment_list_container.jsx'; import PendingPostOptions from 'components/post_view/components/pending_post_options.jsx'; import PostMessageContainer from 'components/post_view/components/post_message_container.jsx'; import ProfilePicture from 'components/profile_picture.jsx'; import TeamStore from 'stores/team_store.jsx'; import UserStore from 'stores/user_store.jsx'; import * as GlobalActions from 'actions/global_actions.jsx'; import {flagPost, unflagPost} from 'actions/post_actions.jsx'; import * as Utils from 'utils/utils.jsx'; import * as PostUtils from 'utils/post_utils.jsx'; import Constants from 'utils/constants.jsx'; import {Tooltip, OverlayTrigger} from 'react-bootstrap'; import {FormattedMessage, FormattedDate} from 'react-intl'; import loadingGif from 'images/load.gif'; import React from 'react'; export default class RhsComment extends React.Component { constructor(props) { super(props); this.handlePermalink = this.handlePermalink.bind(this); this.removePost = this.removePost.bind(this); this.flagPost = this.flagPost.bind(this); this.unflagPost = this.unflagPost.bind(this); this.state = {}; } handlePermalink(e) { e.preventDefault(); GlobalActions.showGetPostLinkModal(this.props.post); } removePost() { GlobalActions.emitRemovePost(this.props.post); } createRemovePostButton() { return ( {'×'} ); } shouldComponentUpdate(nextProps) { if (nextProps.status !== this.props.status) { return true; } if (nextProps.compactDisplay !== this.props.compactDisplay) { return true; } if (nextProps.useMilitaryTime !== this.props.useMilitaryTime) { return true; } if (nextProps.isFlagged !== this.props.isFlagged) { return true; } if (!Utils.areObjectsEqual(nextProps.post, this.props.post)) { return true; } if (!Utils.areObjectsEqual(nextProps.currentUser, this.props.currentUser)) { return true; } return false; } flagPost(e) { e.preventDefault(); flagPost(this.props.post.id); } unflagPost(e) { e.preventDefault(); unflagPost(this.props.post.id); } createDropdown() { const post = this.props.post; if (post.state === Constants.POST_FAILED || post.state === Constants.POST_LOADING) { return ''; } const isOwner = this.props.currentUser.id === post.user_id; var isAdmin = TeamStore.isTeamAdminForCurrentTeam() || UserStore.isSystemAdminForCurrentUser(); var dropdownContents = []; if (Utils.isMobile()) { if (this.props.isFlagged) { dropdownContents.push(
  • ); } else { dropdownContents.push(
  • ); } } dropdownContents.push(
  • ); if (isOwner) { dropdownContents.push(
  • ); } if (isOwner || isAdmin) { dropdownContents.push(
  • { e.preventDefault(); GlobalActions.showDeletePostModal(post, 0); }} >
  • ); } if (dropdownContents.length === 0) { return ''; } return (
    {flag} ); } let options; if (Utils.isPostEphemeral(post)) { options = (
  • {this.createRemovePostButton()}
  • ); } else if (!PostUtils.isSystemMessage(post)) { options = (
  • {this.createDropdown()}
  • ); } return (
    {profilePicContainer}
    • {botIndicator}
    • {flagTrigger}
    • {options}
    {loading} {message}
    {fileAttachment}
    ); } } RhsComment.propTypes = { post: React.PropTypes.object, user: React.PropTypes.object.isRequired, currentUser: React.PropTypes.object.isRequired, compactDisplay: React.PropTypes.bool, useMilitaryTime: React.PropTypes.bool.isRequired, isFlagged: React.PropTypes.bool, status: React.PropTypes.string };