messages arrive!

pull/1/head
David Baker 2015-06-12 18:17:54 +01:00
parent 0b0e6adce3
commit 4bb570c545
1 changed files with 15 additions and 0 deletions

View File

@ -11,12 +11,27 @@ module.exports = React.createClass({
}
},
componentWillMount: function() {
MatrixClientPeg.get().on("Room.timeline", this.onRoomTimeline);
},
componentWillUnmount: function() {
MatrixClientPeg.get().removeListener("Room.timeline", this.onRoomTimeline);
},
componentWillReceiveProps: function(props) {
this.setState({
room: MatrixClientPeg.get().getRoom(props.room_id)
});
},
onRoomTimeline: function(ev, room, toStartOfTimeline) {
if (room.roomId != this.props.room_id) return;
this.setState({
room: MatrixClientPeg.get().getRoom(this.props.room_id)
});
},
getMessageTiles: function() {
return this.state.room.timeline.map(function(mxEv) {
return (