mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 02:21:34 +03:00
18d444d2e7
If we don't have the shortcode for some emoji, don't show any "reacted with X" text in the reaction tooltip. Fixes https://github.com/vector-im/riot-web/issues/9786
84 lines
2.9 KiB
JavaScript
84 lines
2.9 KiB
JavaScript
/*
|
|
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 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 { name } = room.getMember(reactionEvent.getSender());
|
|
senders.push(name);
|
|
}
|
|
const shortName = unicodeToShortcode(content);
|
|
tooltipLabel = <div>{_t(
|
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>",
|
|
{
|
|
shortName,
|
|
},
|
|
{
|
|
reactors: () => {
|
|
return <div className="mx_ReactionsRowButtonTooltip_senders">
|
|
{formatCommaSeparatedList(senders, 6)}
|
|
</div>;
|
|
},
|
|
reactedWith: (sub) => {
|
|
if (!shortName) {
|
|
return null;
|
|
}
|
|
return <div className="mx_ReactionsRowButtonTooltip_reactedWith">
|
|
{sub}
|
|
</div>;
|
|
},
|
|
},
|
|
)}</div>;
|
|
}
|
|
|
|
let tooltip;
|
|
if (tooltipLabel) {
|
|
tooltip = <Tooltip
|
|
tooltipClassName="mx_Tooltip_timeline"
|
|
visible={visible}
|
|
label={tooltipLabel}
|
|
/>;
|
|
}
|
|
|
|
return tooltip;
|
|
}
|
|
}
|