2016-02-24 20:26:34 +03:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2017-04-24 03:09:54 +03:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2019-01-22 16:51:11 +03:00
|
|
|
Copyright 2019 New Vector Ltd
|
2016-02-24 20:26:34 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 17:04:46 +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-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2018-03-31 18:42:10 +03:00
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
2016-02-24 20:26:34 +03:00
|
|
|
|
2019-09-06 17:04:46 +03:00
|
|
|
module.exports = createReactClass({
|
2016-02-24 20:26:34 +03:00
|
|
|
displayName: 'TopUnreadMessagesBar',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-12-26 04:03:18 +03:00
|
|
|
onScrollUpClick: PropTypes.func,
|
2016-02-24 20:26:34 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_TopUnreadMessagesBar">
|
2018-03-31 18:42:10 +03:00
|
|
|
<AccessibleButton className="mx_TopUnreadMessagesBar_scrollUp"
|
2018-12-03 16:55:24 +03:00
|
|
|
title={_t('Jump to first unread message.')}
|
|
|
|
onClick={this.props.onScrollUpClick}>
|
2018-03-31 18:42:10 +03:00
|
|
|
</AccessibleButton>
|
2016-02-24 20:26:34 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|