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.
|
|
|
|
*/
|
|
|
|
|
2017-01-25 19:05:39 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-06 17:04:46 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2017-01-25 01:41:52 +03:00
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
2017-04-27 19:57:13 +03:00
|
|
|
import sdk from '../../../index';
|
2017-06-08 16:08:51 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
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}>
|
2019-01-11 04:37:28 +03:00
|
|
|
<img src={require("../../../../res/img/cancel.svg")} className='mx_filterFlipColor'
|
2017-09-28 13:21:06 +03:00
|
|
|
width="18" height="18" alt={_t("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.
|
|
|
|
*/
|
2019-09-06 17:04:46 +03:00
|
|
|
export default createReactClass({
|
2016-03-29 14:51:46 +03:00
|
|
|
displayName: 'SimpleRoomHeader',
|
|
|
|
|
2016-03-30 01:21:17 +03:00
|
|
|
propTypes: {
|
2017-12-26 04:03:18 +03:00
|
|
|
title: PropTypes.string,
|
|
|
|
onCancelClick: PropTypes.func,
|
2016-09-13 21:00:35 +03:00
|
|
|
|
2017-04-27 19:57:13 +03:00
|
|
|
// `src` to a TintableSvg. Optional.
|
2017-12-26 04:03:18 +03:00
|
|
|
icon: PropTypes.string,
|
2016-09-13 21:00:35 +03:00
|
|
|
},
|
|
|
|
|
2016-03-30 01:21:17 +03:00
|
|
|
render: function() {
|
2017-01-25 19:05:39 +03:00
|
|
|
let cancelButton;
|
2017-04-27 19:57:13 +03:00
|
|
|
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
|
|
|
}
|
2017-04-27 19:57:13 +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
|
|
|
|
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">
|
2017-04-27 19:57:13 +03:00
|
|
|
{ icon }
|
2016-03-30 01:21:17 +03:00
|
|
|
{ this.props.title }
|
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>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|