You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

62 lines
1.5 KiB

import React from 'react';
import Radio from './radio';
function getCheckedValue(children) {
let checkedValue = null;
React.Children.forEach(children, function (radio) {
if (radio.props && radio.props.checked) {
checkedValue = radio.props.value;
}
});
return checkedValue;
}
export default React.createClass({
getDefaultProps: function () {
return {
prefixCls: 'ant-radio-group',
disabled: false,
onChange: function () {
}
};
},
getInitialState: function () {
let props = this.props;
return {
value: props.value || props.defaultValue || getCheckedValue(props.children)
};
},
componentWillReceiveProps(nextProps) {
if ('value' in nextProps || getCheckedValue(nextProps.children)) {
this.setState({
value: nextProps.value || getCheckedValue(nextProps.children)
});
}
},
render: function () {
let props = this.props;
let children = React.Children.map(props.children, (radio) => {
if (radio.props) {
return <Radio
key={radio.props.value}
{...radio.props}
onChange={this.onRadioChange}
checked={this.state.value === radio.props.value}
disabled={this.props.disabled}
/>;
}
return radio;
});
return (
<div className={props.prefixCls}>
{children}
</div>
);
},
onRadioChange: function (ev) {
this.setState({
value: ev.target.value
});
this.props.onChange(ev);
}
});