From f740698dbe06816921d2a20eea876c9ca7b515ed Mon Sep 17 00:00:00 2001 From: David Meza Date: Mon, 31 Jul 2017 07:24:13 -0500 Subject: PLT-6486 Add an `@username` button to the profile popover, that puts the username in the post when clicked (#6349) * PLT-6486 Add an `@username` button to the profile popover, that puts the username in the post when clicked * PLT-6486 Display `@username` mention on the right text area on center or RHS. * Disable @mentions from profile popover on searches, mentions and pinned posts. Fix js errors. * Control undefined post in SearchStore that causes an exception. --- .../post_message_view/post_message_view.jsx | 24 +++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'webapp/components/post_view/post_message_view') diff --git a/webapp/components/post_view/post_message_view/post_message_view.jsx b/webapp/components/post_view/post_message_view/post_message_view.jsx index 1c6035df9..348748450 100644 --- a/webapp/components/post_view/post_message_view/post_message_view.jsx +++ b/webapp/components/post_view/post_message_view/post_message_view.jsx @@ -66,12 +66,24 @@ export default class PostMessageView extends React.PureComponent { /** * Set to render post body compactly */ - compactDisplay: PropTypes.bool + compactDisplay: PropTypes.bool, + + /** + * Flags if the post_message_view is for the RHS (Reply). + */ + isRHS: PropTypes.bool, + + /** + * Flags if the post_message_view is for the RHS (Reply). + */ + hasMention: PropTypes.bool }; static defaultProps = { options: {}, - mentionKeys: [] + mentionKeys: [], + isRHS: false, + hasMention: false }; renderDeletedPost() { @@ -116,7 +128,13 @@ export default class PostMessageView extends React.PureComponent { processNode: (node) => { const mentionName = node.attribs[attrib]; - return ; + return ( + + ); } }, { -- cgit v1.2.3-1-g7c22