From 4e8203cca1d06958633d726beb7dd694b3dc640c Mon Sep 17 00:00:00 2001
From: Michael Telatynski <7t3chguy@gmail.com>
Date: Tue, 14 Jul 2020 12:42:51 +0100
Subject: [PATCH] revert some changes to resolve what looks like a props
mutation race-condition
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
---
.../views/messages/ReactionsRowButton.js | 75 +++++++++-------
.../messages/ReactionsRowButtonTooltip.js | 85 +++++++++++++++++++
2 files changed, 128 insertions(+), 32 deletions(-)
create mode 100644 src/components/views/messages/ReactionsRowButtonTooltip.js
diff --git a/src/components/views/messages/ReactionsRowButton.js b/src/components/views/messages/ReactionsRowButton.js
index 8c0cf3b0b0..09824cd315 100644
--- a/src/components/views/messages/ReactionsRowButton.js
+++ b/src/components/views/messages/ReactionsRowButton.js
@@ -19,11 +19,10 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import {MatrixClientPeg} from '../../../MatrixClientPeg';
+import * as sdk from '../../../index';
import { _t } from '../../../languageHandler';
import { formatCommaSeparatedList } from '../../../utils/FormattingUtils';
import dis from "../../../dispatcher/dispatcher";
-import AccessibleTooltipButton from "../elements/AccessibleTooltipButton";
-import {unicodeToShortcode} from "../../../HtmlUtils";
export default class ReactionsRowButton extends React.PureComponent {
static propTypes = {
@@ -39,6 +38,14 @@ export default class ReactionsRowButton extends React.PureComponent {
myReactionEvent: PropTypes.object,
}
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ tooltipVisible: false,
+ };
+ }
+
onClick = (ev) => {
const { mxEvent, myReactionEvent, content } = this.props;
if (myReactionEvent) {
@@ -58,7 +65,24 @@ export default class ReactionsRowButton extends React.PureComponent {
}
};
+ onMouseOver = () => {
+ this.setState({
+ // To avoid littering the DOM with a tooltip for every reaction,
+ // only render it on first use.
+ tooltipRendered: true,
+ tooltipVisible: true,
+ });
+ }
+
+ onMouseOut = () => {
+ this.setState({
+ tooltipVisible: false,
+ });
+ }
+
render() {
+ const ReactionsRowButtonTooltip =
+ sdk.getComponent('messages.ReactionsRowButtonTooltip');
const { mxEvent, content, count, reactionEvents, myReactionEvent } = this.props;
const classes = classNames({
@@ -66,9 +90,18 @@ export default class ReactionsRowButton extends React.PureComponent {
mx_ReactionsRowButton_selected: !!myReactionEvent,
});
+ let tooltip;
+ if (this.state.tooltipRendered) {
+ tooltip = ;
+ }
+
const room = MatrixClientPeg.get().getRoom(mxEvent.getRoomId());
let label;
- let tooltip;
if (room) {
const senders = [];
for (const reactionEvent of reactionEvents) {
@@ -93,37 +126,14 @@ export default class ReactionsRowButton extends React.PureComponent {
},
},
);
-
- const shortName = unicodeToShortcode(content);
- tooltip =
{_t(
- "
reacted with %(shortName)s",
- {
- shortName,
- },
- {
- reactors: () => {
- return
- {formatCommaSeparatedList(senders, 6)}
-
;
- },
- reactedWith: (sub) => {
- if (!shortName) {
- return null;
- }
- return
- {sub}
-
;
- },
- },
- )}
;
}
- return
{content}
@@ -131,6 +141,7 @@ export default class ReactionsRowButton extends React.PureComponent {
{count}
- ;
+ {tooltip}
+ ;
}
}
diff --git a/src/components/views/messages/ReactionsRowButtonTooltip.js b/src/components/views/messages/ReactionsRowButtonTooltip.js
new file mode 100644
index 0000000000..59e9d2ad7f
--- /dev/null
+++ b/src/components/views/messages/ReactionsRowButtonTooltip.js
@@ -0,0 +1,85 @@
+/*
+Copyright 2019 The Matrix.org Foundation C.I.C.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import {MatrixClientPeg} from '../../../MatrixClientPeg';
+import * as sdk from '../../../index';
+import { unicodeToShortcode } from '../../../HtmlUtils';
+import { _t } from '../../../languageHandler';
+import { formatCommaSeparatedList } from '../../../utils/FormattingUtils';
+
+export default class ReactionsRowButtonTooltip extends React.PureComponent {
+ static propTypes = {
+ // The event we're displaying reactions for
+ mxEvent: PropTypes.object.isRequired,
+ // The reaction content / key / emoji
+ content: PropTypes.string.isRequired,
+ // A Set of Martix reaction events for this key
+ reactionEvents: PropTypes.object.isRequired,
+ visible: PropTypes.bool.isRequired,
+ }
+
+ render() {
+ const Tooltip = sdk.getComponent('elements.Tooltip');
+ const { content, reactionEvents, mxEvent, visible } = this.props;
+
+ const room = MatrixClientPeg.get().getRoom(mxEvent.getRoomId());
+ let tooltipLabel;
+ if (room) {
+ const senders = [];
+ for (const reactionEvent of reactionEvents) {
+ const member = room.getMember(reactionEvent.getSender());
+ const name = member ? member.name : reactionEvent.getSender();
+ senders.push(name);
+ }
+ const shortName = unicodeToShortcode(content);
+ tooltipLabel = {_t(
+ "
reacted with %(shortName)s",
+ {
+ shortName,
+ },
+ {
+ reactors: () => {
+ return
+ {formatCommaSeparatedList(senders, 6)}
+
;
+ },
+ reactedWith: (sub) => {
+ if (!shortName) {
+ return null;
+ }
+ return
+ {sub}
+
;
+ },
+ },
+ )}
;
+ }
+
+ let tooltip;
+ if (tooltipLabel) {
+ tooltip = ;
+ }
+
+ return tooltip;
+ }
+}