Merge pull request #1232 from vector-im/matthew/permalink

permalink button
pull/1237/head
Matthew Hodgson 2016-03-21 15:39:03 +00:00
commit 3339fa2a39
1 changed files with 15 additions and 0 deletions

View File

@ -62,12 +62,17 @@ module.exports = React.createClass({
if (this.props.onFinished) this.props.onFinished();
},
onPermalinkClick: function() {
if (this.props.onFinished) this.props.onFinished();
},
render: function() {
var eventStatus = this.props.mxEvent.status;
var resendButton;
var viewSourceButton;
var redactButton;
var cancelButton;
var permalinkButton;
if (eventStatus === 'not_sent') {
resendButton = (
@ -99,12 +104,22 @@ module.exports = React.createClass({
</div>
);
// XXX: this should be https://matrix.to.
// 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_ContextualMenu_field">
<a href={ "#/room/" + this.props.mxEvent.getRoomId() +"/"+ this.props.mxEvent.getId() }
onClick={ this.onPermalinkClick }>Permalink</a>
</div>
);
return (
<div>
{resendButton}
{redactButton}
{cancelButton}
{viewSourceButton}
{permalinkButton}
</div>
);
}