2019-05-01 20:05:11 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
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 sdk from '../../../index';
|
|
|
|
import { isContentActionable } from '../../../utils/EventUtils';
|
2019-05-09 21:11:40 +03:00
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
2019-05-01 20:05:11 +03:00
|
|
|
|
|
|
|
export default class ReactionsRow extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
|
|
// The event we're displaying reactions for
|
|
|
|
mxEvent: PropTypes.object.isRequired,
|
2019-05-08 20:16:27 +03:00
|
|
|
// The Relations model from the JS SDK for reactions to `mxEvent`
|
|
|
|
reactions: PropTypes.object,
|
2019-05-01 20:05:11 +03:00
|
|
|
}
|
|
|
|
|
2019-05-09 17:14:58 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
if (props.reactions) {
|
2019-05-09 20:37:52 +03:00
|
|
|
props.reactions.on("Relations.add", this.onReactionsChange);
|
2019-05-09 17:14:58 +03:00
|
|
|
props.reactions.on("Relations.redaction", this.onReactionsChange);
|
|
|
|
}
|
2019-05-09 21:11:40 +03:00
|
|
|
|
|
|
|
this.state = {
|
|
|
|
myReactions: this.getMyReactions(),
|
|
|
|
};
|
2019-05-09 17:14:58 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 19:59:17 +03:00
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (prevProps.reactions !== this.props.reactions) {
|
|
|
|
this.props.reactions.on("Relations.add", this.onReactionsChange);
|
|
|
|
this.props.reactions.on("Relations.redaction", this.onReactionsChange);
|
|
|
|
this.onReactionsChange();
|
2019-05-09 17:14:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.props.reactions) {
|
2019-05-09 20:37:52 +03:00
|
|
|
this.props.reactions.removeListener(
|
|
|
|
"Relations.add",
|
|
|
|
this.onReactionsChange,
|
|
|
|
);
|
2019-05-09 17:14:58 +03:00
|
|
|
this.props.reactions.removeListener(
|
|
|
|
"Relations.redaction",
|
|
|
|
this.onReactionsChange,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onReactionsChange = () => {
|
|
|
|
// TODO: Call `onHeightChanged` as needed
|
2019-05-09 21:11:40 +03:00
|
|
|
this.setState({
|
|
|
|
myReactions: this.getMyReactions(),
|
|
|
|
});
|
2019-05-13 17:00:43 +03:00
|
|
|
// Using `forceUpdate` for the moment, since we know the overall set of reactions
|
|
|
|
// has changed (this is triggered by events for that purpose only) and
|
|
|
|
// `PureComponent`s shallow state / props compare would otherwise filter this out.
|
2019-05-09 17:14:58 +03:00
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
|
2019-05-09 21:11:40 +03:00
|
|
|
getMyReactions() {
|
|
|
|
const reactions = this.props.reactions;
|
|
|
|
if (!reactions) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const userId = MatrixClientPeg.get().getUserId();
|
|
|
|
return reactions.getAnnotationsBySender()[userId];
|
|
|
|
}
|
|
|
|
|
2019-05-01 20:05:11 +03:00
|
|
|
render() {
|
2019-05-08 20:16:27 +03:00
|
|
|
const { mxEvent, reactions } = this.props;
|
2019-05-09 21:11:40 +03:00
|
|
|
const { myReactions } = this.state;
|
2019-05-01 20:05:11 +03:00
|
|
|
|
2019-05-08 20:16:27 +03:00
|
|
|
if (!reactions || !isContentActionable(mxEvent)) {
|
2019-05-01 20:05:11 +03:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ReactionsRowButton = sdk.getComponent('messages.ReactionsRowButton');
|
2019-05-08 20:16:27 +03:00
|
|
|
const items = reactions.getSortedAnnotationsByKey().map(([content, events]) => {
|
2019-05-09 17:14:58 +03:00
|
|
|
const count = events.size;
|
|
|
|
if (!count) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-05-09 21:11:40 +03:00
|
|
|
const myReactionEvent = myReactions && myReactions.find(mxEvent => {
|
|
|
|
if (mxEvent.isRedacted()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return mxEvent.getContent()["m.relates_to"].key === content;
|
|
|
|
});
|
2019-05-01 20:05:11 +03:00
|
|
|
return <ReactionsRowButton
|
|
|
|
key={content}
|
|
|
|
content={content}
|
|
|
|
count={count}
|
2019-05-09 21:11:40 +03:00
|
|
|
mxEvent={mxEvent}
|
|
|
|
myReactionEvent={myReactionEvent}
|
2019-05-01 20:05:11 +03:00
|
|
|
/>;
|
|
|
|
});
|
|
|
|
|
|
|
|
return <div className="mx_ReactionsRow">
|
|
|
|
{items}
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|