f4045ba3d9
* Add eslint-plugin-jsx-a11y. * Fix npm script. * Adjust npm scripts so test also runs lint. * Fix existing lint errors. * Don't break on a11y issues. * Add role and tabIndex. * Add vim and Mac files to .gitignore and .dockerignore. * Handle htmlFor (partially), a that's actually a button. * Fix missing tabIndex. * Add cursor:pointer to load-more * Revert change to load_more. * Fixes based on review. * Update yarn.lock. * Don't try to install fsevents on Linux (hides warning noise).
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
const Button = React.createClass({
|
|
|
|
propTypes: {
|
|
text: React.PropTypes.node,
|
|
onClick: React.PropTypes.func,
|
|
disabled: React.PropTypes.bool,
|
|
block: React.PropTypes.bool,
|
|
secondary: React.PropTypes.bool,
|
|
size: React.PropTypes.number,
|
|
style: React.PropTypes.object,
|
|
children: React.PropTypes.node
|
|
},
|
|
|
|
getDefaultProps () {
|
|
return {
|
|
size: 36
|
|
};
|
|
},
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
handleClick (e) {
|
|
if (!this.props.disabled) {
|
|
this.props.onClick();
|
|
}
|
|
},
|
|
|
|
render () {
|
|
const style = {
|
|
fontFamily: 'inherit',
|
|
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',
|
|
padding: `0 ${this.props.size / 2.25}px`,
|
|
height: `${this.props.size}px`,
|
|
cursor: 'pointer',
|
|
lineHeight: `${this.props.size}px`,
|
|
borderRadius: '4px',
|
|
textDecoration: 'none'
|
|
};
|
|
|
|
return (
|
|
<button className={`button ${this.props.secondary ? 'button-secondary' : ''}`} disabled={this.props.disabled} onClick={this.handleClick} style={{ ...style, ...this.props.style }}>
|
|
{this.props.text || this.props.children}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
});
|
|
|
|
export default Button;
|