1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

Merge pull request #1704 from matrix-org/luke/perf-room-list

Only set selected tags state when updating rooms
This commit is contained in:
David Baker
2018-01-15 15:01:57 +00:00
committed by GitHub

View File

@@ -324,12 +324,7 @@ module.exports = React.createClass({
// Show all rooms // Show all rooms
this._visibleRooms = MatrixClientPeg.get().getRooms(); this._visibleRooms = MatrixClientPeg.get().getRooms();
} }
this._delayedRefreshRoomList();
this.setState({
selectedTags,
}, () => {
this.refreshRoomList();
});
}, },
refreshRoomList: function() { refreshRoomList: function() {
@@ -345,6 +340,9 @@ module.exports = React.createClass({
this.setState({ this.setState({
lists: this.getRoomLists(), lists: this.getRoomLists(),
totalRoomCount: totalRooms, totalRoomCount: totalRooms,
// Do this here so as to not render every time the selected tags
// themselves change.
selectedTags: TagOrderStore.getSelectedTags(),
}); });
// this._lastRefreshRoomListTs = Date.now(); // this._lastRefreshRoomListTs = Date.now();