mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 09:39:10 +08:00
4020f658a8
* docs: tree-select supports onPopupScroll props * docs: update demo * docs: update version * test: update snapshots * fix: update demo --------- Co-authored-by: lijianan <574980606@qq.com>
81 lines
1.6 KiB
TypeScript
81 lines
1.6 KiB
TypeScript
import type { SyntheticEvent } from 'react';
|
|
import React, { useState } from 'react';
|
|
import { TreeSelect } from 'antd';
|
|
|
|
const treeData = [
|
|
{
|
|
value: 'parent 1',
|
|
title: 'parent 1',
|
|
children: [
|
|
{
|
|
value: 'parent 1-0',
|
|
title: 'parent 1-0',
|
|
children: [
|
|
{
|
|
value: 'leaf1',
|
|
title: 'leaf1',
|
|
},
|
|
{
|
|
value: 'leaf2',
|
|
title: 'leaf2',
|
|
},
|
|
{
|
|
value: 'leaf3',
|
|
title: 'leaf3',
|
|
},
|
|
{
|
|
value: 'leaf4',
|
|
title: 'leaf4',
|
|
},
|
|
{
|
|
value: 'leaf5',
|
|
title: 'leaf5',
|
|
},
|
|
{
|
|
value: 'leaf6',
|
|
title: 'leaf6',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'parent 1-1',
|
|
title: 'parent 1-1',
|
|
children: [
|
|
{
|
|
value: 'leaf11',
|
|
title: <b style={{ color: '#08c' }}>leaf11</b>,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState<string>();
|
|
|
|
const onChange = (newValue: string) => {
|
|
setValue(newValue);
|
|
};
|
|
|
|
const onPopupScroll = (e: SyntheticEvent) => {
|
|
console.log('onPopupScroll', e);
|
|
};
|
|
|
|
return (
|
|
<TreeSelect
|
|
showSearch
|
|
style={{ width: '100%' }}
|
|
value={value}
|
|
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
|
|
placeholder="Please select"
|
|
allowClear
|
|
treeDefaultExpandAll
|
|
onChange={onChange}
|
|
treeData={treeData}
|
|
onPopupScroll={onPopupScroll}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|