2015-06-09 16:40:42 +00:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-12 13:59:33 +00:00
|
|
|
var RoomList = require('../organisms/RoomList');
|
2015-06-12 14:01:36 +00:00
|
|
|
var RoomView = require('../organisms/RoomView');
|
2015-06-12 16:34:17 +00:00
|
|
|
var MatrixToolbar = require('../molecules/MatrixToolbar');
|
2015-06-12 13:59:33 +00:00
|
|
|
var Loader = require("react-loader");
|
2015-06-09 16:40:42 +00:00
|
|
|
|
|
|
|
var Login = require('../templates/Login');
|
|
|
|
|
2015-06-11 17:25:29 +00:00
|
|
|
var mxCliPeg = require("../MatrixClientPeg");
|
|
|
|
|
2015-06-12 16:34:17 +00:00
|
|
|
var dis = require("../dispatcher");
|
2015-06-09 16:40:42 +00:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-06-11 17:25:29 +00:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2015-06-12 13:59:33 +00:00
|
|
|
logged_in: !!(mxCliPeg.get() && mxCliPeg.get().credentials),
|
|
|
|
ready: false
|
2015-06-11 17:25:29 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-06-12 13:59:33 +00:00
|
|
|
componentDidMount: function() {
|
2015-06-12 16:34:17 +00:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2015-06-12 13:59:33 +00:00
|
|
|
if (this.state.logged_in) {
|
|
|
|
this.startMatrixClient();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-06-12 16:34:17 +00:00
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
},
|
|
|
|
|
|
|
|
onAction: function(payload) {
|
|
|
|
switch (payload.action) {
|
|
|
|
case 'logout':
|
|
|
|
mxCliPeg.replace(null);
|
|
|
|
this.setState({
|
|
|
|
logged_in: false,
|
|
|
|
ready: false
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-06-12 12:45:22 +00:00
|
|
|
onLoggedIn: function() {
|
|
|
|
this.setState({logged_in: true});
|
2015-06-12 13:59:33 +00:00
|
|
|
this.startMatrixClient();
|
|
|
|
},
|
|
|
|
|
|
|
|
startMatrixClient: function() {
|
|
|
|
var cli = mxCliPeg.get();
|
|
|
|
var that = this;
|
|
|
|
cli.on('syncComplete', function() {
|
2015-06-12 16:34:17 +00:00
|
|
|
var firstRoom = null;
|
|
|
|
if (cli.getRooms() && cli.getRooms().length) {
|
|
|
|
firstRoom = cli.getRooms()[0].roomId;
|
|
|
|
}
|
|
|
|
that.setState({ready: true, currentRoom: firstRoom});
|
2015-06-12 13:59:33 +00:00
|
|
|
});
|
|
|
|
cli.startClient();
|
2015-06-11 17:25:29 +00:00
|
|
|
},
|
|
|
|
|
2015-06-09 16:40:42 +00:00
|
|
|
render: function() {
|
2015-06-12 13:59:33 +00:00
|
|
|
if (this.state.logged_in && this.state.ready) {
|
2015-06-09 16:40:42 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2015-06-12 16:34:17 +00:00
|
|
|
<div className="mx_MatrixChat_leftPanel">
|
|
|
|
<MatrixToolbar />
|
|
|
|
<RoomList selectedRoom={this.state.currentRoom} />
|
|
|
|
</div>
|
|
|
|
<RoomView room_id={this.state.currentRoom} />
|
2015-06-09 16:40:42 +00:00
|
|
|
</div>
|
|
|
|
);
|
2015-06-12 13:59:33 +00:00
|
|
|
} else if (this.state.logged_in) {
|
|
|
|
return (
|
|
|
|
<Loader />
|
|
|
|
);
|
2015-06-09 16:40:42 +00:00
|
|
|
} else {
|
|
|
|
return (
|
2015-06-12 12:45:22 +00:00
|
|
|
<Login onLoggedIn={this.onLoggedIn} />
|
2015-06-09 16:40:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|