109 lines
3.9 KiB
Vue
109 lines
3.9 KiB
Vue
import type { ExtractPropTypes, PropType } from 'vue';
|
|
import { computed, defineComponent, ref } from 'vue';
|
|
import PropTypes from '../_util/vue-types';
|
|
import VcCheckbox from '../vc-checkbox/Checkbox';
|
|
import classNames from '../_util/classNames';
|
|
import useConfigInject from '../config-provider/hooks/useConfigInject';
|
|
import type { RadioChangeEvent } from './interface';
|
|
import { FormItemInputContext, useInjectFormItemContext } from '../form/FormItemContext';
|
|
import omit from '../_util/omit';
|
|
import type { FocusEventHandler, MouseEventHandler } from '../_util/EventInterface';
|
|
import { useInjectRadioGroupContext, useInjectRadioOptionTypeContext } from './context';
|
|
|
|
export const radioProps = () => ({
|
|
prefixCls: String,
|
|
checked: { type: Boolean, default: undefined },
|
|
disabled: { type: Boolean, default: undefined },
|
|
isGroup: { type: Boolean, default: undefined },
|
|
value: PropTypes.any,
|
|
name: String,
|
|
id: String,
|
|
autofocus: { type: Boolean, default: undefined },
|
|
onChange: Function as PropType<(event: RadioChangeEvent) => void>,
|
|
onFocus: Function as PropType<FocusEventHandler>,
|
|
onBlur: Function as PropType<FocusEventHandler>,
|
|
onClick: Function as PropType<MouseEventHandler>,
|
|
'onUpdate:checked': Function as PropType<(checked: boolean) => void>,
|
|
'onUpdate:value': Function as PropType<(checked: boolean) => void>,
|
|
});
|
|
|
|
export type RadioProps = Partial<ExtractPropTypes<ReturnType<typeof radioProps>>>;
|
|
|
|
export default defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
name: 'ARadio',
|
|
props: radioProps(),
|
|
setup(props, { emit, expose, slots }) {
|
|
const formItemContext = useInjectFormItemContext();
|
|
const formItemInputContext = FormItemInputContext.useInject();
|
|
const radioOptionTypeContext = useInjectRadioOptionTypeContext();
|
|
const radioGroupContext = useInjectRadioGroupContext();
|
|
const vcCheckbox = ref<HTMLElement>();
|
|
|
|
const { prefixCls: radioPrefixCls, direction } = useConfigInject('radio', props);
|
|
const prefixCls = computed(() =>
|
|
(radioGroupContext?.optionType.value || radioOptionTypeContext) === 'button'
|
|
? `${radioPrefixCls.value}-button`
|
|
: radioPrefixCls.value,
|
|
);
|
|
const focus = () => {
|
|
vcCheckbox.value.focus();
|
|
};
|
|
|
|
const blur = () => {
|
|
vcCheckbox.value.blur();
|
|
};
|
|
|
|
expose({ focus, blur });
|
|
|
|
const handleChange = (event: RadioChangeEvent) => {
|
|
const targetChecked = event.target.checked;
|
|
emit('update:checked', targetChecked);
|
|
emit('update:value', targetChecked);
|
|
emit('change', event);
|
|
formItemContext.onFieldChange();
|
|
};
|
|
|
|
const onChange = (e: RadioChangeEvent) => {
|
|
emit('change', e);
|
|
if (radioGroupContext && radioGroupContext.onChange) {
|
|
radioGroupContext.onChange(e);
|
|
}
|
|
};
|
|
|
|
return () => {
|
|
const radioGroup = radioGroupContext;
|
|
const { prefixCls: customizePrefixCls, id = formItemContext.id.value, ...restProps } = props;
|
|
|
|
const rProps: RadioProps = {
|
|
prefixCls: prefixCls.value,
|
|
id,
|
|
...omit(restProps, ['onUpdate:checked', 'onUpdate:value']),
|
|
};
|
|
|
|
if (radioGroup) {
|
|
rProps.name = radioGroup.name.value;
|
|
rProps.onChange = onChange;
|
|
rProps.checked = props.value === radioGroup.value.value;
|
|
rProps.disabled = props.disabled || radioGroup.disabled.value;
|
|
} else {
|
|
rProps.onChange = handleChange;
|
|
}
|
|
const wrapperClassString = classNames({
|
|
[`${prefixCls.value}-wrapper`]: true,
|
|
[`${prefixCls.value}-wrapper-checked`]: rProps.checked,
|
|
[`${prefixCls.value}-wrapper-disabled`]: rProps.disabled,
|
|
[`${prefixCls.value}-wrapper-rtl`]: direction.value === 'rtl',
|
|
[`${prefixCls.value}-wrapper-in-form-item`]: formItemInputContext.isFormItemInput,
|
|
});
|
|
|
|
return (
|
|
<label class={wrapperClassString}>
|
|
<VcCheckbox {...rProps} type="radio" ref={vcCheckbox} />
|
|
{slots.default && <span>{slots.default()}</span>}
|
|
</label>
|
|
);
|
|
};
|
|
},
|
|
});
|