2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-23 07:10:41 -04:00
|
|
|
import classNames from 'classnames';
|
2017-04-21 14:05:35 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Button extends React.PureComponent {
|
2016-08-25 13:52:55 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
text: PropTypes.node,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
block: PropTypes.bool,
|
|
|
|
secondary: PropTypes.bool,
|
2017-05-23 07:10:41 -04:00
|
|
|
className: PropTypes.string,
|
2019-08-08 02:56:55 -04:00
|
|
|
title: PropTypes.string,
|
2017-05-20 11:31:47 -04:00
|
|
|
children: PropTypes.node,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2016-08-31 10:15:12 -04:00
|
|
|
if (!this.props.disabled) {
|
2017-05-26 08:10:37 -04:00
|
|
|
this.props.onClick(e);
|
2016-08-31 10:15:12 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-08-25 13:52:55 -04:00
|
|
|
|
2017-05-23 07:10:41 -04:00
|
|
|
setRef = (c) => {
|
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.node.focus();
|
|
|
|
}
|
|
|
|
|
2016-08-25 13:52:55 -04:00
|
|
|
render () {
|
2017-05-23 07:10:41 -04:00
|
|
|
const className = classNames('button', this.props.className, {
|
|
|
|
'button-secondary': this.props.secondary,
|
|
|
|
'button--block': this.props.block,
|
|
|
|
});
|
|
|
|
|
2016-08-25 13:52:55 -04:00
|
|
|
return (
|
2017-05-19 05:42:54 -04:00
|
|
|
<button
|
2017-05-23 07:10:41 -04:00
|
|
|
className={className}
|
2017-05-19 05:42:54 -04:00
|
|
|
disabled={this.props.disabled}
|
|
|
|
onClick={this.handleClick}
|
2017-05-23 07:10:41 -04:00
|
|
|
ref={this.setRef}
|
2019-08-08 02:56:55 -04:00
|
|
|
title={this.props.title}
|
2017-05-19 05:42:54 -04:00
|
|
|
>
|
2016-09-07 12:17:15 -04:00
|
|
|
{this.props.text || this.props.children}
|
2016-08-31 16:58:10 -04:00
|
|
|
</button>
|
2016-08-25 13:52:55 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|