mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
e7aa014c31
* docs: init * chore: all types * docs: faq * chore: fix lint
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Checkbox, Divider } from 'antd';
|
|
import type { CheckboxProps, GetProp } from 'antd';
|
|
|
|
type CheckboxValueType = GetProp<typeof Checkbox.Group, 'value'>[number];
|
|
|
|
const CheckboxGroup = Checkbox.Group;
|
|
|
|
const plainOptions = ['Apple', 'Pear', 'Orange'];
|
|
const defaultCheckedList = ['Apple', 'Orange'];
|
|
|
|
const App: React.FC = () => {
|
|
const [checkedList, setCheckedList] = useState<CheckboxValueType[]>(defaultCheckedList);
|
|
|
|
const checkAll = plainOptions.length === checkedList.length;
|
|
const indeterminate = checkedList.length > 0 && checkedList.length < plainOptions.length;
|
|
|
|
const onChange = (list: CheckboxValueType[]) => {
|
|
setCheckedList(list);
|
|
};
|
|
|
|
const onCheckAllChange: CheckboxProps['onChange'] = (e) => {
|
|
setCheckedList(e.target.checked ? plainOptions : []);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Checkbox indeterminate={indeterminate} onChange={onCheckAllChange} checked={checkAll}>
|
|
Check all
|
|
</Checkbox>
|
|
<Divider />
|
|
<CheckboxGroup options={plainOptions} value={checkedList} onChange={onChange} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|