如何获取嵌套对象的值类型的并集?

huangapple go评论82阅读模式
英文:

How to get union of value types of a nested object?

问题

以下是代码的翻译部分:

  1. 给定这样的对象:
  2. ```ts
  3. const deepNestedObject = {
  4. a: "value",
  5. b: {
  6. c: "nestedvalue",
  7. d: {
  8. e: "deepNestedValue"
  9. }
  10. }
  11. }

如何生成一个联合类型,仅限于边缘的非对象值

  1. type EdgeValueUnion = DeepValueOf<typeof deepNestedObject>; // 应该等同于 "value" | "nestedValue" | "deepNestedValue"

到目前为止,我尝试过这个:

  1. type ValueOf<T> = T[keyof T];
  2. type DeepValueOf<
  3. T extends Record<string, unknown>,
  4. Key = keyof T
  5. > = Key extends string
  6. ? T[Key] extends Record<string, unknown>
  7. ? DeepValueOf<T[Key]>
  8. : ValueOf<T>
  9. : never;

但它还不太对,因为它仍然允许树中的对象值通过。例如:

  1. const edgeValue: EdgeValueUnion = deepNestedObject.b;

示例TS沙箱

  1. <details>
  2. <summary>英文:</summary>
  3. Given an object like this:
  4. ```ts
  5. const deepNestedObject = {
  6. a: &quot;value&quot;,
  7. b: {
  8. c: &quot;nestedvalue&quot;
  9. d: {
  10. e: &quot;deepNestedValue&quot;
  11. }
  12. }
  13. }

How do I generate a union type of specifically only the non-object values at the edge

  1. type EdgeValueUnion = DeepValueOf&lt;typeof deepNestedObject&gt;; // Should equate to &quot;value&quot; | &quot;nestedValue&quot; | &quot;deepNestedValue&quot;

So far I've tried this:

  1. type ValueOf&lt;T&gt; = T[keyof T];
  2. type DeepValueOf&lt;
  3. T extends Record&lt;string, unknown&gt;,
  4. Key = keyof T
  5. &gt; = Key extends string
  6. ? T[Key] extends Record&lt;string, unknown&gt;
  7. ? DeepValueOf&lt;T[Key]&gt;
  8. : ValueOf&lt;T&gt;
  9. : never;

but it's not quite right because it still allows object values in the tree to pass. e.g.

  1. const edgeValue: EdgeValueUnion = deepNestedObject.b;

Sample TS sandbox

答案1

得分: 1

从值中提取所有字符串:

  1. type EdgeValueUnion = Extract<DeepValueOf<typeof deepNestedObject>, string>;

还需要使用 const 断言来确保这些字符串被推断为字面量,而不是通用的 string 类型:

  1. const deepNestedObject = {
  2. a: "value",
  3. b: {
  4. c: "nestedvalue",
  5. d: {
  6. e: "deepNestedValue",
  7. },
  8. },
  9. } as const;

Playground

英文:

Extract all the strings from the values:

  1. type EdgeValueUnion = Extract&lt;DeepValueOf&lt;typeof deepNestedObject&gt;, string&gt;;

You also need a const assertion to make sure the strings are inferred as literals instead of the general string type:

  1. const deepNestedObject = {
  2. a: &quot;value&quot;,
  3. b: {
  4. c: &quot;nestedvalue&quot;,
  5. d: {
  6. e: &quot;deepNestedValue&quot;,
  7. },
  8. },
  9. } as const;

Playground

huangapple
  • 本文由 发表于 2023年3月4日 05:10:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/75631896.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定