summaryrefslogtreecommitdiffstats
path: root/webapp/components/spinner_button.jsx
blob: fcc9af8cd9697a465776ced06bb34d2c34228c98 (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
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';

import loadingGif from 'images/load.gif';

export default class SpinnerButton extends React.Component {
    static get propTypes() {
        return {
            children: React.PropTypes.node,
            spinning: React.PropTypes.bool.isRequired,
            onClick: React.PropTypes.func
        };
    }

    constructor(props) {
        super(props);

        this.handleClick = this.handleClick.bind(this);
    }

    handleClick(e) {
        if (this.props.onClick) {
            this.props.onClick(e);
        }
    }

    render() {
        if (this.props.spinning) {
            return (
                <img
                    className='spinner-button__gif'
                    src={loadingGif}
                />
            );
        }

        return (
            <button
                onClick={this.handleClick}
                className='btn btn-sm btn-primary'
            >
                {this.props.children}
            </button>
        );
    }
}