mirror of https://github.com/vector-im/riot-web
Make room changing work
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() {
|
getMessageTiles: function() {
|
||||||
return this.state.room.timeline.map(function(mxEv) {
|
return this.state.room.timeline.map(function(mxEv) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -39,6 +39,11 @@ module.exports = React.createClass({
|
||||||
ready: false
|
ready: false
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
case 'view_room':
|
||||||
|
this.setState({
|
||||||
|
currentRoom: payload.room_id
|
||||||
|
});
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue