mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Allow queued events to be cancelled. Make not sent events appear differently to sending events.
This commit is contained in:
parent
da5c687320
commit
1af1297afc
@ -57,25 +57,41 @@ module.exports = React.createClass({
|
|||||||
if (this.props.onFinished) this.props.onFinished();
|
if (this.props.onFinished) this.props.onFinished();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onCancelSendClick: function() {
|
||||||
|
Resend.removeFromQueue(this.props.mxEvent);
|
||||||
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
var eventStatus = this.props.mxEvent.status;
|
||||||
var resendButton;
|
var resendButton;
|
||||||
var viewSourceButton;
|
var viewSourceButton;
|
||||||
var redactButton;
|
var redactButton;
|
||||||
|
var cancelButton;
|
||||||
|
|
||||||
if (this.props.mxEvent.status == 'not_sent') {
|
if (eventStatus === 'not_sent') {
|
||||||
resendButton = (
|
resendButton = (
|
||||||
<div className="mx_ContextualMenu_field" onClick={this.onResendClick}>
|
<div className="mx_ContextualMenu_field" onClick={this.onResendClick}>
|
||||||
Resend
|
Resend
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
|
if (!eventStatus) { // sent
|
||||||
redactButton = (
|
redactButton = (
|
||||||
<div className="mx_ContextualMenu_field" onClick={this.onRedactClick}>
|
<div className="mx_ContextualMenu_field" onClick={this.onRedactClick}>
|
||||||
Redact
|
Redact
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (eventStatus === "queued") {
|
||||||
|
cancelButton = (
|
||||||
|
<div className="mx_ContextualMenu_field" onClick={this.onCancelSendClick}>
|
||||||
|
Cancel Sending
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
viewSourceButton = (
|
viewSourceButton = (
|
||||||
<div className="mx_ContextualMenu_field" onClick={this.onViewSourceClick}>
|
<div className="mx_ContextualMenu_field" onClick={this.onViewSourceClick}>
|
||||||
View Source
|
View Source
|
||||||
@ -86,6 +102,7 @@ module.exports = React.createClass({
|
|||||||
<div>
|
<div>
|
||||||
{resendButton}
|
{resendButton}
|
||||||
{redactButton}
|
{redactButton}
|
||||||
|
{cancelButton}
|
||||||
{viewSourceButton}
|
{viewSourceButton}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -111,7 +111,7 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_notSent {
|
.mx_EventTile_notSent {
|
||||||
color: #ddd;
|
color: #f44;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_highlight,
|
.mx_EventTile_highlight,
|
||||||
|
Loading…
Reference in New Issue
Block a user