2019-06-03 15:31:09 +03:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
2019-06-26 17:13:15 +03:00
|
|
|
|
2019-12-08 15:16:17 +03:00
|
|
|
import React, {createRef} from 'react';
|
2019-06-03 15:31:09 +03:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import * as HtmlUtils from '../../../HtmlUtils';
|
2019-07-23 10:12:24 +03:00
|
|
|
import { editBodyDiffToHtml } from '../../../utils/MessageDiffUtils';
|
2019-06-03 15:31:09 +03:00
|
|
|
import {formatTime} from '../../../DateUtils';
|
|
|
|
import {MatrixEvent} from 'matrix-js-sdk';
|
|
|
|
import {pillifyLinks} from '../../../utils/pillify';
|
2019-07-04 12:07:22 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2019-07-04 16:39:36 +03:00
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import classNames from 'classnames';
|
2019-07-19 17:09:23 +03:00
|
|
|
|
|
|
|
function getReplacedContent(event) {
|
|
|
|
const originalContent = event.getOriginalContent();
|
|
|
|
return originalContent["m.new_content"] || originalContent;
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:12:44 +03:00
|
|
|
export default class EditHistoryMessage extends React.PureComponent {
|
2019-06-03 15:31:09 +03:00
|
|
|
static propTypes = {
|
|
|
|
// the message event being edited
|
|
|
|
mxEvent: PropTypes.instanceOf(MatrixEvent).isRequired,
|
2019-07-31 10:47:02 +03:00
|
|
|
previousEdit: PropTypes.instanceOf(MatrixEvent),
|
2019-07-19 17:34:50 +03:00
|
|
|
isBaseEvent: PropTypes.bool,
|
2019-06-03 15:31:09 +03:00
|
|
|
};
|
|
|
|
|
2019-07-04 16:39:36 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const {userId} = cli.credentials;
|
|
|
|
const event = this.props.mxEvent;
|
|
|
|
const room = cli.getRoom(event.getRoomId());
|
2019-07-05 17:04:34 +03:00
|
|
|
if (event.localRedactionEvent()) {
|
|
|
|
event.localRedactionEvent().on("status", this._onAssociatedStatusChanged);
|
|
|
|
}
|
2019-07-04 16:39:36 +03:00
|
|
|
const canRedact = room.currentState.maySendRedactionForEvent(event, userId);
|
2019-07-05 17:04:34 +03:00
|
|
|
this.state = {canRedact, sendStatus: event.getAssociatedStatus()};
|
2019-12-08 15:16:17 +03:00
|
|
|
|
|
|
|
this._content = createRef();
|
2019-07-04 16:39:36 +03:00
|
|
|
}
|
|
|
|
|
2019-07-05 17:04:34 +03:00
|
|
|
_onAssociatedStatusChanged = () => {
|
|
|
|
this.setState({sendStatus: this.props.mxEvent.getAssociatedStatus()});
|
|
|
|
};
|
|
|
|
|
2019-07-04 12:07:22 +03:00
|
|
|
_onRedactClick = async () => {
|
2019-07-04 16:39:36 +03:00
|
|
|
const event = this.props.mxEvent;
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const ConfirmAndWaitRedactDialog = sdk.getComponent("dialogs.ConfirmAndWaitRedactDialog");
|
|
|
|
|
2019-07-08 11:12:04 +03:00
|
|
|
Modal.createTrackedDialog('Confirm Redact Dialog', 'Edit history', ConfirmAndWaitRedactDialog, {
|
2019-07-04 16:39:36 +03:00
|
|
|
redact: () => cli.redactEvent(event.getRoomId(), event.getId()),
|
|
|
|
}, 'mx_Dialog_confirmredact');
|
2019-07-04 12:07:22 +03:00
|
|
|
};
|
|
|
|
|
2019-07-05 17:11:15 +03:00
|
|
|
_onViewSourceClick = () => {
|
|
|
|
const ViewSource = sdk.getComponent('structures.ViewSource');
|
2019-07-08 11:12:04 +03:00
|
|
|
Modal.createTrackedDialog('View Event Source', 'Edit history', ViewSource, {
|
2019-07-05 17:11:15 +03:00
|
|
|
roomId: this.props.mxEvent.getRoomId(),
|
|
|
|
eventId: this.props.mxEvent.getId(),
|
|
|
|
content: this.props.mxEvent.event,
|
|
|
|
}, 'mx_Dialog_viewsource');
|
|
|
|
};
|
|
|
|
|
2019-07-04 16:39:36 +03:00
|
|
|
pillifyLinks() {
|
|
|
|
// not present for redacted events
|
2019-12-08 15:16:17 +03:00
|
|
|
if (this._content.current) {
|
|
|
|
pillifyLinks(this._content.current.children, this.props.mxEvent);
|
2019-07-04 16:39:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 15:31:09 +03:00
|
|
|
componentDidMount() {
|
2019-07-04 16:39:36 +03:00
|
|
|
this.pillifyLinks();
|
2019-06-03 15:31:09 +03:00
|
|
|
}
|
|
|
|
|
2019-07-05 17:04:34 +03:00
|
|
|
componentWillUnmount() {
|
|
|
|
const event = this.props.mxEvent;
|
|
|
|
if (event.localRedactionEvent()) {
|
|
|
|
event.localRedactionEvent().off("status", this._onAssociatedStatusChanged);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 15:31:09 +03:00
|
|
|
componentDidUpdate() {
|
2019-07-04 16:39:36 +03:00
|
|
|
this.pillifyLinks();
|
2019-06-03 15:31:09 +03:00
|
|
|
}
|
|
|
|
|
2019-07-04 12:07:22 +03:00
|
|
|
_renderActionBar() {
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2019-07-05 17:04:34 +03:00
|
|
|
// hide the button when already redacted
|
2019-07-05 17:11:15 +03:00
|
|
|
let redactButton;
|
2019-11-28 07:30:30 +03:00
|
|
|
if (!this.props.mxEvent.isRedacted() && !this.props.isBaseEvent && this.state.canRedact) {
|
2019-07-08 11:12:26 +03:00
|
|
|
redactButton = (
|
2019-11-28 07:30:30 +03:00
|
|
|
<AccessibleButton onClick={this._onRedactClick}>
|
2019-07-08 11:12:26 +03:00
|
|
|
{_t("Remove")}
|
|
|
|
</AccessibleButton>
|
|
|
|
);
|
2019-07-04 16:39:36 +03:00
|
|
|
}
|
2019-07-08 11:12:26 +03:00
|
|
|
const viewSourceButton = (
|
|
|
|
<AccessibleButton onClick={this._onViewSourceClick}>
|
2019-07-05 17:11:15 +03:00
|
|
|
{_t("View Source")}
|
2019-07-08 11:12:26 +03:00
|
|
|
</AccessibleButton>
|
|
|
|
);
|
2019-07-05 17:04:34 +03:00
|
|
|
// disabled remove button when not allowed
|
2019-07-08 11:12:26 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_MessageActionBar">
|
|
|
|
{redactButton}
|
|
|
|
{viewSourceButton}
|
|
|
|
</div>
|
|
|
|
);
|
2019-07-04 12:07:22 +03:00
|
|
|
}
|
|
|
|
|
2019-06-03 15:31:09 +03:00
|
|
|
render() {
|
2019-06-25 11:18:27 +03:00
|
|
|
const {mxEvent} = this.props;
|
2019-07-19 17:09:23 +03:00
|
|
|
const content = getReplacedContent(mxEvent);
|
2019-06-25 11:18:27 +03:00
|
|
|
let contentContainer;
|
2019-07-05 17:04:34 +03:00
|
|
|
if (mxEvent.isRedacted()) {
|
2019-07-04 16:39:36 +03:00
|
|
|
const UnknownBody = sdk.getComponent('messages.UnknownBody');
|
2019-07-08 11:12:26 +03:00
|
|
|
contentContainer = <UnknownBody mxEvent={this.props.mxEvent} />;
|
2019-06-25 11:18:27 +03:00
|
|
|
} else {
|
2019-07-19 17:09:23 +03:00
|
|
|
let contentElements;
|
2019-07-23 10:12:24 +03:00
|
|
|
if (this.props.previousEdit) {
|
|
|
|
contentElements = editBodyDiffToHtml(getReplacedContent(this.props.previousEdit), content);
|
2019-07-19 17:09:23 +03:00
|
|
|
} else {
|
|
|
|
contentElements = HtmlUtils.bodyToHtml(content, null, {stripReplyFallback: true});
|
|
|
|
}
|
2019-07-09 16:00:26 +03:00
|
|
|
if (mxEvent.getContent().msgtype === "m.emote") {
|
|
|
|
const name = mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender();
|
|
|
|
contentContainer = (
|
2019-12-08 15:16:17 +03:00
|
|
|
<div className="mx_EventTile_content" ref={this._content}>*
|
2019-07-09 16:00:26 +03:00
|
|
|
<span className="mx_MEmoteBody_sender">{ name }</span>
|
|
|
|
{contentElements}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
2019-12-08 15:16:17 +03:00
|
|
|
contentContainer = <div className="mx_EventTile_content" ref={this._content}>{contentElements}</div>;
|
2019-07-09 16:00:26 +03:00
|
|
|
}
|
2019-06-25 11:18:27 +03:00
|
|
|
}
|
2019-07-09 16:00:26 +03:00
|
|
|
|
2019-06-25 11:18:27 +03:00
|
|
|
const timestamp = formatTime(new Date(mxEvent.getTs()), this.props.isTwelveHour);
|
2019-07-05 17:04:34 +03:00
|
|
|
const isSending = (['sending', 'queued', 'encrypting'].indexOf(this.state.sendStatus) !== -1);
|
2019-07-04 16:39:36 +03:00
|
|
|
const classes = classNames({
|
|
|
|
"mx_EventTile": true,
|
2019-07-05 17:04:34 +03:00
|
|
|
"mx_EventTile_redacted": mxEvent.isRedacted(),
|
2019-07-04 16:39:36 +03:00
|
|
|
"mx_EventTile_sending": isSending,
|
2019-07-05 17:04:34 +03:00
|
|
|
"mx_EventTile_notSent": this.state.sendStatus === 'not_sent',
|
2019-07-04 16:39:36 +03:00
|
|
|
});
|
2019-07-08 11:12:26 +03:00
|
|
|
return (
|
|
|
|
<li>
|
|
|
|
<div className={classes}>
|
|
|
|
<div className="mx_EventTile_line">
|
|
|
|
<span className="mx_MessageTimestamp">{timestamp}</span>
|
|
|
|
{ contentContainer }
|
|
|
|
{ this._renderActionBar() }
|
|
|
|
</div>
|
2019-07-05 17:05:40 +03:00
|
|
|
</div>
|
2019-07-08 11:12:26 +03:00
|
|
|
</li>
|
|
|
|
);
|
2019-06-03 15:31:09 +03:00
|
|
|
}
|
|
|
|
}
|