2015-06-23 17:41:25 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-06-19 13:53:48 +02:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-23 15:40:50 +02:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-06-22 15:48:58 +02:00
|
|
|
|
2015-06-23 15:40:50 +02:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-06-24 14:28:44 +02:00
|
|
|
var classNames = require("classnames");
|
2015-06-19 13:53:48 +02:00
|
|
|
|
|
|
|
var MessageTile = ComponentBroker.get('molecules/MessageTile');
|
|
|
|
var RoomHeader = ComponentBroker.get('molecules/RoomHeader');
|
2015-06-22 12:42:09 +02:00
|
|
|
var MemberList = ComponentBroker.get('organisms/MemberList');
|
2015-06-19 13:53:48 +02:00
|
|
|
var MessageComposer = ComponentBroker.get('molecules/MessageComposer');
|
|
|
|
|
2015-06-23 15:40:50 +02:00
|
|
|
var RoomViewController = require("../../../../src/controllers/organisms/RoomView");
|
2015-06-19 13:53:48 +02:00
|
|
|
|
2015-06-22 15:48:58 +02:00
|
|
|
var Loader = require("react-loader");
|
|
|
|
|
2015-06-19 13:53:48 +02:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-06-19 17:21:09 +02:00
|
|
|
displayName: 'RoomView',
|
2015-06-19 13:53:48 +02:00
|
|
|
mixins: [RoomViewController],
|
|
|
|
|
|
|
|
render: function() {
|
2015-06-22 15:48:58 +02:00
|
|
|
var myUserId = MatrixClientPeg.get().credentials.userId;
|
|
|
|
if (this.state.room.currentState.members[myUserId].membership == 'invite') {
|
|
|
|
if (this.state.joining) {
|
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
|
|
|
<Loader />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
var inviteEvent = this.state.room.currentState.members[myUserId].events.member.event;
|
|
|
|
// XXX: Leaving this intentionally basic for now because invites are about to change totally
|
|
|
|
var joinErrorText = this.state.joinError ? "Failed to join room!" : "";
|
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
|
|
|
<div className="mx_RoomView_invitePrompt">
|
|
|
|
<div>{inviteEvent.user_id} has invited you to a room</div>
|
|
|
|
<button ref="joinButton" onClick={this.onJoinButtonClicked}>Join</button>
|
|
|
|
<div className="error">{joinErrorText}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2015-06-24 14:28:44 +02:00
|
|
|
var scrollheader_classes = classNames({
|
|
|
|
mx_RoomView_scrollheader: true,
|
|
|
|
loading: this.state.paginating
|
|
|
|
});
|
2015-06-22 15:48:58 +02:00
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
|
|
|
<RoomHeader room={this.state.room} />
|
|
|
|
<div className="mx_RoomView_HSplit">
|
2015-07-06 19:22:28 +02:00
|
|
|
<ul className="mx_RoomView_MessageList" ref="messageList" aria-live="polite" onScroll={this.onMessageListScroll}>
|
2015-06-24 14:28:44 +02:00
|
|
|
<li className={scrollheader_classes}>
|
|
|
|
</li>
|
2015-07-06 19:09:19 +02:00
|
|
|
{this.getEventTiles()}
|
2015-06-22 15:48:58 +02:00
|
|
|
</ul>
|
|
|
|
<MemberList roomId={this.props.roomId} key={this.props.roomId} />
|
|
|
|
</div>
|
|
|
|
<MessageComposer roomId={this.props.roomId} />
|
2015-06-22 12:42:09 +02:00
|
|
|
</div>
|
2015-06-22 15:48:58 +02:00
|
|
|
);
|
|
|
|
}
|
2015-06-19 13:53:48 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|