如何从react-select中仅自定义一个选项?

时间:2018-11-19 12:22:52

标签: react-select

我正在使用react-select,但我想从下拉列表中仅自定义一个选项。有这样的机会吗?我想做类似的事情:

const CustomOption = ({ innerRef, innerProps, data }) => data.custom
    ? (<div ref={innerRef} {...innerProps} >I'm a custom link</div>)
    : defaultOne //<--- here I would like to keep default option

    <ReactSelect
        components={{ Option: CustomOption }}
        options={[
            { value: 'chocolate', label: 'Chocolate' },
            { value: 'strawberry', label: 'Strawberry' },
            { value: 'vanilla', label: 'Vanilla' },
            { custom: true },
    ]}
/>

有什么想法要实现吗?

1 个答案:

答案 0 :(得分:1)

您的感觉很好,您可以通过以下方式实现目标:

const CustomOption = props => {
  const { data, innerRef, innerProps } = props;
  return data.custom ? (
    <div ref={innerRef} {...innerProps}>
      I'm a custom link
    </div>
  ) : (
    <components.Option {...props} />
  );
};

const options = [
  { value: "chocolate", label: "Chocolate" },
  { value: "strawberry", label: "Strawberry" },
  { value: "vanilla", label: "Vanilla" },
  { custom: true }
];

function App() {
  return <Select components={{ Option: CustomOption }} options={options} />;
}

需要注意的重要事情是将整个props属性传递给components.Option以具有默认行为。

这里是live example