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
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() {
|
|
return {
|
|
prefixCls: 'ant-radio-group',
|
|
disabled: false,
|
|
onChange() {
|
|
}
|
|
};
|
|
},
|
|
getInitialState() {
|
|
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() {
|
|
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={radio.props.disabled || this.props.disabled}/>
|
|
);
|
|
}
|
|
return radio;
|
|
});
|
|
return (
|
|
<div className={props.prefixCls}>
|
|
{children}
|
|
</div>
|
|
);
|
|
},
|
|
onRadioChange(ev) {
|
|
this.setState({
|
|
value: ev.target.value
|
|
});
|
|
this.props.onChange(ev);
|
|
}
|
|
});
|
|
|