mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 16:51:35 +03:00
56 lines
1.8 KiB
JavaScript
56 lines
1.8 KiB
JavaScript
/*
|
|
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 sdk = require('matrix-react-sdk')
|
|
var dis = require('matrix-react-sdk/lib/dispatcher');
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'LeftPanel',
|
|
|
|
onHideClick: function() {
|
|
dis.dispatch({
|
|
action: 'hide_left_panel',
|
|
});
|
|
},
|
|
|
|
render: function() {
|
|
var RoomList = sdk.getComponent('organisms.RoomList');
|
|
var BottomLeftMenu = sdk.getComponent('molecules.BottomLeftMenu');
|
|
var IncomingCallBox = sdk.getComponent('molecules.voip.IncomingCallBox');
|
|
|
|
var collapseButton;
|
|
var classes = "mx_LeftPanel";
|
|
if (this.props.collapsed) {
|
|
classes += " collapsed";
|
|
}
|
|
else {
|
|
collapseButton = <img className="mx_LeftPanel_hideButton" onClick={ this.onHideClick } src="img/hide.png" width="12" height="20" alt="<"/>
|
|
}
|
|
|
|
return (
|
|
<aside className={classes}>
|
|
{ collapseButton }
|
|
<IncomingCallBox />
|
|
<RoomList selectedRoom={this.props.selectedRoom} collapsed={this.props.collapsed}/>
|
|
<BottomLeftMenu collapsed={this.props.collapsed}/>
|
|
</aside>
|
|
);
|
|
}
|
|
});
|
|
|