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.
28 lines
1.1 KiB
28 lines
1.1 KiB
import * as React from 'react';
|
|
import Radio from './radio';
|
|
import { RadioChangeEvent } from './interface';
|
|
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
import RadioGroupContext from './context';
|
|
|
|
export type RadioButtonProps = AbstractCheckboxProps<RadioChangeEvent>;
|
|
|
|
const RadioButton = (props: RadioButtonProps, ref: React.Ref<any>) => {
|
|
const radioGroupContext = React.useContext(RadioGroupContext);
|
|
|
|
return (
|
|
<ConfigConsumer>
|
|
{({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const { prefixCls: customizePrefixCls, ...radioProps }: RadioButtonProps = props;
|
|
const prefixCls = getPrefixCls('radio-button', customizePrefixCls);
|
|
if (radioGroupContext) {
|
|
radioProps.checked = props.value === radioGroupContext.value;
|
|
radioProps.disabled = props.disabled || radioGroupContext.disabled;
|
|
}
|
|
return <Radio prefixCls={prefixCls} {...radioProps} type="radio" ref={ref} />;
|
|
}}
|
|
</ConfigConsumer>
|
|
);
|
|
};
|
|
|
|
export default React.forwardRef(RadioButton);
|
|
|