diff --git a/src/components/structures/MessagePanel.js b/src/components/structures/MessagePanel.js index 49f4783eaa..16b4892bc0 100644 --- a/src/components/structures/MessagePanel.js +++ b/src/components/structures/MessagePanel.js @@ -85,6 +85,12 @@ module.exports = React.createClass({ // opaque readreceipt info for each userId; used by ReadReceiptMarker // to manage its animations this._readReceiptMap = {}; + + this._isMounted = true; + }, + + componentWillUnmount: function() { + this._isMounted = false; }, /* get the DOM node representing the given event */ @@ -201,6 +207,10 @@ module.exports = React.createClass({ } }, + _isUnmounting: function() { + return !this._isMounted; + }, + _getEventTiles: function() { var EventTile = sdk.getComponent('rooms.EventTile'); @@ -351,6 +361,7 @@ module.exports = React.createClass({ onWidgetLoad={this._onWidgetLoad} readReceipts={readReceipts} readReceiptMap={this._readReceiptMap} + checkUnmounting={this._isUnmounting} eventSendStatus={mxEv.status} last={last} isSelectedEvent={highlight}/> diff --git a/src/components/views/rooms/EventTile.js b/src/components/views/rooms/EventTile.js index 5c70c9da10..7db8af9312 100644 --- a/src/components/views/rooms/EventTile.js +++ b/src/components/views/rooms/EventTile.js @@ -116,6 +116,12 @@ module.exports = React.createClass({ */ readReceiptMap: React.PropTypes.object, + /* A function which is used to check if the parent panel is being + * unmounted, to avoid unnecessary work. Should return true if we + * are being unmounted. + */ + checkUnmounting: React.PropTypes.func, + /* the status of this event - ie, mxEvent.status. Denormalised to here so * that we can tell when it changes. */ eventSendStatus: React.PropTypes.string, @@ -261,6 +267,7 @@ module.exports = React.createClass({