2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-23 11:10:41 +00:00
|
|
|
import classNames from 'classnames';
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class Button extends React.PureComponent {
|
2016-08-25 17:52:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
text: PropTypes.node,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
block: PropTypes.bool,
|
|
|
|
secondary: PropTypes.bool,
|
|
|
|
size: PropTypes.number,
|
2017-05-23 11:10:41 +00:00
|
|
|
className: PropTypes.string,
|
2017-05-12 12:44:10 +00:00
|
|
|
style: PropTypes.object,
|
2017-05-20 15:31:47 +00:00
|
|
|
children: PropTypes.node,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 15:31:47 +00:00
|
|
|
size: 36,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2016-08-31 14:15:12 +00:00
|
|
|
if (!this.props.disabled) {
|
2017-05-26 12:10:37 +00:00
|
|
|
this.props.onClick(e);
|
2016-08-31 14:15:12 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-25 17:52:55 +00:00
|
|
|
|
2017-05-23 11:10:41 +00:00
|
|
|
setRef = (c) => {
|
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.node.focus();
|
|
|
|
}
|
|
|
|
|
2016-08-25 17:52:55 +00:00
|
|
|
render () {
|
2016-09-27 21:12:33 +00:00
|
|
|
const style = {
|
2016-11-23 22:34:12 +00:00
|
|
|
padding: `0 ${this.props.size / 2.25}px`,
|
|
|
|
height: `${this.props.size}px`,
|
2017-05-19 09:42:54 +00:00
|
|
|
lineHeight: `${this.props.size}px`,
|
2017-05-20 15:31:47 +00:00
|
|
|
...this.props.style,
|
2016-09-27 21:12:33 +00:00
|
|
|
};
|
2016-11-23 22:34:12 +00:00
|
|
|
|
2017-05-23 11:10:41 +00:00
|
|
|
const className = classNames('button', this.props.className, {
|
|
|
|
'button-secondary': this.props.secondary,
|
|
|
|
'button--block': this.props.block,
|
|
|
|
});
|
|
|
|
|
2016-08-25 17:52:55 +00:00
|
|
|
return (
|
2017-05-19 09:42:54 +00:00
|
|
|
<button
|
2017-05-23 11:10:41 +00:00
|
|
|
className={className}
|
2017-05-19 09:42:54 +00:00
|
|
|
disabled={this.props.disabled}
|
|
|
|
onClick={this.handleClick}
|
2017-05-23 11:10:41 +00:00
|
|
|
ref={this.setRef}
|
2017-05-19 09:42:54 +00:00
|
|
|
style={style}
|
|
|
|
>
|
2016-09-07 16:17:15 +00:00
|
|
|
{this.props.text || this.props.children}
|
2016-08-31 20:58:10 +00:00
|
|
|
</button>
|
2016-08-25 17:52:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|