2016-03-29 14:51:46 +03:00
|
|
|
/*
|
|
|
|
Copyright 2016 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';
|
|
|
|
|
2017-01-25 19:05:39 +03:00
|
|
|
import React from 'react';
|
|
|
|
import dis from '../../../dispatcher';
|
2017-01-25 01:41:52 +03:00
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
2016-03-29 14:51:46 +03:00
|
|
|
|
2017-01-25 19:05:39 +03:00
|
|
|
// cancel button which is shared between room header and simple room header
|
|
|
|
export function CancelButton(props) {
|
|
|
|
const {onClick} = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AccessibleButton className='mx_RoomHeader_cancelButton' onClick={onClick}>
|
2017-01-25 19:33:29 +03:00
|
|
|
<img src="img/cancel.svg" className='mx_filterFlipColor'
|
|
|
|
width="18" height="18" alt="Cancel"/>
|
2017-01-25 19:05:39 +03:00
|
|
|
</AccessibleButton>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-03-29 14:51:46 +03:00
|
|
|
/*
|
|
|
|
* A stripped-down room header used for things like the user settings
|
|
|
|
* and room directory.
|
|
|
|
*/
|
2017-01-25 19:05:39 +03:00
|
|
|
export default React.createClass({
|
2016-03-29 14:51:46 +03:00
|
|
|
displayName: 'SimpleRoomHeader',
|
|
|
|
|
2016-03-30 01:21:17 +03:00
|
|
|
propTypes: {
|
|
|
|
title: React.PropTypes.string,
|
2016-04-16 00:16:19 +03:00
|
|
|
onCancelClick: React.PropTypes.func,
|
2016-09-13 21:00:35 +03:00
|
|
|
|
|
|
|
// is the RightPanel collapsed?
|
|
|
|
collapsedRhs: React.PropTypes.bool,
|
|
|
|
},
|
|
|
|
|
|
|
|
onShowRhsClick: function(ev) {
|
|
|
|
dis.dispatch({ action: 'show_right_panel' });
|
2016-03-30 01:21:17 +03:00
|
|
|
},
|
2016-03-29 14:51:46 +03:00
|
|
|
|
2016-03-30 01:21:17 +03:00
|
|
|
render: function() {
|
2017-01-25 19:05:39 +03:00
|
|
|
let cancelButton;
|
2016-04-16 00:16:19 +03:00
|
|
|
if (this.props.onCancelClick) {
|
2017-01-25 19:05:39 +03:00
|
|
|
cancelButton = <CancelButton onClick={this.props.onCancelClick} />;
|
2016-04-16 00:16:19 +03:00
|
|
|
}
|
|
|
|
|
2017-01-25 19:05:39 +03:00
|
|
|
let showRhsButton;
|
2016-09-13 21:00:35 +03:00
|
|
|
/* // don't bother cluttering things up with this for now.
|
2017-01-25 19:05:39 +03:00
|
|
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
|
|
|
|
2016-09-13 21:00:35 +03:00
|
|
|
if (this.props.collapsedRhs) {
|
|
|
|
showRhsButton =
|
|
|
|
<div className="mx_RoomHeader_button" style={{ float: 'right' }} onClick={this.onShowRhsClick} title=">">
|
|
|
|
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2016-03-29 14:51:46 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_RoomHeader" >
|
2016-03-30 01:21:17 +03:00
|
|
|
<div className="mx_RoomHeader_wrapper">
|
|
|
|
<div className="mx_RoomHeader_simpleHeader">
|
|
|
|
{ this.props.title }
|
2016-09-13 21:00:35 +03:00
|
|
|
{ showRhsButton }
|
2016-04-16 00:16:19 +03:00
|
|
|
{ cancelButton }
|
2016-03-30 01:21:17 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-29 14:51:46 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|