如何在功能组件中的 React 中使用 props 中的泛型?

IT技术 reactjs typescript generics react-props
2021-03-25 12:08:09

在基于类的组件中,我可以轻松编写如下代码:

import * as React from 'react';
import { render } from 'react-dom';

interface IProps<T> {
    collapsed: boolean;
    listOfData: T[];
    displayData: (data: T, index: number) => React.ReactNode;
}

class CollapsableDataList<T> extends React.Component<IProps<T>> {
    render () {
        if (!this.props.collapsed) {
            return <span>total: {this.props.listOfData.length}</span>
        } else {
            return (
                <>
                    {
                        this.props.listOfData.map(this.props.displayData)
                    }
                </>
            )
        }
    }
}

render(
    <CollapsableDataList
        collapsed={false}
        listOfData={[{a: 1, b: 2}, {a: 3, b: 4}]}
        displayData={(data, index) => (<span key={index}>{data.a + data.b}</span>)}
    />,
    document.getElementById('root'),
)

实际上这个CollapsableDataList组件应该是一个函数组件,因为它是无状态的,但是我不知道如何编写函数组件并在 props 中使用泛型,对我有什么建议吗?

6个回答

您无法创建带有类型注释的功能组件并使其通用。所以这不会像T未定义那样工作,你不能在变量级别定义它:

const CollapsableDataList : React.FunctionComponent<IProps<T>> = p => { /*...*/ } 

但是,您可以跳过类型注释,并props显式地使函数具有泛型和类型

import * as React from 'react';
import { render } from 'react-dom';

interface IProps<T> {
    collapsed: boolean;
    listOfData: T[];
    displayData: (data: T, index: number) => React.ReactNode;
}
const CollapsableDataList = <T extends object>(props: IProps<T> & { children?: ReactNode }) => {
    if (!props.collapsed) {
        return <span>total: {props.listOfData.length}</span>
    } else {
        return (
            <>
                {
                    props.listOfData.map(props.displayData)
                }
            </>
        )
    }
}


render(
    <CollapsableDataList
        collapsed={false}
        listOfData={[{a: 1, b: 2}, {a: 3, c: 4}]}
        displayData={(data, index) => (<span key={index}>{data.a + (data.b || 0)}</span>)}
    />,
    document.getElementById('root'),
)
@AndyO我只是children从我认为的反应定义中复制了定义。可能不需要添加泛型类型参数,T将被推断。我总是更喜欢让编译器在可能的时候进行推理。
2021-05-25 12:08:09
您可以使用 PropsWithChildren<IProps<T>> 并获得界面交叉点的装备
2021-05-25 12:08:09
@hronro Typescript 使用结构类型,所以函数的参数比声明的类型更重要。你仍然会遇到 HOC 的问题,因为 Typescript 没有更高阶的类型。所以当你将它传递给 HOC 时,类型参数会丢失。但这是一个通用的通用组件问题,而不是类型注释问题。
2021-06-18 12:08:09
我担心某些 HOC 要求您传递具有显式类型(likeComponentClassFunctionalComponenttype)的组件,然后那些没有类型注释的功能组件将无法通过类型检查。(还没测试)
2021-06-20 12:08:09
@TitianCernicova-Dragomir 是的,我错过了可以在这里推断出类型,谢谢!(我也喜欢尽量使用TS的推理能力)
2021-06-21 12:08:09

类型React.FC本质上是这样的:

<P = {}>(props: PropsWithChildren<P>, context?: any) => ReactElement | null

所以而不是这个(这是不允许的):

const Example: React.FC<Props<P>> = (props) => {
  // return a React element or null
}

你可以使用这个:

const Example = <P extends unknown>(props: PropsWithChildren<Props<P>>): ReactElement | null => {
  // return a React element or null
}

例如:

const Example = <P extends unknown>({ value }: PropsWithChildren<{ value: P }>): ReactElement | null => {
  return <pre>{JSON.stringify(value)}</pre>
}

或者,更严格地说,如果组件不使用childrenprop 并且不会返回null

const Example = <P>({ value }: { value: P }): ReactElement => {
  return <pre>{value}</pre>
}

然后使用类型化组件作为 <Example<string> value="foo"/>

type Props<T> = {
    active: T;
    list: T[];
    onChange: (tab: T) => void;
};

export const Tabs = <T,>({ active, list, onChange }: Props<T>): JSX.Element => {
    return (
        <>
            {list.map((tab) => (
                <Button onClick={() => onChange(tab)} active={tab === active}>
                    {tab} 
                </Button>
            ))}
        </>
    );
};
请注意 <T,> 中的 dangling ,这修复了编译器的错误并允许使用简单的泛型。
2021-06-09 12:08:09

在解决功能组件之前,我假设原始代码示例缺少 JSX 组件中的泛型,因为我没有看到它传递给IProps接口。IE。:

interface Ab {
  a: number;
  b: number;
}

...

// note passing the type <Ab> which will eventually make it to your IProps<T> interface and cascade the type for listOfData
return (
<CollapsableDataList<Ab>
  collapsed={false}
  listOfData={[{a: 1, b: 2}, {a: 3, c: 4}]}
  ...
/>
)

好的,现在只需稍加努力,您实际上就可以拥有一个带有通用props的功能组件。

你被困在使用“现代”语法,因为它使用了一个对你的通用情况没有用的赋值和箭头函数:

// using this syntax there is no way to pass generic props
const CollapsableDataList: React.FC<IProps> = ({ collapsed, listOfData }) => {
  // logic etc.
  return (
  // JSX output
  );
}

让我们将变量赋值重写为一个很好的旧版本function

// we are now able to to write our function component with generics
function CollapsableDataList<T>({ collapsed, listOfData }: IProps<T> & { children?: React.ReactNode }): React.ReactElement {
  // logic etc.
  return (
  // JSX output
  );
}

children如果组件不使用儿童撑起不是必需的解决方法,但我已经添加它来突出它需要手动重新输入一个事实,React.FC这样做对我们面前。

补充 #1。

如果要将组件导出为 FunctionComponent 并传递 eslint displayName 错误。

你可以这样做。

const yourComponentWithLowerCase: <T>(props: PropsWithChildren<Props<T>>) => ReactElement | null = (props) => {
  // code
}

export const YourComponentWithUpperCase = yourComponentWithLowerCase;
(YourComponentWithUpperCase as FunctionComponent).displayName = 'something'