mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-13 12:35:38 +00:00
61 lines
1.2 KiB
React
61 lines
1.2 KiB
React
|
// @flow
|
||
|
import React, { Component } from 'react';
|
||
|
|
||
|
const DEFAULT_BUTTON_TYPE = 'primary';
|
||
|
const DEFAULT_BUTTON_SIZE = 'lg';
|
||
|
|
||
|
const Spinner = () => {
|
||
|
return <i className="fa fa-spinner fa-spin fa-fw" />;
|
||
|
};
|
||
|
|
||
|
type ButtonType =
|
||
|
| 'default'
|
||
|
| 'primary'
|
||
|
| 'success'
|
||
|
| 'info'
|
||
|
| 'warning'
|
||
|
| 'danger';
|
||
|
type ButtonSize = 'lg' | 'sm' | 'xs';
|
||
|
|
||
|
type Props = {
|
||
|
onClick: () => any,
|
||
|
text: string,
|
||
|
loading?: boolean,
|
||
|
disabled?: boolean,
|
||
|
loadingText?: string,
|
||
|
size?: ButtonSize,
|
||
|
type?: ButtonType
|
||
|
};
|
||
|
|
||
|
export default class SimpleButton extends Component {
|
||
|
props: Props;
|
||
|
|
||
|
computedClass = () => {
|
||
|
return `btn btn-${this.props.size || DEFAULT_BUTTON_TYPE} btn-${this.props
|
||
|
.type || DEFAULT_BUTTON_SIZE}`;
|
||
|
};
|
||
|
|
||
|
render() {
|
||
|
let { loading, disabled, loadingText, text, onClick } = this.props;
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<button
|
||
|
onClick={onClick}
|
||
|
disabled={loading || disabled}
|
||
|
className={this.computedClass()}
|
||
|
>
|
||
|
{loading
|
||
|
? <div>
|
||
|
<Spinner />
|
||
|
{` ${loadingText || text}`}
|
||
|
</div>
|
||
|
: <div>
|
||
|
{text}
|
||
|
</div>}
|
||
|
</button>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|