mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:25:15 +00:00
feat: add optgroup support for select
This commit is contained in:
parent
b5ddd6a6ba
commit
befe5661f8
@ -46,7 +46,23 @@ const createEnum = (enums: any) => {
|
|||||||
export const Select: React.FC<SelectProps> = styled((props: SelectProps) => {
|
export const Select: React.FC<SelectProps> = styled((props: SelectProps) => {
|
||||||
const { dataSource = [], onChange, ...others } = props
|
const { dataSource = [], onChange, ...others } = props
|
||||||
const children = createEnum(dataSource).map(item => {
|
const children = createEnum(dataSource).map(item => {
|
||||||
const { label, value, ...others } = item
|
const { label, value, children = [], ...others } = item
|
||||||
|
if (children.length) {
|
||||||
|
return (
|
||||||
|
<AntSelect.OptGroup label={label}>
|
||||||
|
{children.map(({value, label, ...others}: any) => (
|
||||||
|
<AntSelect.Option
|
||||||
|
key={value}
|
||||||
|
{...others}
|
||||||
|
title={label}
|
||||||
|
value={value}
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
</AntSelect.Option>
|
||||||
|
))}
|
||||||
|
</AntSelect.OptGroup>
|
||||||
|
);
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<AntSelect.Option
|
<AntSelect.Option
|
||||||
key={value}
|
key={value}
|
||||||
|
Loading…
Reference in New Issue
Block a user