256 lines
8.5 KiB
JavaScript
256 lines
8.5 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket 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.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
|
|
const MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg');
|
|
const dis = require('matrix-react-sdk/lib/dispatcher');
|
|
const sdk = require('matrix-react-sdk');
|
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
|
const Modal = require('matrix-react-sdk/lib/Modal');
|
|
const Resend = require("matrix-react-sdk/lib/Resend");
|
|
import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore';
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'MessageContextMenu',
|
|
|
|
propTypes: {
|
|
/* the MatrixEvent associated with the context menu */
|
|
mxEvent: React.PropTypes.object.isRequired,
|
|
|
|
/* an optional EventTileOps implementation that can be used to unhide preview widgets */
|
|
eventTileOps: React.PropTypes.object,
|
|
|
|
/* callback called when the menu is dismissed */
|
|
onFinished: React.PropTypes.func,
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
canRedact: false,
|
|
};
|
|
},
|
|
|
|
componentWillMount: function() {
|
|
MatrixClientPeg.get().on('RoomMember.powerLevel', this._checkCanRedact);
|
|
this._checkCanRedact();
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
const cli = MatrixClientPeg.get();
|
|
if (cli) {
|
|
cli.removeListener('RoomMember.powerLevel', this._checkCanRedact);
|
|
}
|
|
},
|
|
|
|
_checkCanRedact: function() {
|
|
const cli = MatrixClientPeg.get();
|
|
const room = cli.getRoom(this.props.mxEvent.getRoomId());
|
|
const canRedact = room.currentState.maySendRedactionForEvent(this.props.mxEvent, cli.credentials.userId);
|
|
this.setState({canRedact});
|
|
},
|
|
|
|
onResendClick: function() {
|
|
Resend.resend(this.props.mxEvent);
|
|
this.closeMenu();
|
|
},
|
|
|
|
onViewSourceClick: function() {
|
|
const ViewSource = sdk.getComponent('structures.ViewSource');
|
|
Modal.createDialog(ViewSource, {
|
|
content: this.props.mxEvent.event,
|
|
}, 'mx_Dialog_viewsource');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onViewClearSourceClick: function() {
|
|
const ViewSource = sdk.getComponent('structures.ViewSource');
|
|
Modal.createDialog(ViewSource, {
|
|
// FIXME: _clearEvent is private
|
|
content: this.props.mxEvent._clearEvent,
|
|
}, 'mx_Dialog_viewsource');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onRedactClick: function() {
|
|
const ConfirmRedactDialog = sdk.getComponent("dialogs.ConfirmRedactDialog");
|
|
Modal.createDialog(ConfirmRedactDialog, {
|
|
onFinished: (proceed) => {
|
|
if (!proceed) return;
|
|
|
|
MatrixClientPeg.get().redactEvent(
|
|
this.props.mxEvent.getRoomId(), this.props.mxEvent.getId()
|
|
).catch(function(e) {
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
// display error message stating you couldn't delete this.
|
|
const code = e.errcode || e.statusCode;
|
|
Modal.createDialog(ErrorDialog, {
|
|
title: _t('Error'),
|
|
description: _t('You cannot delete this message. (%(code)s)', {code: code})
|
|
});
|
|
}).done();
|
|
},
|
|
}, 'mx_Dialog_confirmredact');
|
|
this.closeMenu();
|
|
},
|
|
|
|
onCancelSendClick: function() {
|
|
Resend.removeFromQueue(this.props.mxEvent);
|
|
this.closeMenu();
|
|
},
|
|
|
|
onForwardClick: function() {
|
|
dis.dispatch({
|
|
action: 'forward_event',
|
|
event: this.props.mxEvent,
|
|
});
|
|
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() {
|
|
console.log(this.props.mxEvent);
|
|
dis.dispatch({
|
|
action: 'quote',
|
|
event: this.props.mxEvent,
|
|
});
|
|
this.closeMenu();
|
|
},
|
|
|
|
render: function() {
|
|
const eventStatus = this.props.mxEvent.status;
|
|
let resendButton;
|
|
let redactButton;
|
|
let cancelButton;
|
|
let forwardButton;
|
|
let viewSourceButton;
|
|
let viewClearSourceButton;
|
|
let unhidePreviewButton;
|
|
let permalinkButton;
|
|
let externalURLButton;
|
|
|
|
if (eventStatus === 'not_sent') {
|
|
resendButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onResendClick}>
|
|
{ _t('Resend') }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!eventStatus && this.state.canRedact) {
|
|
redactButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
|
{ _t('Remove') }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (eventStatus === "queued" || eventStatus === "not_sent") {
|
|
cancelButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onCancelSendClick}>
|
|
{ _t('Cancel Sending') }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!eventStatus && this.props.mxEvent.getType() === 'm.room.message') {
|
|
const content = this.props.mxEvent.getContent();
|
|
if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) {
|
|
forwardButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
|
{ _t('Forward Message') }
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
viewSourceButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onViewSourceClick}>
|
|
{ _t('View Source') }
|
|
</div>
|
|
);
|
|
|
|
if (this.props.mxEvent.getType() !== this.props.mxEvent.getWireType()) {
|
|
viewClearSourceButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onViewClearSourceClick}>
|
|
{ _t('View Decrypted Source') }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (this.props.eventTileOps) {
|
|
if (this.props.eventTileOps.isWidgetHidden()) {
|
|
unhidePreviewButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onUnhidePreviewClick}>
|
|
{ _t('Unhide Preview') }
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
// 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)
|
|
permalinkButton = (
|
|
<div className="mx_MessageContextMenu_field">
|
|
<a href={ "https://matrix.to/#/" + this.props.mxEvent.getRoomId() +"/"+ this.props.mxEvent.getId() }
|
|
target="_blank" rel="noopener" onClick={ this.closeMenu }>{ _t('Permalink') }</a>
|
|
</div>
|
|
);
|
|
|
|
const quoteButton = (
|
|
<div className="mx_MessageContextMenu_field" onClick={this.onQuoteClick}>
|
|
{ _t('Quote') }
|
|
</div>
|
|
);
|
|
|
|
// Bridges can provide a 'external_url' to link back to the source.
|
|
if( typeof(this.props.mxEvent.event.content.external_url) === "string") {
|
|
externalURLButton = (
|
|
<div className="mx_MessageContextMenu_field">
|
|
<a href={ this.props.mxEvent.event.content.external_url }
|
|
rel="noopener" target="_blank" onClick={ this.closeMenu }>{ _t('Source URL') }</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
|
|
return (
|
|
<div>
|
|
{resendButton}
|
|
{redactButton}
|
|
{cancelButton}
|
|
{forwardButton}
|
|
{viewSourceButton}
|
|
{viewClearSourceButton}
|
|
{unhidePreviewButton}
|
|
{permalinkButton}
|
|
{quoteButton}
|
|
{externalURLButton}
|
|
</div>
|
|
);
|
|
},
|
|
});
|