如何在React Select(V2)中创建嵌套选项组?

时间:2018-11-02 13:56:13

标签: javascript reactjs react-select

在React-Select V2中,我们可以通过传递options参数来创建选项组,如下所示:

options = [
    { label: 'Group', options: [
        { label: 'Option 1', value: '1' },
        { label: 'Option 2', value: '2' }
    ]}
]

我需要能够更深入一些,例如:

options = [
    { label: 'Group', options: [
        { label: 'Option 1', value: '1' },
        { label: 'Option 2', options: [
            { label: 'Option 2-a', value: '2a' },
            { label: 'Option 2-b', value: '2b' },
        ]}
    ]}
]

将在“选项2”下的组中显示选项“选项2-a”和“选项2-b”。上面的方法不是开箱即用的,所以我想知道是否有一种方法可以在React-Select V2中创建嵌套组。

2 个答案:

答案 0 :(得分:1)

对于任何有类似需求的人,我都实施了这种递归解决方法。

const renderNestedOption = (props, label, nestedOptions) => {
  const {
    cx,
    getStyles,
    innerProps,
    selectOption,   
  } = props;

  // Will be applied to nested optgroup headers 
  const nestedLabelClassName = cx(
    css(getStyles('groupHeading', props)),
    { option: true },
    'nested-optgroup-label',
  );    

  return (
    <div className="nested-optgroup">
      <div className={nestedLabelClassName}>
        {label}
      </div>
      {nestedOptions.map((nestedOption) => {
        if (nestedOption.options) {
          // Read below
          // Read above
          return renderNestedOption(props, nestedOption.label, nestedOption.options);
        }

        const nestedInnerProps = innerProps;
        nestedInnerProps.onClick = () => selectOption(nestedOption);
        return (
          <div className="nested-optgroup-option" key={nestedOption.value}>
            <components.Option {...props} innerProps={nestedInnerProps}>
              {nestedOption.label}
            </components.Option>
          </div>
        );
      })}
    </div>   
  ); 
};

const Option = (props) => {
  const {
    children,
    data,
  } = props;
  const nestedOptions = data.options;

  if (nestedOptions) {
    const label = data.label;
    return renderNestedOption(props, label, nestedOptions);
  }

  return (
    <components.Option {...props}>
      {children}
    </components.Option>
  );
};

然后在您的选择组件中,将Option组件替换为我们刚刚创建的自定义Option组件。

编辑

有一个开放拉取请求来支持此功能: https://github.com/JedWatson/react-select/pull/2750

答案 1 :(得分:0)

此问题是“反应选择”所要求的功能,现已在this PR中实现。您可以在https://codesandbox.io/s/react-codesandboxer-example-8xxyx?file=/index.js

中找到一个有效的示例