好的 - 所以我已经设法让它工作了。当前的解决方案满足了我的两个关键要求:
推断defaultProps
正在包装的子组件是否存在,这意味着由 HoC 包装器生成的组件不需要显式传递它们。
公开 HoC 包装器属性和底层子组件属性的联合,以便 Intellisense 显示包装组件上的所有可用属性。
在我试图简化实际发生的事情的过程中,withHoC
函数预期的类型是硬编码的(在我的例子中react-select
),所以withHoC
包装器只接受一个react-select
Select
要包装的组件。其他任何事情都可能会引发类型错误。
此链接描述了一些代码,这些代码可能能够自动推断要包装的组件的类型withHoC
,从而可以withHoC
与react-select's
Select
.
// node dependencies used (because dependencies mutate so much this may not work in other versions):
// "react": "^16.8.2",
// "react-dom": "^16.8.2",
// "typescript": "^3.3.3",
// "react-select": "2.4.1",
// "@types/react": "^16.8.3",
// "@types/react-dom": "^16.8.2",
// "@types/react-select": "^2.0.13",
// Visual Studio 2017 TypeScript SDK build 3.3.3
import ReactDOM from "react-dom"; // (Optional - just for testing)
import React from "react";
import Select from "react-select";
// Properties shape for React Select (See react-select @type definitions)
import { Props } from "react-select/lib/Select";
// The properties we are want to add so that our resultant wrapped component contains all of its own properties plus the extra properties specified here
interface IHOCProps {
bar: string;
}
function withHoC(WrappedComponent: React.ComponentType<Props>) {
return class SomeHOC extends React.Component<IHOCProps & Props> {
// If 'bar' isn't specified, configure a default (this section is optional)
static defaultProps = {
bar: "default bar"
};
public render(): JSX.Element {
return <><div>{this.props.bar}</div><WrappedComponent {...this.props as any} /></>;
}
};
}
const WrappedSelect = withHoC(Select);
export { WrappedSelect, Select };
// Test it out (Optional). If using Visual Studio 2017 or some other IDE with intellisense,
// <WrappedSelect /> should show all the 'react-select' properties and the HoC property (bar).
// Additionally, all the defaultProps for 'react-select' are automatically inferred so no TypeScript errors about missing props when using <WrappedSelect />.
const TestMe = () =>
<>
<WrappedSelect bar="bumble monkey">
<WrappedSelect />
<Select />
</>;
// Append the result to an HTML document body element
ReactDOM.render(<TestMe />,document.getElementsByTagName("body")[0]);
因为它不能跨类型重复使用,但它确实有效。
最后一块金块;如果您使用 Visual Studio 2017 和 Node for TypeScript,请确保 TypeScript SDK 版本与您的 npm 节点包同步,否则 IDE 可能会报告在进行命令行编译时不会出现的错误(这导致我没有尽头的红鲱鱼问题)。
Microsoft 发布了这个 Url,它不经常更新并且可能已经过时,但公司中没有人注意到。
最新的 SDK 总是可以在 GitHub 上找到,它通常总是与 npm 和 nuget 包一起发布。