You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
import React from 'react';
|
|
import { Cascader } from 'antd';
|
|
import type { DefaultOptionType } from 'antd/es/cascader';
|
|
|
|
interface Option {
|
|
value: string;
|
|
label: string;
|
|
children?: Option[];
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const options: Option[] = [
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [
|
|
{
|
|
value: 'hangzhou',
|
|
label: 'Hangzhou',
|
|
children: [
|
|
{
|
|
value: 'xihu',
|
|
label: 'West Lake',
|
|
},
|
|
{
|
|
value: 'xiasha',
|
|
label: 'Xia Sha',
|
|
disabled: true,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'jiangsu',
|
|
label: 'Jiangsu',
|
|
children: [
|
|
{
|
|
value: 'nanjing',
|
|
label: 'Nanjing',
|
|
children: [
|
|
{
|
|
value: 'zhonghuamen',
|
|
label: 'Zhong Hua men',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const onChange = (value: string[], selectedOptions: Option[]) => {
|
|
console.log(value, selectedOptions);
|
|
};
|
|
|
|
const filter = (inputValue: string, path: DefaultOptionType[]) =>
|
|
path.some(
|
|
(option) => (option.label as string).toLowerCase().indexOf(inputValue.toLowerCase()) > -1,
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<Cascader
|
|
options={options}
|
|
onChange={onChange}
|
|
placeholder="Please select"
|
|
showSearch={{ filter }}
|
|
onSearch={(value) => console.log(value)}
|
|
/>
|
|
);
|
|
|
|
export default App;
|
|
|