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.
 
 

50 lines
1.1 KiB

var React = require('react');
var Radio = require('./index');
var AntRadioGroup = React.createClass({
getDefaultProps: function () {
return {
prefixCls: 'ant-radio-group'
};
},
getInitialState: function () {
var value = null;
this.props.children.forEach(function (radio) {
if (radio.props && radio.props.checked) {
value = radio.props.value;
}
return false;
});
return {
selectedValue: value
};
},
render: function () {
var self = this;
var props = self.props;
var children = props.children.map(function (radio) {
if (radio.props) {
return <Radio {...radio.props}
onChange={self.onRadioChange}
checked={self.state.selectedValue === radio.props.value}
/>;
}
return radio;
});
return (
<div className={props.prefixCls}>
{children}
</div>
);
},
onRadioChange: function (ev) {
this.setState({
selectedValue: ev.target.value
});
if (typeof this.props.onChange === 'function') {
this.props.onChange(ev);
}
}
});
module.exports = AntRadioGroup;