react-toolbox/components/checkbox/index.jsx

79 lines
2.0 KiB
JavaScript

import React from 'react';
import Ripple from '../ripple';
import events from '../utils/events';
import style from './style';
class Checkbox extends React.Component {
static propTypes = {
checked: React.PropTypes.bool,
className: React.PropTypes.string,
disabled: React.PropTypes.bool,
label: React.PropTypes.any,
name: React.PropTypes.string,
onBlur: React.PropTypes.func,
onChange: React.PropTypes.func,
onFocus: React.PropTypes.func
};
static defaultProps = {
checked: false,
className: '',
disabled: false
};
handleClick = (event) => {
events.pauseEvent(event);
this.props.onChange(event);
};
handleInputClick = (event) => {
events.pauseEvent(event);
};
handleMouseDown = (event) => {
this.refs.ripple.start(event);
};
render () {
let fieldClassName = style.field;
let checkboxClassName = style.check;
if (this.props.checked) checkboxClassName += ` ${style.checked}`;
if (this.props.disabled) fieldClassName += ` ${style.disabled}`;
if (this.props.className) fieldClassName += ` ${this.props.className}`;
return (
<label
data-react-toolbox='checkbox'
className={fieldClassName}
onClick={this.handleClick}
>
<input
ref='input'
{...this.props}
className={style.input}
onClick={(this.props.onChange && !this.props.disabled) ? this.handleInputClick : null}
type='checkbox'
/>
<span
data-role='checkbox'
className={checkboxClassName}
onMouseDown={!this.props.disabled ? this.handleMouseDown : null}
>
<Ripple ref='ripple' data-role='ripple' className={style.ripple} spread={3} centered />
</span>
{ this.props.label ? <span data-role='label' className={style.text}>{this.props.label}</span> : null }
</label>
);
}
blur () {
this.refs.input.blur();
}
focus () {
this.refs.input.focus();
}
}
export default Checkbox;