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.4 KiB
62 lines
1.4 KiB
var React = require('react');
|
|
var Radio = require('./index');
|
|
|
|
function getCheckedValue(children) {
|
|
var checkedValue = null;
|
|
children.forEach(function (radio) {
|
|
if (radio.props && radio.props.checked) {
|
|
checkedValue = radio.props.value;
|
|
}
|
|
});
|
|
return checkedValue;
|
|
}
|
|
|
|
var AntRadioGroup = React.createClass({
|
|
getDefaultProps: function () {
|
|
return {
|
|
prefixCls: 'ant-radio-group',
|
|
onChange: function () {
|
|
}
|
|
};
|
|
},
|
|
getInitialState: function () {
|
|
var 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 () {
|
|
var props = this.props;
|
|
var children = props.children.map((radio) => {
|
|
if (radio.props) {
|
|
return <Radio
|
|
key={radio.props.value}
|
|
{...radio.props}
|
|
onChange={this.onRadioChange}
|
|
checked={this.state.value === radio.props.value}
|
|
/>;
|
|
}
|
|
return radio;
|
|
});
|
|
return (
|
|
<div className={props.prefixCls}>
|
|
{children}
|
|
</div>
|
|
);
|
|
},
|
|
onRadioChange: function (ev) {
|
|
this.setState({
|
|
value: ev.target.value
|
|
});
|
|
this.props.onChange(ev);
|
|
}
|
|
});
|
|
|
|
module.exports = AntRadioGroup;
|
|
|