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';
|
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';
|
2021-03-09 06:12:00 +03:00
|
|
|
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
2016-02-24 20:26:34 +03:00
|
|
|
|
2021-03-09 06:12:00 +03:00
|
|
|
@replaceableComponent("views.rooms.TopUnreadMessagesBar")
|
2020-08-29 14:14:16 +03:00
|
|
|
export default class TopUnreadMessagesBar extends React.Component {
|
|
|
|
static propTypes = {
|
2017-12-26 04:03:18 +03:00
|
|
|
onScrollUpClick: PropTypes.func,
|
2020-03-02 22:59:14 +03:00
|
|
|
onCloseClick: PropTypes.func,
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2016-02-24 20:26:34 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
render() {
|
2016-02-24 20:26:34 +03:00
|
|
|
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>
|
2020-03-02 22:59:14 +03:00
|
|
|
<AccessibleButton className="mx_TopUnreadMessagesBar_markAsRead"
|
|
|
|
title={_t('Mark all as read')}
|
|
|
|
onClick={this.props.onCloseClick}>
|
|
|
|
</AccessibleButton>
|
2016-02-24 20:26:34 +03:00
|
|
|
</div>
|
|
|
|
);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
|
|
|
}
|