summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/components/scroll_to_bottom_arrows.jsx
blob: 461ca3358a10e1655e571866907a599c4d480982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import $ from 'jquery';

import Constants from 'utils/constants.jsx';

import React from 'react';

export default class ScrollToBottomArrows extends React.Component {
    render() {
        // only show on mobile
        if ($(window).width() > 768) {
            return <noscript/>;
        }

        let className = 'post-list__arrows';
        if (this.props.isScrolling && !this.props.atBottom) {
            className += ' scrolling';
        }

        return (
            <div
                className={className}
                onClick={this.props.onClick}
            >
                <span dangerouslySetInnerHTML={{__html: Constants.SCROLL_BOTTOM_ICON}}/>
            </div>
        );
    }
}

ScrollToBottomArrows.propTypes = {
    isScrolling: React.PropTypes.bool.isRequired,
    atBottom: React.PropTypes.bool.isRequired,
    onClick: React.PropTypes.func.isRequired
};