Use RVS to indicate "joining" when setting a mxid

This prevents RoomView from doing any peeking whilst the join/registration is in progress, causing weirdness with TimelinePanel getPendingEventList (which throws an error if called when peeking).
This commit is contained in:
Luke Barnard 2017-05-25 17:04:42 +01:00
parent 6218a8615a
commit 91edc06441
2 changed files with 20 additions and 5 deletions

View file

@ -58,7 +58,16 @@ class RoomViewStore extends Store {
case 'view_room':
this._viewRoom(payload);
break;
case 'will_join':
this._setState({
joining: true,
});
break;
case 'cancel_join':
this._setState({
joining: false,
});
break;
// join_room:
// - opts: options for joinRoom
case 'join_room':