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