react-toolbox/components/radio/RadioGroup.js

49 lines
1.2 KiB
JavaScript

import React from 'react';
import RadioButton from './RadioButton';
class RadioGroup extends React.Component {
static propTypes = {
children: React.PropTypes.node,
className: React.PropTypes.string,
disabled: React.PropTypes.bool,
name: React.PropTypes.string,
onChange: React.PropTypes.func,
value: React.PropTypes.any
};
static defaultProps = {
className: '',
disabled: false
};
handleChange = (value) => {
if (this.props.onChange) this.props.onChange(value);
};
renderRadioButtons () {
return React.Children.map(this.props.children, (radio, idx) => {
return (
<RadioButton
{...radio.props}
checked={radio.props.value === this.props.value}
disabled={this.props.disabled || radio.props.disabled}
key={idx}
label={radio.props.label}
onChange={this.handleChange.bind(this, radio.props.value)}
value={radio.props.value}
/>
);
});
}
render () {
return (
<div data-react-toolbox='radio-group' className={this.props.className}>
{this.renderRadioButtons()}
</div>
);
}
}
export default RadioGroup;