import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import shallowEqual from 'shallowequal'; import Checkbox from './Checkbox'; export interface CheckboxOptionType { label: string; value: string; disabled?: boolean; } export interface AbstractCheckboxGroupProps { prefixCls?: string; className?: string; options?: Array; disabled?: boolean; style?: React.CSSProperties; } export interface CheckboxGroupProps extends AbstractCheckboxGroupProps { defaultValue?: Array; value?: Array; onChange?: (checkedValue: Array) => void; } export interface CheckboxGroupState { value: any; } export default class CheckboxGroup extends React.Component { static defaultProps = { options: [], prefixCls: 'ant-checkbox-group', }; static propTypes = { defaultValue: PropTypes.array, value: PropTypes.array, options: PropTypes.array.isRequired, onChange: PropTypes.func, }; static childContextTypes = { checkboxGroup: PropTypes.any, }; constructor(props) { super(props); this.state = { value: props.value || props.defaultValue || [], }; } getChildContext() { return { checkboxGroup: { toggleOption: this.toggleOption, value: this.state.value, disabled: this.props.disabled, }, }; } componentWillReceiveProps(nextProps) { if ('value' in nextProps) { this.setState({ value: nextProps.value || [], }); } } shouldComponentUpdate(nextProps, nextState) { return !shallowEqual(this.props, nextProps) || !shallowEqual(this.state, nextState); } getOptions() { const { options } = this.props; // https://github.com/Microsoft/TypeScript/issues/7960 return (options as Array).map(option => { if (typeof option === 'string') { return { label: option, value: option, } as CheckboxOptionType; } return option; }); } toggleOption = (option) => { const optionIndex = this.state.value.indexOf(option.value); const value = [...this.state.value]; if (optionIndex === - 1) { value.push(option.value); } else { value.splice(optionIndex, 1); } if (!('value' in this.props)) { this.setState({ value }); } const onChange = this.props.onChange; if (onChange) { onChange(value); } } render() { const { props, state } = this; const { prefixCls, className, options } = props; let children = props.children; if (options && options.length > 0) { children = this.getOptions().map(option => ( this.toggleOption(option)} className={`${prefixCls}-item`} > {option.label} )); } const classString = classNames(prefixCls, className); return (
{children}
); } }