Merge in resend support
This commit is contained in:
parent
a8eb93bd6f
commit
82aa603596
1 changed files with 22 additions and 0 deletions
|
@ -23,6 +23,28 @@ module.exports = {
|
||||||
var actions = MatrixClientPeg.get().getPushActionsForEvent(this.props.mxEvent);
|
var actions = MatrixClientPeg.get().getPushActionsForEvent(this.props.mxEvent);
|
||||||
if (!actions || !actions.tweaks) { return false; }
|
if (!actions || !actions.tweaks) { return false; }
|
||||||
return actions.tweaks.highlight;
|
return actions.tweaks.highlight;
|
||||||
|
},
|
||||||
|
|
||||||
|
getInitialState: function() {
|
||||||
|
return {
|
||||||
|
resending: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
onResend: function() {
|
||||||
|
var self = this;
|
||||||
|
self.setState({
|
||||||
|
resending: true
|
||||||
|
});
|
||||||
|
MatrixClientPeg.get().resendEvent(
|
||||||
|
this.props.mxEvent, MatrixClientPeg.get().getRoom(
|
||||||
|
this.props.mxEvent.getRoomId()
|
||||||
|
)
|
||||||
|
).finally(function() {
|
||||||
|
self.setState({
|
||||||
|
resending: false
|
||||||
|
});
|
||||||
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue