2015-07-13 02:51:24 +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';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
|
|
|
|
|
|
|
var MemberList = ComponentBroker.get('organisms/MemberList');
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'RightPanel',
|
|
|
|
|
2015-07-21 05:11:24 +02:00
|
|
|
Phase : {
|
|
|
|
Blank: 'Blank',
|
|
|
|
None: 'None',
|
|
|
|
MemberList: 'MemberList',
|
|
|
|
FileList: 'FileList',
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2015-07-21 20:03:01 +02:00
|
|
|
phase : this.Phase.MemberList
|
2015-07-21 05:11:24 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onMemberListButtonClick: function() {
|
|
|
|
if (this.state.phase == this.Phase.None) {
|
|
|
|
this.setState({ phase: this.Phase.MemberList });
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.setState({ phase: this.Phase.None });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-07-13 02:51:24 +02:00
|
|
|
render: function() {
|
2015-07-21 05:11:24 +02:00
|
|
|
var buttonGroup;
|
|
|
|
var panel;
|
|
|
|
if (this.props.roomId) {
|
|
|
|
buttonGroup =
|
2015-07-15 05:16:38 +02:00
|
|
|
<div className="mx_RightPanel_headerButtonGroup">
|
2015-07-24 04:18:12 +02:00
|
|
|
<div className="mx_RightPanel_headerButton mx_RightPanel_filebutton">
|
2015-07-24 10:57:28 +02:00
|
|
|
<img src="img/file.png" width="32" height="32" title="Files" alt="Files"/>
|
2015-07-15 05:16:38 +02:00
|
|
|
</div>
|
2015-07-21 05:11:24 +02:00
|
|
|
<div className="mx_RightPanel_headerButton" onClick={ this.onMemberListButtonClick }>
|
2015-07-24 10:57:28 +02:00
|
|
|
<img src="img/members.png" width="32" height="32" title="Members" alt="Members"/>
|
2015-07-15 05:16:38 +02:00
|
|
|
</div>
|
2015-07-21 05:11:24 +02:00
|
|
|
</div>;
|
|
|
|
|
|
|
|
if (this.state.phase == this.Phase.MemberList) {
|
|
|
|
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="mx_RightPanel">
|
|
|
|
<div className="mx_RightPanel_header">
|
|
|
|
{ buttonGroup }
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
2015-07-21 05:11:24 +02:00
|
|
|
{ panel }
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|