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
|
|
|
|
|
|
|
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,
|
|
|
|
size: PropTypes.number,
|
2017-05-23 07:10:41 -04:00
|
|
|
className: PropTypes.string,
|
2017-05-12 08:44:10 -04:00
|
|
|
style: PropTypes.object,
|
2017-05-20 11:31:47 -04:00
|
|
|
children: PropTypes.node,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 11:31:47 -04:00
|
|
|
size: 36,
|
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 () {
|
2016-09-27 17:12:33 -04:00
|
|
|
const style = {
|
2016-11-23 17:34:12 -05:00
|
|
|
padding: `0 ${this.props.size / 2.25}px`,
|
|
|
|
height: `${this.props.size}px`,
|
2017-05-19 05:42:54 -04:00
|
|
|
lineHeight: `${this.props.size}px`,
|
2017-05-20 11:31:47 -04:00
|
|
|
...this.props.style,
|
2016-09-27 17:12:33 -04:00
|
|
|
};
|
2016-11-23 17:34:12 -05:00
|
|
|
|
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}
|
2017-05-19 05:42:54 -04:00
|
|
|
style={style}
|
|
|
|
>
|
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
|
|
|
}
|
|
|
|
|
2016-08-25 13:52:55 -04:00
|
|
|
export default Button;
|