TypeScript:从有区别的联合派生地图

时间:2018-05-02 01:14:48

标签: typescript discriminated-union

我有一个区分联合类型,它根据字符串文字字段区分类型。我想派生一个映射类型,它将联合中的所有类型映射到它们对应的鉴别器文字值。

e.g。

export type Fetch = {
    type: 'fetch',
    dataType: string
};

export type Fetched<T> = {
    type: 'fetched',
    value: T
};

// union type discriminated on 'type' property
export type Action =
    | Fetch
    | Fetched<Product>;

// This produces a type 'fetch' | 'fetched'
// from the type 
type Actions = Action['type'];

// I want to produce a map type of the discriminator values to the types 
// comprising the union type but in an automated fashion similar to how I
// derived my Actions type.
// e.g.
type WhatIWant = {
    fetch: Fetch,
    fetched: Fetched<Product>
}

这在TypeScript中是否可行?

1 个答案:

答案 0 :(得分:10)

通过在TypeScript 2.8中引入conditional types,您可以定义一个类型函数,给定一个有区别的联合以及判别式的键和值,它会产生联合的单个相关成分:

type DiscriminateUnion<T, K extends keyof T, V extends T[K]> = 
  T extends Record<K, V> ? T : never

如果您想使用它来构建地图,您也可以这样做:

type MapDiscriminatedUnion<T extends Record<K, string>, K extends keyof T> =
  { [V in T[K]]: DiscriminateUnion<T, K, V> };

所以在你的情况下,

type WhatIWant = MapDiscriminatedUnion<Action, 'type'>;

,如果你检查它,是:

type WhatIWant = {
  fetch: {
    type: "fetch";
    dataType: string;
  };
  fetched: {
    type: "fetched";
    value: Product;
  };
}
我认为,按照需要。希望有所帮助;祝你好运!