English 中文(简体)
如何指明这一点 反应部分是否可选择?
原标题:How to specify that forwardRef is optional in a React component?

CodeSand Box Example

我已经确定了一个出口多个电灯的icon图书馆。 每个Icon公司都向内部挖掘工作投射。 例如:

type ReactIconProps = SVGProps<SVGSVGElement>;

function CheckIconInner(props: ReactIconProps, ref: Ref<SVGSVGElement>) {
  return (
    <svg
      fill="none"
      height="1em"
      ref={ref}
      stroke="currentColor"
      viewBox="0 0 24 24"
      width="1em"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M20 6L9 17L4 12"
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
      />
    </svg>
  );
}
const CheckIcon = forwardRef(CheckIconInner);

I want to use these icons as a prop in a button component so that the button can include an icon. See below:

type ReactButtonProps = ButtonHTMLAttributes<HTMLButtonElement>;

export interface ButtonProps extends ReactButtonProps {
  Icon?: ComponentType<ReactIconProps>;
}

function Button({ children, Icon, ...props }: ButtonProps) {
  return (
    <button {...props}>
      {Icon !== undefined && <Icon />}
      {children}
    </button>
  );
}

export default function App() {
  return <Button Icon={CheckIcon}>OK</Button>;
}

但是,如果将icon转至纽特州(<Button Icon={CheckIcon}>OK</Button>):

TS2322: Type  ForwardRefExoticComponent<Omit<ReactIconProps, "ref"> & RefAttributes<SVGSVGElement>>  is not assignable to type  ComponentType<ReactIconProps> | undefined .
  Type  ForwardRefExoticComponent<Omit<ReactIconProps, "ref"> & RefAttributes<SVGSVGElement>>  is not assignable to type  FunctionComponent<ReactIconProps> .
    Types of parameters  props  and  props  are incompatible.
      Type  ReactIconProps  is not assignable to type  Omit<ReactIconProps, "ref"> & RefAttributes<SVGSVGElement> .
        Type  SVGProps<SVGSVGElement>  is not assignable to type  RefAttributes<SVGSVGElement> .
          Types of property  ref  are incompatible.
            Type  LegacyRef<SVGSVGElement> | undefined  is not assignable to type  Ref<SVGSVGElement> | undefined .
              Type  string  is not assignable to type  Ref<SVGSVGElement> | undefined .

问题是,“icon”要求退约,但我们不是通过。

Two questions:

  1. How can we specify that the ref passed to icon component is optional?
  2. Is the use of ref in the Icon component a good practice? I have seen lots of advice that refs should not be overused, but see that may component libraries use it extensively.

<><>Edit>/strong>

我在

问题回答

您可以通过部分延长原类型或您需要的任何部分,在您的接口声明中选择任何领域。 (也可通过 o、amp等进行)

例如:

interface ExampleProps extends Partial<ReactIconProps>{ customItem:string; }

ExampleProps now contains all fields in ReactIconProps, but as optional items. With customItem being the only required field.





相关问题
How to use one react app into another react app?

I have two react apps, parent app and child app. and child app have an hash router. I have build the child app using npm run build, It creates build folder. That build folder moved into inside the ...

how to get selected value in Ant Design

I want to print the selected value, and below is my option list: const vesselName = [ { value: 0 , label: ALBIDDA , }, { value: 1 , label: ALRUMEILA , }, { value: 2 ,...

How to add a <br> tag in reactjs between two strings?

I am using react. I want to add a line break <br> between strings No results and Please try another search term. . I have tried No results.<br>Please try another search term. but ...

热门标签