mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Make room changing work
This commit is contained in:
parent
125fa78bc6
commit
0b0e6adce3
@ -11,6 +11,12 @@ module.exports = React.createClass({
|
||||
}
|
||||
},
|
||||
|
||||
componentWillReceiveProps: function(props) {
|
||||
this.setState({
|
||||
room: MatrixClientPeg.get().getRoom(props.room_id)
|
||||
});
|
||||
},
|
||||
|
||||
getMessageTiles: function() {
|
||||
return this.state.room.timeline.map(function(mxEv) {
|
||||
return (
|
||||
|
@ -39,6 +39,11 @@ module.exports = React.createClass({
|
||||
ready: false
|
||||
});
|
||||
break;
|
||||
case 'view_room':
|
||||
this.setState({
|
||||
currentRoom: payload.room_id
|
||||
});
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user