From 4abe6037bbc57bba77b0ceb9014595e37f9d1710 Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Mon, 1 Feb 2016 19:37:07 +0500 Subject: Fixing system console and changing swapping icon with reply icon --- web/react/components/admin_console/analytics.jsx | 20 +++++++----- web/react/components/post_info.jsx | 41 +++++++++++------------- web/react/components/search_results_item.jsx | 2 +- 3 files changed, 31 insertions(+), 32 deletions(-) (limited to 'web/react/components') diff --git a/web/react/components/admin_console/analytics.jsx b/web/react/components/admin_console/analytics.jsx index ff5903c62..a22c26c34 100644 --- a/web/react/components/admin_console/analytics.jsx +++ b/web/react/components/admin_console/analytics.jsx @@ -104,10 +104,12 @@ export default class Analytics extends React.Component { let content; if (this.props.postCountsDay.labels.length === 0) { content = ( - +
+ +
); } else { content = ( @@ -153,10 +155,12 @@ export default class Analytics extends React.Component { let content; if (this.props.userCountsWithPostsDay.labels.length === 0) { content = ( - +
+ +
); } else { content = ( diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx index 73b47024c..2bff675a9 100644 --- a/web/react/components/post_info.jsx +++ b/web/react/components/post_info.jsx @@ -22,26 +22,6 @@ export default class PostInfo extends React.Component { this.handlePermalinkCopy = this.handlePermalinkCopy.bind(this); } - createReplyLink() { - if (this.props.allowReply === 'true') { - var hideReply = ''; - - if (this.props.commentCount >= 1) { - hideReply = ' post__reply--hide'; - } - - return ( -
- - - -
- ); - } - } createDropdown() { var post = this.props.post; var isOwner = UserStore.getCurrentId() === post.user_id; @@ -62,6 +42,23 @@ export default class PostInfo extends React.Component { dataComments = this.props.commentCount; } + if (this.props.allowReply === 'true') { + dropdownContents.push( +
  • + + {'Reply'} + +
  • + ); + } + dropdownContents.push(
  • {commentCountText} @@ -184,7 +181,6 @@ export default class PostInfo extends React.Component { } var dropdown = this.createDropdown(); - var replyLink = this.createReplyLink(); const permalink = TeamStore.getCurrentTeamUrl() + '/pl/' + post.id; const copyButtonText = this.state.copiedLink ? (
    {'Copy '}
    ) : 'Copy'; @@ -227,7 +223,6 @@ export default class PostInfo extends React.Component { />
  • - {replyLink}
  • -- cgit v1.2.3-1-g7c22