mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 23:41:44 +03:00
600cb64d00
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
505 lines
18 KiB
JavaScript
505 lines
18 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2018 New Vector Ltd
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
|
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 createReactClass from 'create-react-class';
|
|
import {EventStatus} from 'matrix-js-sdk';
|
|
|
|
import {MatrixClientPeg} from '../../../MatrixClientPeg';
|
|
import dis from '../../../dispatcher';
|
|
import * as sdk from '../../../index';
|
|
import { _t } from '../../../languageHandler';
|
|
import Modal from '../../../Modal';
|
|
import Resend from '../../../Resend';
|
|
import SettingsStore from '../../../settings/SettingsStore';
|
|
import { isUrlPermitted } from '../../../HtmlUtils';
|
|
import { isContentActionable } from '../../../utils/EventUtils';
|
|
import {MenuItem} from "../../structures/ContextMenu";
|
|
|
|
function canCancel(eventStatus) {
|
|
return eventStatus === EventStatus.QUEUED || eventStatus === EventStatus.NOT_SENT;
|
|
}
|
|
|
|
export default createReactClass({
|
|
displayName: 'MessageContextMenu',
|
|
|
|
propTypes: {
|
|
/* the MatrixEvent associated with the context menu */
|
|
mxEvent: PropTypes.object.isRequired,
|
|
|
|
/* an optional EventTileOps implementation that can be used to unhide preview widgets */
|
|
eventTileOps: PropTypes.object,
|
|
|
|
/* an optional function to be called when the user clicks collapse thread, if not provided hide button */
|
|
collapseReplyThread: PropTypes.func,
|
|
|
|
/* callback called when the menu is dismissed */
|
|
onFinished: PropTypes.func,
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
canRedact: false,
|
|
canPin: false,
|
|
};
|
|
},
|
|
|
|
componentWillMount: function() {
|
|
MatrixClientPeg.get().on('RoomMember.powerLevel', this._checkPermissions);
|
|
this._checkPermissions();
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
const cli = MatrixClientPeg.get();
|
|
if (cli) {
|
|
cli.removeListener('RoomMember.powerLevel', this._checkPermissions);
|
|
}
|
|
},
|
|
|
|
_checkPermissions: function() {
|
|
const cli = MatrixClientPeg.get();
|
|
const room = cli.getRoom(this.props.mxEvent.getRoomId());
|
|
|
|
const canRedact = room.currentState.maySendRedactionForEvent(this.props.mxEvent, cli.credentials.userId);
|
|
let canPin = room.currentState.mayClientSendStateEvent('m.room.pinned_events', cli);
|
|
|
|
// HACK: Intentionally say we can't pin if the user doesn't want to use the functionality
|
|
if (!SettingsStore.isFeatureEnabled("feature_pinning")) canPin = false;
|
|
|
|
this.setState({canRedact, canPin});
|
|
},
|
|
|
|
_isPinned: function() {
|
|
const room = MatrixClientPeg.get().getRoom(this.props.mxEvent.getRoomId());
|
|
const pinnedEvent = room.currentState.getStateEvents('m.room.pinned_events', '');
|
|
if (!pinnedEvent) return false;
|
|
return pinnedEvent.getContent().pinned.includes(this.props.mxEvent.getId());
|
|
},
|
|
|
|
onResendClick: function() {
|
|
Resend.resend(this.props.mxEvent);
|
|
this.closeMenu();
|
|
},
|
|
|
|
onResendEditClick: function() {
|
|
Resend.resend(this.props.mxEvent.replacingEvent());
|
|
this.closeMenu();
|
|
},
|
|
|
|
onResendRedactionClick: function() {
|
|
Resend.resend(this.props.mxEvent.localRedactionEvent());
|
|
this.closeMenu();
|
|
},
|
|
|
|
onResendReactionsClick: function() {
|
|
for (const reaction of this._getUnsentReactions()) {
|
|
Resend.resend(reaction);
|
|
}
|
|
this.closeMenu();
|
|
},
|
|
|
|
e2eInfoClicked: function() {
|
|
this.props.e2eInfoCallback();
|
|
this.closeMenu();
|
|
},
|
|
|
|
onReportEventClick: function() {
|
|
const ReportEventDialog = sdk.getComponent("dialogs.ReportEventDialog");
|
|
Modal.createTrackedDialog('Report Event', '', ReportEventDialog, {
|
|
mxEvent: this.props.mxEvent,
|
|
}, 'mx_Dialog_reportEvent');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onViewSourceClick: function() {
|
|
const ViewSource = sdk.getComponent('structures.ViewSource');
|
|
Modal.createTrackedDialog('View Event Source', '', ViewSource, {
|
|
roomId: this.props.mxEvent.getRoomId(),
|
|
eventId: this.props.mxEvent.getId(),
|
|
content: this.props.mxEvent.event,
|
|
}, 'mx_Dialog_viewsource');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onViewClearSourceClick: function() {
|
|
const ViewSource = sdk.getComponent('structures.ViewSource');
|
|
Modal.createTrackedDialog('View Clear Event Source', '', ViewSource, {
|
|
roomId: this.props.mxEvent.getRoomId(),
|
|
eventId: this.props.mxEvent.getId(),
|
|
// FIXME: _clearEvent is private
|
|
content: this.props.mxEvent._clearEvent,
|
|
}, 'mx_Dialog_viewsource');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onRedactClick: function() {
|
|
const ConfirmRedactDialog = sdk.getComponent("dialogs.ConfirmRedactDialog");
|
|
Modal.createTrackedDialog('Confirm Redact Dialog', '', ConfirmRedactDialog, {
|
|
onFinished: async (proceed) => {
|
|
if (!proceed) return;
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
try {
|
|
await cli.redactEvent(
|
|
this.props.mxEvent.getRoomId(),
|
|
this.props.mxEvent.getId(),
|
|
);
|
|
} catch (e) {
|
|
const code = e.errcode || e.statusCode;
|
|
// only show the dialog if failing for something other than a network error
|
|
// (e.g. no errcode or statusCode) as in that case the redactions end up in the
|
|
// detached queue and we show the room status bar to allow retry
|
|
if (typeof code !== "undefined") {
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
// display error message stating you couldn't delete this.
|
|
Modal.createTrackedDialog('You cannot delete this message', '', ErrorDialog, {
|
|
title: _t('Error'),
|
|
description: _t('You cannot delete this message. (%(code)s)', {code}),
|
|
});
|
|
}
|
|
}
|
|
},
|
|
}, 'mx_Dialog_confirmredact');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onCancelSendClick: function() {
|
|
const mxEvent = this.props.mxEvent;
|
|
const editEvent = mxEvent.replacingEvent();
|
|
const redactEvent = mxEvent.localRedactionEvent();
|
|
const pendingReactions = this._getPendingReactions();
|
|
|
|
if (editEvent && canCancel(editEvent.status)) {
|
|
Resend.removeFromQueue(editEvent);
|
|
}
|
|
if (redactEvent && canCancel(redactEvent.status)) {
|
|
Resend.removeFromQueue(redactEvent);
|
|
}
|
|
if (pendingReactions.length) {
|
|
for (const reaction of pendingReactions) {
|
|
Resend.removeFromQueue(reaction);
|
|
}
|
|
}
|
|
if (canCancel(mxEvent.status)) {
|
|
Resend.removeFromQueue(this.props.mxEvent);
|
|
}
|
|
this.closeMenu();
|
|
},
|
|
|
|
onForwardClick: function() {
|
|
dis.dispatch({
|
|
action: 'forward_event',
|
|
event: this.props.mxEvent,
|
|
});
|
|
this.closeMenu();
|
|
},
|
|
|
|
onPinClick: function() {
|
|
MatrixClientPeg.get().getStateEvent(this.props.mxEvent.getRoomId(), 'm.room.pinned_events', '')
|
|
.catch((e) => {
|
|
// Intercept the Event Not Found error and fall through the promise chain with no event.
|
|
if (e.errcode === "M_NOT_FOUND") return null;
|
|
throw e;
|
|
})
|
|
.then((event) => {
|
|
const eventIds = (event ? event.pinned : []) || [];
|
|
if (!eventIds.includes(this.props.mxEvent.getId())) {
|
|
// Not pinned - add
|
|
eventIds.push(this.props.mxEvent.getId());
|
|
} else {
|
|
// Pinned - remove
|
|
eventIds.splice(eventIds.indexOf(this.props.mxEvent.getId()), 1);
|
|
}
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
cli.sendStateEvent(this.props.mxEvent.getRoomId(), 'm.room.pinned_events', {pinned: eventIds}, '');
|
|
});
|
|
this.closeMenu();
|
|
},
|
|
|
|
closeMenu: function() {
|
|
if (this.props.onFinished) this.props.onFinished();
|
|
},
|
|
|
|
onUnhidePreviewClick: function() {
|
|
if (this.props.eventTileOps) {
|
|
this.props.eventTileOps.unhideWidget();
|
|
}
|
|
this.closeMenu();
|
|
},
|
|
|
|
onQuoteClick: function() {
|
|
dis.dispatch({
|
|
action: 'quote',
|
|
event: this.props.mxEvent,
|
|
});
|
|
this.closeMenu();
|
|
},
|
|
|
|
onPermalinkClick: function(e: Event) {
|
|
e.preventDefault();
|
|
const ShareDialog = sdk.getComponent("dialogs.ShareDialog");
|
|
Modal.createTrackedDialog('share room message dialog', '', ShareDialog, {
|
|
target: this.props.mxEvent,
|
|
permalinkCreator: this.props.permalinkCreator,
|
|
});
|
|
this.closeMenu();
|
|
},
|
|
|
|
onCollapseReplyThreadClick: function() {
|
|
this.props.collapseReplyThread();
|
|
this.closeMenu();
|
|
},
|
|
|
|
_getReactions(filter) {
|
|
const cli = MatrixClientPeg.get();
|
|
const room = cli.getRoom(this.props.mxEvent.getRoomId());
|
|
const eventId = this.props.mxEvent.getId();
|
|
return room.getPendingEvents().filter(e => {
|
|
const relation = e.getRelation();
|
|
return relation &&
|
|
relation.rel_type === "m.annotation" &&
|
|
relation.event_id === eventId &&
|
|
filter(e);
|
|
});
|
|
},
|
|
|
|
_getPendingReactions() {
|
|
return this._getReactions(e => canCancel(e.status));
|
|
},
|
|
|
|
_getUnsentReactions() {
|
|
return this._getReactions(e => e.status === EventStatus.NOT_SENT);
|
|
},
|
|
|
|
render: function() {
|
|
const cli = MatrixClientPeg.get();
|
|
const me = cli.getUserId();
|
|
const mxEvent = this.props.mxEvent;
|
|
const eventStatus = mxEvent.status;
|
|
const editStatus = mxEvent.replacingEvent() && mxEvent.replacingEvent().status;
|
|
const redactStatus = mxEvent.localRedactionEvent() && mxEvent.localRedactionEvent().status;
|
|
const unsentReactionsCount = this._getUnsentReactions().length;
|
|
const pendingReactionsCount = this._getPendingReactions().length;
|
|
const allowCancel = canCancel(mxEvent.status) ||
|
|
canCancel(editStatus) ||
|
|
canCancel(redactStatus) ||
|
|
pendingReactionsCount !== 0;
|
|
let resendButton;
|
|
let resendEditButton;
|
|
let resendReactionsButton;
|
|
let resendRedactionButton;
|
|
let redactButton;
|
|
let cancelButton;
|
|
let forwardButton;
|
|
let pinButton;
|
|
let viewClearSourceButton;
|
|
let unhidePreviewButton;
|
|
let externalURLButton;
|
|
let quoteButton;
|
|
let collapseReplyThread;
|
|
|
|
// status is SENT before remote-echo, null after
|
|
const isSent = !eventStatus || eventStatus === EventStatus.SENT;
|
|
if (!mxEvent.isRedacted()) {
|
|
if (eventStatus === EventStatus.NOT_SENT) {
|
|
resendButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onResendClick}>
|
|
{ _t('Resend') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (editStatus === EventStatus.NOT_SENT) {
|
|
resendEditButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onResendEditClick}>
|
|
{ _t('Resend edit') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (unsentReactionsCount !== 0) {
|
|
resendReactionsButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onResendReactionsClick}>
|
|
{ _t('Resend %(unsentCount)s reaction(s)', {unsentCount: unsentReactionsCount}) }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
}
|
|
|
|
if (redactStatus === EventStatus.NOT_SENT) {
|
|
resendRedactionButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onResendRedactionClick}>
|
|
{ _t('Resend removal') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (isSent && this.state.canRedact) {
|
|
redactButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
|
{ _t('Remove') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (allowCancel) {
|
|
cancelButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onCancelSendClick}>
|
|
{ _t('Cancel Sending') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (isContentActionable(mxEvent)) {
|
|
forwardButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
|
{ _t('Forward Message') }
|
|
</MenuItem>
|
|
);
|
|
|
|
if (this.state.canPin) {
|
|
pinButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onPinClick}>
|
|
{ this._isPinned() ? _t('Unpin Message') : _t('Pin Message') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
}
|
|
|
|
const viewSourceButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onViewSourceClick}>
|
|
{ _t('View Source') }
|
|
</MenuItem>
|
|
);
|
|
|
|
if (mxEvent.getType() !== mxEvent.getWireType()) {
|
|
viewClearSourceButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onViewClearSourceClick}>
|
|
{ _t('View Decrypted Source') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (this.props.eventTileOps) {
|
|
if (this.props.eventTileOps.isWidgetHidden()) {
|
|
unhidePreviewButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onUnhidePreviewClick}>
|
|
{ _t('Unhide Preview') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
}
|
|
|
|
let permalink;
|
|
if (this.props.permalinkCreator) {
|
|
permalink = this.props.permalinkCreator.forEvent(this.props.mxEvent.getId());
|
|
}
|
|
// XXX: if we use room ID, we should also include a server where the event can be found (other than in the domain of the event ID)
|
|
const permalinkButton = (
|
|
<MenuItem
|
|
element="a"
|
|
className="mx_MessageContextMenu_field"
|
|
onClick={this.onPermalinkClick}
|
|
href={permalink}
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
{ mxEvent.isRedacted() || mxEvent.getType() !== 'm.room.message'
|
|
? _t('Share Permalink') : _t('Share Message') }
|
|
</MenuItem>
|
|
);
|
|
|
|
if (this.props.eventTileOps) { // this event is rendered using TextualBody
|
|
quoteButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onQuoteClick}>
|
|
{ _t('Quote') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
// Bridges can provide a 'external_url' to link back to the source.
|
|
if (
|
|
typeof(mxEvent.event.content.external_url) === "string" &&
|
|
isUrlPermitted(mxEvent.event.content.external_url)
|
|
) {
|
|
externalURLButton = (
|
|
<MenuItem
|
|
element="a"
|
|
className="mx_MessageContextMenu_field"
|
|
target="_blank"
|
|
rel="noopener"
|
|
onClick={this.closeMenu}
|
|
href={mxEvent.event.content.external_url}
|
|
>
|
|
{ _t('Source URL') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
if (this.props.collapseReplyThread) {
|
|
collapseReplyThread = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onCollapseReplyThreadClick}>
|
|
{ _t('Collapse Reply Thread') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
let e2eInfo;
|
|
if (this.props.e2eInfoCallback) {
|
|
e2eInfo = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.e2eInfoClicked}>
|
|
{ _t('End-to-end encryption information') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
let reportEventButton;
|
|
if (mxEvent.getSender() !== me) {
|
|
reportEventButton = (
|
|
<MenuItem className="mx_MessageContextMenu_field" onClick={this.onReportEventClick}>
|
|
{ _t('Report Content') }
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="mx_MessageContextMenu">
|
|
{ resendButton }
|
|
{ resendEditButton }
|
|
{ resendReactionsButton }
|
|
{ resendRedactionButton }
|
|
{ redactButton }
|
|
{ cancelButton }
|
|
{ forwardButton }
|
|
{ pinButton }
|
|
{ viewSourceButton }
|
|
{ viewClearSourceButton }
|
|
{ unhidePreviewButton }
|
|
{ permalinkButton }
|
|
{ quoteButton }
|
|
{ externalURLButton }
|
|
{ collapseReplyThread }
|
|
{ e2eInfo }
|
|
{ reportEventButton }
|
|
</div>
|
|
);
|
|
},
|
|
});
|