import * as React from 'react'; import * as PropTypes from 'prop-types'; import classNames from 'classnames'; import shallowEqual from 'shallowequal'; import Radio from './radio'; import { RadioGroupProps, RadioGroupState, RadioChangeEvent, RadioGroupButtonStyle, } from './interface'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; import SizeContext from '../config-provider/SizeContext'; function getCheckedValue(children: React.ReactNode) { let value = null; let matched = false; React.Children.forEach(children, (radio: any) => { if (radio && radio.props && radio.props.checked) { value = radio.props.value; matched = true; } }); return matched ? { value } : undefined; } class RadioGroup extends React.Component { static defaultProps = { buttonStyle: 'outline' as RadioGroupButtonStyle, }; static childContextTypes = { radioGroup: PropTypes.any, }; static getDerivedStateFromProps(nextProps: RadioGroupProps) { if ('value' in nextProps) { return { value: nextProps.value, }; } const checkedValue = getCheckedValue(nextProps.children); if (checkedValue) { return { value: checkedValue.value, }; } return null; } constructor(props: RadioGroupProps) { super(props); let value; if ('value' in props) { value = props.value; } else if ('defaultValue' in props) { value = props.defaultValue; } else { const checkedValue = getCheckedValue(props.children); value = checkedValue && checkedValue.value; } this.state = { value, }; } getChildContext() { return { radioGroup: { onChange: this.onRadioChange, value: this.state.value, disabled: this.props.disabled, name: this.props.name, }, }; } shouldComponentUpdate(nextProps: RadioGroupProps, nextState: RadioGroupState) { return !shallowEqual(this.props, nextProps) || !shallowEqual(this.state, nextState); } onRadioChange = (ev: RadioChangeEvent) => { const lastValue = this.state.value; const { value } = ev.target; if (!('value' in this.props)) { this.setState({ value, }); } const { onChange } = this.props; if (onChange && value !== lastValue) { onChange(ev); } }; renderGroup = ({ getPrefixCls, direction }: ConfigConsumerProps) => { const { props } = this; const { prefixCls: customizePrefixCls, className = '', options, buttonStyle, size: customizeSize, } = props; const prefixCls = getPrefixCls('radio', customizePrefixCls); const groupPrefixCls = `${prefixCls}-group`; let { children } = props; // 如果存在 options, 优先使用 if (options && options.length > 0) { children = options.map(option => { if (typeof option === 'string') { // 此处类型自动推导为 string return ( {option} ); } // 此处类型自动推导为 { label: string value: string } return ( {option.label} ); }); } return ( {size => { const mergedSize = customizeSize || size; const classString = classNames( groupPrefixCls, `${groupPrefixCls}-${buttonStyle}`, { [`${groupPrefixCls}-${mergedSize}`]: mergedSize, [`${groupPrefixCls}-rtl`]: direction === 'rtl', }, className, ); return (
{children}
); }}
); }; render() { return {this.renderGroup}; } } export default RadioGroup;