mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
338ec7dad7
* pref: better code style for production * refactor `devWarning` * don't use `useEffect` only wrap `devWarning` * chore: add 'noop' to coverage * chore: add test cases for devWarning * chore: add test case * chore: update test cases for devWarning * chore: restore test script command * fix: remove 'throw new Error' * should not use `throw` for browser * chore: update test case for AutoComplete * perf: add prefix for `devWarning` * update RegExp for UMD * add prefix for ES and CJS * chore: better code style * perf: * upgrade antd-tools * remove `injectWarningCondition` * rename `devWarning` to `warning` * chore: better code style * chore: better code style * chore: restore hasValidName
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import * as React from 'react';
|
|
import RcCheckbox from 'rc-checkbox';
|
|
import classNames from 'classnames';
|
|
import { composeRef } from 'rc-util/lib/ref';
|
|
import { useContext } from 'react';
|
|
import { FormItemInputContext } from '../form/context';
|
|
import type { RadioProps, RadioChangeEvent } from './interface';
|
|
import { ConfigContext } from '../config-provider';
|
|
import RadioGroupContext, { RadioOptionTypeContext } from './context';
|
|
import warning from '../_util/warning';
|
|
|
|
const InternalRadio: React.ForwardRefRenderFunction<HTMLElement, RadioProps> = (props, ref) => {
|
|
const groupContext = React.useContext(RadioGroupContext);
|
|
const radioOptionTypeContext = React.useContext(RadioOptionTypeContext);
|
|
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
const innerRef = React.useRef<HTMLElement>();
|
|
const mergedRef = composeRef(ref, innerRef);
|
|
const { isFormItemInput } = useContext(FormItemInputContext);
|
|
|
|
warning(!('optionType' in props), 'Radio', '`optionType` is only support in Radio.Group.');
|
|
|
|
const onChange = (e: RadioChangeEvent) => {
|
|
props.onChange?.(e);
|
|
groupContext?.onChange?.(e);
|
|
};
|
|
|
|
const { prefixCls: customizePrefixCls, className, children, style, ...restProps } = props;
|
|
const radioPrefixCls = getPrefixCls('radio', customizePrefixCls);
|
|
const prefixCls =
|
|
(groupContext?.optionType || radioOptionTypeContext) === 'button'
|
|
? `${radioPrefixCls}-button`
|
|
: radioPrefixCls;
|
|
|
|
const radioProps: RadioProps = { ...restProps };
|
|
if (groupContext) {
|
|
radioProps.name = groupContext.name;
|
|
radioProps.onChange = onChange;
|
|
radioProps.checked = props.value === groupContext.value;
|
|
radioProps.disabled = props.disabled || groupContext.disabled;
|
|
}
|
|
const wrapperClassString = classNames(
|
|
`${prefixCls}-wrapper`,
|
|
{
|
|
[`${prefixCls}-wrapper-checked`]: radioProps.checked,
|
|
[`${prefixCls}-wrapper-disabled`]: radioProps.disabled,
|
|
[`${prefixCls}-wrapper-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-wrapper-in-form-item`]: isFormItemInput,
|
|
},
|
|
className,
|
|
);
|
|
|
|
return (
|
|
// eslint-disable-next-line jsx-a11y/label-has-associated-control
|
|
<label
|
|
className={wrapperClassString}
|
|
style={style}
|
|
onMouseEnter={props.onMouseEnter}
|
|
onMouseLeave={props.onMouseLeave}
|
|
>
|
|
<RcCheckbox {...radioProps} type="radio" prefixCls={prefixCls} ref={mergedRef} />
|
|
{children !== undefined ? <span>{children}</span> : null}
|
|
</label>
|
|
);
|
|
};
|
|
|
|
const Radio = React.forwardRef<unknown, RadioProps>(InternalRadio);
|
|
|
|
Radio.displayName = 'Radio';
|
|
|
|
export default Radio;
|