blob: becf395c5b0c635fe66592367e42695aaabfe994 (
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
|
// 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
};
}
render() {
const {spinning, children, ...props} = this.props; // eslint-disable-line no-use-before-define
if (spinning) {
return (
<img
className='spinner-button__gif'
src={loadingGif}
/>
);
}
return (
<button
className='btn btn-primary'
{...props}
>
{children}
</button>
);
}
}
|