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
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const React = require('react');
|
2017-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-10-11 19:56:17 +03:00
|
|
|
const sdk = require('../../../index');
|
2016-02-24 20:26:34 +03:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'TopUnreadMessagesBar',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
onScrollUpClick: React.PropTypes.func,
|
|
|
|
onCloseClick: React.PropTypes.func,
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_TopUnreadMessagesBar">
|
|
|
|
<div className="mx_TopUnreadMessagesBar_scrollUp"
|
|
|
|
onClick={this.props.onScrollUpClick}>
|
2017-04-24 03:09:54 +03:00
|
|
|
<img src="img/scrollto.svg" width="24" height="24"
|
2017-10-11 19:56:17 +03:00
|
|
|
alt={_t('Scroll to unread messages')}
|
|
|
|
title={_t('Scroll to unread messages')} />
|
2017-05-31 00:56:52 +03:00
|
|
|
{ _t("Jump to first unread message.") }
|
2016-02-24 20:26:34 +03:00
|
|
|
</div>
|
2017-05-15 03:39:57 +03:00
|
|
|
<img className="mx_TopUnreadMessagesBar_close mx_filterFlipColor"
|
2016-02-24 20:26:34 +03:00
|
|
|
src="img/cancel.svg" width="18" height="18"
|
2017-06-08 16:08:51 +03:00
|
|
|
alt={_t("Close")} title={_t("Close")}
|
2016-02-24 20:26:34 +03:00
|
|
|
onClick={this.props.onCloseClick} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|