element-web/src/components/views/rooms/SimpleRoomHeader.js

77 lines
2.4 KiB
JavaScript
Raw Normal View History

/*
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.
*/
2017-01-25 19:05:39 +03:00
import React from 'react';
import PropTypes from 'prop-types';
2017-01-25 01:41:52 +03:00
import AccessibleButton from '../elements/AccessibleButton';
import sdk from '../../../index';
import { _t } from '../../../languageHandler';
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}>
<img src={require("../../../../res/img/cancel.svg")} className='mx_filterFlipColor'
width="18" height="18" alt={_t("Cancel")} />
2017-01-25 19:05:39 +03:00
</AccessibleButton>
);
}
/*
* 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({
displayName: 'SimpleRoomHeader',
propTypes: {
title: PropTypes.string,
onCancelClick: PropTypes.func,
2016-09-13 21:00:35 +03:00
// `src` to a TintableSvg. Optional.
icon: PropTypes.string,
2016-09-13 21:00:35 +03:00
},
render: function() {
2017-01-25 19:05:39 +03:00
let cancelButton;
let icon;
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
}
if (this.props.icon) {
const TintableSvg = sdk.getComponent('elements.TintableSvg');
icon = <TintableSvg
className="mx_RoomHeader_icon" src={this.props.icon}
width="25" height="25"
/>;
}
2016-04-16 00:16:19 +03:00
return (
<div className="mx_RoomHeader" >
<div className="mx_RoomHeader_wrapper">
<div className="mx_RoomHeader_simpleHeader">
{ icon }
{ this.props.title }
2016-04-16 00:16:19 +03:00
{ cancelButton }
</div>
</div>
</div>
);
},
});