diff --git a/js/models/conversations.js b/js/models/conversations.js index 1889996a7..fac026b1a 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -330,9 +330,13 @@ resetMessageSelection() { this.selectedMessages.clear(); this.messageCollection.forEach(m => { - // eslint-disable-next-line no-param-reassign - m.selected = false; - m.trigger('change'); + // on change for ALL messages without real changes is a really costly operation + // -> cause refresh of the whole conversation view even if not a single message was selected + if (m.selected) { + // eslint-disable-next-line no-param-reassign + m.selected = false; + m.trigger('change'); + } }); this.trigger('message-selection-changed'); diff --git a/ts/components/conversation/Message.tsx b/ts/components/conversation/Message.tsx index e841079c5..c8dd2a98d 100644 --- a/ts/components/conversation/Message.tsx +++ b/ts/components/conversation/Message.tsx @@ -213,7 +213,7 @@ export class Message extends React.PureComponent { } public renderMetadataBadges() { - const { direction, isPublic, senderIsModerator } = this.props; + const { direction, isPublic, senderIsModerator, id } = this.props; const badges = [isPublic && 'Public', senderIsModerator && 'Mod']; @@ -224,7 +224,7 @@ export class Message extends React.PureComponent { } return ( - <> +
 •  @@ -239,7 +239,7 @@ export class Message extends React.PureComponent { > {badgeText} - +
); }) .filter(i => !!i); @@ -1064,9 +1064,13 @@ export class Message extends React.PureComponent { // This id is what connects our triple-dot click with our associated pop-up menu. // It needs to be unique. - const triggerId = String(id || `${authorPhoneNumber}-${timestamp}`); - const rightClickTriggerId = `${authorPhoneNumber}-ctx-${timestamp}`; - + // The Date.now() is a workaround to be sure a single triggerID with this id exists + const triggerId = id + ? String(`${id}-${Date.now()}`) + : String(`${authorPhoneNumber}-${timestamp}`); + const rightClickTriggerId = id + ? String(`${id}-ctx-${Date.now()}`) + : String(`${authorPhoneNumber}-ctx-${timestamp}`); if (expired) { return null; }