Remove the member list loading hack

Now the memberlist os a truncated list it at-best makes no difference and may be marginally slowing us down.
This commit is contained in:
David Baker 2016-07-14 18:37:57 +01:00
parent a5272542ef
commit 743cb4b777

View file

@ -54,7 +54,7 @@ module.exports = React.createClass({
this.memberDict = this.getMemberDict();
state.members = this.roomMembers(INITIAL_LOAD_NUM_MEMBERS);
state.members = this.roomMembers();
return state;
},
@ -83,19 +83,6 @@ module.exports = React.createClass({
}
},
componentDidMount: function() {
var self = this;
// Lazy-load in more than the first N members
setTimeout(function() {
if (!self.isMounted()) return;
// lazy load to prevent it blocking the first render
self.setState({
members: self.roomMembers()
});
}, 50);
},
/*
onRoomTimeline: function(ev, room, toStartOfTimeline, removed, data) {
// ignore anything but real-time updates at the end of the room: