给出以下使用generic type arguments的类型化React组件,我该如何将其包装在React的新forwardRef
API中?
type Props<T> = {
forwardedRef?: Ref<HTMLInputElement>
...
}
class GenericComponent<T> extends Component<Props<T>> {
...
}
const ComponentWithRef = forwardRef<HTMLInputElement, Props<T>>((props, ref) => (
<StringInput<T> {...props} forwardedRef={ref} />
))
上述方法无法定义T
泛型。
答案 0 :(得分:0)
因此,为了扩大问题范围,这实际上是关于在更高阶函数中保留泛型类型的问题。 forwardRef
的以下用法将正确地进行类型检查(在3.0.1
中)
const SelectWithRef = forwardRef(<Option extends string>(props: Props<Option>, ref?: Ref<HTMLSelectElement>) =>
<Select<Option> {...props} forwardedRef={ref} />);
但是,Option
泛型会立即解析为string
,而不是保留为泛型。因此,以下内容不会进行类型检查
const onChange: (value: 'one' | 'two') => void = (value) => console.log(value);
<SelectWithRef<'one' | 'two'>
^^^^^^^^^^^^^^^ [ts] Expected 0 type arguments, but got 1
value="a"
options={['one', 'two']}
onChange={onChange}
^^^^^^^^^^ [ts] Type 'string' is not assignable to type '"one" | "two"'
/>
相关问题已在this Typescript issue ticket中进行了跟踪。