Skip to content

Commit

Permalink
PLT-5188: Reinstate delete option on system messages. (#5113)
Browse files Browse the repository at this point in the history
* PLT-5188: Reinstate delete option on system messages.

* Fix styling.

* Fix empty hover box.
  • Loading branch information
grundleborg authored and hmhealey committed Feb 28, 2017
1 parent 25b9b7d commit 5a3bc43
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 31 deletions.
68 changes: 37 additions & 31 deletions webapp/components/post_view/components/post_info.jsx
Expand Up @@ -53,10 +53,8 @@ export default class PostInfo extends React.Component {
}

createDropdown() {
var post = this.props.post;

this.canDelete = PostUtils.canDeletePost(post);
this.canEdit = PostUtils.canEditPost(post, this.editDisableAction);
const post = this.props.post;
const isSystemMessage = PostUtils.isSystemMessage(post);

if (post.state === Constants.POST_FAILED || post.state === Constants.POST_LOADING) {
return '';
Expand Down Expand Up @@ -131,22 +129,24 @@ export default class PostInfo extends React.Component {
}
}

dropdownContents.push(
<li
key='copyLink'
role='presentation'
>
<a
href='#'
onClick={this.handlePermalink}
if (!isSystemMessage) {
dropdownContents.push(
<li
key='copyLink'
role='presentation'
>
<FormattedMessage
id='post_info.permalink'
defaultMessage='Permalink'
/>
</a>
</li>
);
<a
href='#'
onClick={this.handlePermalink}
>
<FormattedMessage
id='post_info.permalink'
defaultMessage='Permalink'
/>
</a>
</li>
);
}

if (this.canDelete) {
dropdownContents.push(
Expand Down Expand Up @@ -267,6 +267,9 @@ export default class PostInfo extends React.Component {
var commentCountText = this.props.commentCount;
const flagIcon = Constants.FLAG_ICON_SVG;

this.canDelete = PostUtils.canDeletePost(post);
this.canEdit = PostUtils.canEditPost(post, this.editDisableAction);

if (this.props.commentCount >= 1) {
showCommentClass = ' icon--show';
} else {
Expand Down Expand Up @@ -296,18 +299,21 @@ export default class PostInfo extends React.Component {
{this.createRemovePostButton()}
</li>
);
} else if (!PostUtils.isSystemMessage(post)) {
options = (
<li className='col col__reply'>
<div
className='dropdown'
ref='dotMenu'
>
{this.createDropdown()}
</div>
{comments}
</li>
);
} else {
const dropdown = this.createDropdown();
if (dropdown) {
options = (
<li className='col col__reply'>
<div
className='dropdown'
ref='dotMenu'
>
{dropdown}
</div>
{comments}
</li>
);
}
}

let flag;
Expand Down
11 changes: 11 additions & 0 deletions webapp/sass/layout/_post.scss
Expand Up @@ -518,6 +518,17 @@
position: relative;
word-wrap: break-word;

&.post--system {
.post__header {
.col__reply {
min-width: 0;
}
.dropdown {
margin-right: 0;
}
}
}

&:hover {
.dropdown,
.comment-icon__container,
Expand Down

0 comments on commit 5a3bc43

Please sign in to comment.