gpt4 book ai didi

reactjs - typescript - 如何结合联合和交集类型

转载 作者:行者123 更新时间:2023-12-03 14:15:00 24 4
gpt4 key购买 nike

我有以下组件:

export enum Tags {
button = 'button',
a = 'a',
input = 'input',
}

type ButtonProps = {
tag: Tags.button;
} & ({ a?: string; b?: undefined } | { a?: undefined; b?: string }) &
JSX.IntrinsicElements['button'];

type AnchorProps = {
tag: Tags.a;
} & ({ a?: string; b?: undefined } | { a?: undefined; b?: string }) &
JSX.IntrinsicElements['a'];

type InputProps = {
tag: Tags.input;
} & ({ a?: string; b?: undefined } | { a?: undefined; b?: string }) &
JSX.IntrinsicElements['input'];

type Props = ButtonProps | AnchorProps | InputProps;

const Button: React.FC<Props> = ({ children, tag }) => {
if (tag === Tags.button) {
return <button>{children}</button>;
}
if (tag === Tags.a) {
return <a href="#">{children}</a>;
}
if (tag === Tags.input) {
return <input type="button" />;
}
return null;
};

// In this instance the `href` should create a TS error but doesn't...
<Button tag={Tags.button} href="#">Click me</Button>

// ... however this does
<Button tag={Tags.button} href="#" a="foo">Click me</Button>

为了能够提出这个问题,这已经被剥离了一点。关键是我正在尝试一个有区别的联合以及交叉点类型。我正在尝试根据标签值实现所需的 Prop 。所以如果 Tags.button然后使用 JSX 的按钮属性(上面示例中的 href 应该会产生错误,因为它在 button 元素上是不允许的) - 但是另一个复杂性是我想要 ab可以使用,但它们不能一起使用 - 因此是交叉类型。

我在这里做错了什么,为什么在添加 a 时类型只能按预期工作或 b属性(property)?

更新

我添加了一个带有示例的操场,以显示它何时应该出错以及何时应该编译。

playground

最佳答案

在您的示例中,有两个问题必须解决,并且都源于相同的“问题”(功能)。

在 Typescript 中,以下内容并不像我们有时想要的那样工作:

interface A {
a?: string;
}

interface B {
b?: string;
}

const x: A|B = {a: 'a', b: 'b'}; //works

您想要的是从 A 中明确排除 B,从 B 中排除 A - 这样它们就不能一起出现。

This question讨论类型的“异或”,并建议使用包 ts-xor ,或者自己写。这是来自那里的答案的示例(在 ts-xor 中使用了相同的代码):

type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never };
type XOR<T, U> = (T | U) extends object ? (Without<T, U> & U) | (Without<U, T> & T) : T | U;

现在,有了这个,我们终于可以解决您的问题:

interface A {
a?: string;
}

interface B {
b?: string;
}

interface C {
c?: string;
}

type CombinationProps = XOR<XOR<A, B>, C>;

let c: CombinationProps;
c = {}
c = {a: 'a'}
c = {b: 'b'}
c = {c: 'c'}
c = {a: 'a', b: 'b'} // error
c = {b: 'b', c: 'c'} // error
c = {a: 'a', c: 'c'} // error
c = {a: 'a', b: 'b', c: 'c'} // error

更具体地说,您的类型将是:

interface A {a?: string;}
interface B {b?: string;}

type CombinationProps = XOR<A, B>;

type ButtonProps = {tag: Tags.button} & JSX.IntrinsicElements['button'];
type AnchorProps = {tag: Tags.a} & JSX.IntrinsicElements['a'];
type InputProps = {tag: Tags.input} & JSX.IntrinsicElements['input'];

type Props = CombinationProps & XOR<XOR<ButtonProps,AnchorProps>, InputProps>;

关于reactjs - typescript - 如何结合联合和交集类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61983980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com