import * as React from 'react'; import * as PropTypes from 'prop-types'; import RcCheckbox from 'rc-checkbox'; import classNames from 'classnames'; import shallowEqual from 'shallowequal'; import RadioGroup from './group'; import RadioButton from './radioButton'; import { RadioProps, RadioChangeEvent, RadioGroupContext } from './interface'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; export default class Radio extends React.Component { static Group: typeof RadioGroup; static Button: typeof RadioButton; static defaultProps = { type: 'radio', }; static contextTypes = { radioGroup: PropTypes.any, }; context: any; private rcCheckbox: any; shouldComponentUpdate(nextProps: RadioProps, nextState: {}, nextContext: RadioGroupContext) { return ( !shallowEqual(this.props, nextProps) || !shallowEqual(this.state, nextState) || !shallowEqual(this.context.radioGroup, nextContext.radioGroup) ); } saveCheckbox = (node: any) => { this.rcCheckbox = node; }; onChange = (e: RadioChangeEvent) => { if (this.props.onChange) { this.props.onChange(e); } if (this.context.radioGroup && this.context.radioGroup.onChange) { this.context.radioGroup.onChange(e); } }; focus() { this.rcCheckbox.focus(); } blur() { this.rcCheckbox.blur(); } renderRadio = ({ getPrefixCls }: ConfigConsumerProps) => { const { props, context } = this; const { prefixCls: customizePrefixCls, className, children, style, ...restProps } = props; const { radioGroup } = context; const prefixCls = getPrefixCls('radio', customizePrefixCls); const radioProps: RadioProps = { ...restProps }; if (radioGroup) { radioProps.name = radioGroup.name; radioProps.onChange = this.onChange; radioProps.checked = props.value === radioGroup.value; radioProps.disabled = props.disabled || radioGroup.disabled; } const wrapperClassString = classNames(className, { [`${prefixCls}-wrapper`]: true, [`${prefixCls}-wrapper-checked`]: radioProps.checked, [`${prefixCls}-wrapper-disabled`]: radioProps.disabled, }); return ( // eslint-disable-next-line jsx-a11y/label-has-associated-control ); }; render() { return {this.renderRadio}; } }