also forward actions from room dispatcher to global one
avoiding replay if the action would be forwarded back to the same room dispatcher also some fixing & renaming in OpenRoomsStore
This commit is contained in:
parent
2ceef00944
commit
fbfbefe4fe
4 changed files with 105 additions and 72 deletions
|
@ -50,7 +50,7 @@ export default class RoomGridView extends React.Component {
|
|||
if (this._unmounted) return;
|
||||
this.setState({
|
||||
roomStores: OpenRoomsStore.getRoomStores(),
|
||||
currentRoomStore: OpenRoomsStore.getCurrentRoomStore(),
|
||||
activeRoomStore: OpenRoomsStore.getActiveRoomStore(),
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ export default class RoomGridView extends React.Component {
|
|||
return (<main className="mx_GroupGridView">
|
||||
{ roomStores.map((roomStore, i) => {
|
||||
if (roomStore) {
|
||||
const isActive = roomStore === this.state.currentRoomStore;
|
||||
const isActive = roomStore === this.state.activeRoomStore;
|
||||
const tileClasses = classNames({
|
||||
"mx_GroupGridView_tile": true,
|
||||
"mx_GroupGridView_activeTile": isActive,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue