2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
class Button extends React.PureComponent {
|
2016-08-26 03:52:55 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
}
|
2016-09-01 00:15:12 +10:00
|
|
|
|
2016-08-26 03:52:55 +10:00
|
|
|
handleClick (e) {
|
2016-09-01 00:15:12 +10:00
|
|
|
if (!this.props.disabled) {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-08-26 03:52:55 +10:00
|
|
|
|
|
|
|
render () {
|
2016-09-28 07:12:33 +10:00
|
|
|
const style = {
|
2017-01-05 15:24:27 +11:00
|
|
|
fontFamily: 'inherit',
|
2016-09-28 07:12:33 +10:00
|
|
|
display: this.props.block ? 'block' : 'inline-block',
|
|
|
|
width: this.props.block ? '100%' : 'auto',
|
|
|
|
position: 'relative',
|
|
|
|
boxSizing: 'border-box',
|
|
|
|
textAlign: 'center',
|
|
|
|
border: '10px none',
|
|
|
|
fontSize: '14px',
|
|
|
|
fontWeight: '500',
|
|
|
|
letterSpacing: '0',
|
2016-11-24 09:34:12 +11:00
|
|
|
padding: `0 ${this.props.size / 2.25}px`,
|
|
|
|
height: `${this.props.size}px`,
|
2016-09-28 07:12:33 +10:00
|
|
|
cursor: 'pointer',
|
2016-11-24 09:34:12 +11:00
|
|
|
lineHeight: `${this.props.size}px`,
|
2016-09-28 07:12:33 +10:00
|
|
|
borderRadius: '4px',
|
2017-04-20 03:21:23 +10:00
|
|
|
textDecoration: 'none',
|
|
|
|
whiteSpace: 'nowrap',
|
|
|
|
textOverflow: 'ellipsis',
|
|
|
|
overflow: 'hidden'
|
2016-09-28 07:12:33 +10:00
|
|
|
};
|
2016-11-24 09:34:12 +11:00
|
|
|
|
2016-08-26 03:52:55 +10:00
|
|
|
return (
|
2016-11-24 09:34:12 +11:00
|
|
|
<button className={`button ${this.props.secondary ? 'button-secondary' : ''}`} disabled={this.props.disabled} onClick={this.handleClick} style={{ ...style, ...this.props.style }}>
|
2016-09-08 02:17:15 +10:00
|
|
|
{this.props.text || this.props.children}
|
2016-09-01 06:58:10 +10:00
|
|
|
</button>
|
2016-08-26 03:52:55 +10:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
Button.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
|
|
|
|
};
|
|
|
|
|
|
|
|
Button.defaultProps = {
|
|
|
|
size: 36
|
|
|
|
};
|
2016-08-26 03:52:55 +10:00
|
|
|
|
|
|
|
export default Button;
|