import classNames from 'classnames'; import omit from 'rc-util/lib/omit'; import * as React from 'react'; import { ConfigContext } from '../config-provider'; import type { CheckboxChangeEvent } from './Checkbox'; import Checkbox from './Checkbox'; import useStyle from './style'; export type CheckboxValueType = string | number | boolean; export interface CheckboxOptionType { label: React.ReactNode; value: CheckboxValueType; style?: React.CSSProperties; disabled?: boolean; onChange?: (e: CheckboxChangeEvent) => void; } export interface AbstractCheckboxGroupProps { prefixCls?: string; className?: string; rootClassName?: string; options?: Array; disabled?: boolean; style?: React.CSSProperties; } export interface CheckboxGroupProps extends AbstractCheckboxGroupProps { name?: string; defaultValue?: Array; value?: Array; onChange?: (checkedValue: Array) => void; children?: React.ReactNode; } export interface CheckboxGroupContext { name?: string; toggleOption?: (option: CheckboxOptionType) => void; value?: any; disabled?: boolean; registerValue: (val: string) => void; cancelValue: (val: string) => void; } export const GroupContext = React.createContext(null); const InternalCheckboxGroup: React.ForwardRefRenderFunction = ( { defaultValue, children, options = [], prefixCls: customizePrefixCls, className, rootClassName, style, onChange, ...restProps }, ref, ) => { const { getPrefixCls, direction } = React.useContext(ConfigContext); const [value, setValue] = React.useState( restProps.value || defaultValue || [], ); const [registeredValues, setRegisteredValues] = React.useState([]); React.useEffect(() => { if ('value' in restProps) { setValue(restProps.value || []); } }, [restProps.value]); const getOptions = () => options.map((option) => { if (typeof option === 'string' || typeof option === 'number') { return { label: option, value: option, }; } return option; }); const cancelValue = (val: string) => { setRegisteredValues((prevValues) => prevValues.filter((v) => v !== val)); }; const registerValue = (val: string) => { setRegisteredValues((prevValues) => [...prevValues, val]); }; const toggleOption = (option: CheckboxOptionType) => { const optionIndex = value.indexOf(option.value); const newValue = [...value]; if (optionIndex === -1) { newValue.push(option.value); } else { newValue.splice(optionIndex, 1); } if (!('value' in restProps)) { setValue(newValue); } const opts = getOptions(); onChange?.( newValue .filter((val) => registeredValues.includes(val)) .sort((a, b) => { const indexA = opts.findIndex((opt) => opt.value === a); const indexB = opts.findIndex((opt) => opt.value === b); return indexA - indexB; }), ); }; const prefixCls = getPrefixCls('checkbox', customizePrefixCls); const groupPrefixCls = `${prefixCls}-group`; const [wrapSSR, hashId] = useStyle(prefixCls); const domProps = omit(restProps, ['value', 'disabled']); if (options && options.length > 0) { children = getOptions().map((option) => ( {option.label} )); } // eslint-disable-next-line react/jsx-no-constructed-context-values const context = { toggleOption, value, disabled: restProps.disabled, name: restProps.name, // https://github.com/ant-design/ant-design/issues/16376 registerValue, cancelValue, }; const classString = classNames( groupPrefixCls, { [`${groupPrefixCls}-rtl`]: direction === 'rtl', }, className, rootClassName, hashId, ); return wrapSSR(
{children}
, ); }; const CheckboxGroup = React.forwardRef(InternalCheckboxGroup); export default React.memo(CheckboxGroup);