如何将属性类型注入到由高阶组件包装的组件中。

huangapple go评论54阅读模式
英文:

How to inject prop types into component that is wrapped by hoc

问题

以下是您要翻译的内容:

我有一个类似这样的`HOC`

```jsx
import React, { useEffect, useMemo, useState } from 'react';

interface WindowSize {
    width: number,
    height: number
}

export function WithWindowSize<T>(Component: React.ComponentType<T>) {
    return function WithComponent(props: T) {
        const [windowSize, setWindowSize] = useState({} as WindowSize)

        useEffect(() => {
            // ...
        }, [])

        return <Component
            {...props}
            windowSize={windowSize}/>;
    }
}

export default WithWindowSize;

现在我想使用这个HOC

interface FooProps {
    headline: string,
    value: string | number,
}

const Foo = ({headline, value, windowSize}: FooProps & WindowSize) => {
    return ...
}

export default WithWindowSize(Foo);

这会给我报错

属性'windowSize'在类型'FooProps & WindowSize'上不存在。

我如何将属性类型WindowSize注入到Foo中?我认为最好的方法是在HOC中执行,这样每次使用WithWindowSize时都不必重复操作。


<details>
<summary>英文:</summary>

I have a `HOC` like this

import React, {useEffect, useMemo, useState} from 'react'

interface WindowSize {
width: number,
height: number
}

export function WithWindowSize <T>(Component: React.ComponentType<T>) {
return function WithComponent(props: T) {
const [windowSize, setWindowSize] = useState({} as WindowSize)

    useEffect(() =&gt; {
        ...
    }, [])


    return &lt;Component
        {...props}
        windowSize={windowSize}/&gt;
}

}

export default WithWindowSize;


Now I want to use this `HOC`.

    interface FooProps {
        headline: string,
        value: string | number,
    }
    
    const Foo = ({headline, value, windowSize}: FoooProps &amp; WindowSize) =&gt; {
        return ...
    }
    
    export default WithWindowSize(Foo);

This gives me 

&gt; Property &#39;windowSize&#39; does not exist on type &#39;FooProps &amp; WindowSize&#39;.

How would I inject the prop type `WindowSize` into `Foo`? I would think the best way is to do it in the `HOC`, so that I do not have to do it every time I wrap something with `WithWindowSize`. 

</details>


# 答案1
**得分**: 0

我会将`windowSize`作为`FooProps`接口的可选属性进行包含,因为无法让`Foo`(或任何其他组件)知道它将在HOC内部使用。

```typescript
interface WindowSize {
    width: number,
    height: number
}

interface FooProps {
    headline: string,
    value: string | number,
    windowSize?: WindowSize
}

const Foo = ({ headline, value, windowSize }: FooProps) => {
    return ...
}
英文:

I would just include the windowSize as an optional property in the FooProps interface, because there is no way for Foo (or any other component) to know that it is going to be used within a HOC

interface WindowSize {
    width: number,
    height: number
}

interface FooProps {
    headline: string,
    value: string | number,
    windowSize?: WindowSize
}

const Foo = ({headline, value, windowSize}: FooProps) =&gt; {
    return ...
}

huangapple
  • 本文由 发表于 2023年3月15日 18:55:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/75743752.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定