mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-06 02:15:35 +08:00
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
|
import React, { useState } from 'react';
|
||
|
import type { RadioChangeEvent } from 'antd';
|
||
|
import { Radio, TreeSelect } from 'antd';
|
||
|
import type { SelectCommonPlacement } from 'antd/es/_util/motion';
|
||
|
|
||
|
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: 'parent 1-1',
|
||
|
title: 'parent 1-1',
|
||
|
children: [
|
||
|
{
|
||
|
value: 'leaf3',
|
||
|
title: <b style={{ color: '#08c' }}>leaf3</b>,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
const App: React.FC = () => {
|
||
|
const [placement, SetPlacement] = useState<SelectCommonPlacement>('topLeft');
|
||
|
|
||
|
const placementChange = (e: RadioChangeEvent) => {
|
||
|
SetPlacement(e.target.value);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Radio.Group value={placement} onChange={placementChange}>
|
||
|
<Radio.Button value="topLeft">topLeft</Radio.Button>
|
||
|
<Radio.Button value="topRight">topRight</Radio.Button>
|
||
|
<Radio.Button value="bottomLeft">bottomLeft</Radio.Button>
|
||
|
<Radio.Button value="bottomRight">bottomRight</Radio.Button>
|
||
|
</Radio.Group>
|
||
|
<br />
|
||
|
<br />
|
||
|
|
||
|
<TreeSelect
|
||
|
showSearch
|
||
|
dropdownStyle={{ maxHeight: 400, overflow: 'auto', minWidth: 300 }}
|
||
|
placeholder="Please select"
|
||
|
dropdownMatchSelectWidth={false}
|
||
|
placement={placement}
|
||
|
allowClear
|
||
|
treeDefaultExpandAll
|
||
|
treeData={treeData}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|