Mastering TypeScript: Looping with Types

Alexander Opalic - Jan 1 - - Dev Community

Introduction

Loops play a pivotal role in programming, enabling code execution without redundancy. JavaScript developers might be familiar with foreach or do...while loops, but TypeScript offers its own unique looping capabilities at the type level. This blog post delves into three advanced TypeScript looping techniques, demonstrating their importance and utility.

Mapped Types

Mapped Types in TypeScript allow transformation of object properties. Consider an object requiring immutable properties:

type User = { 
  id: string, 
  email: string, 
  age: number 
};
Enter fullscreen mode Exit fullscreen mode

To create an immutable version of this type, we traditionally hardcode it. However, to maintain adaptability with the original type, Mapped Types come into play. They use generics to map each property, offering flexibility to modify property characteristics. For instance:

type ReadonlyUser<T> = {
  readonly [P in keyof T]: T[P];
};
Enter fullscreen mode Exit fullscreen mode

This technique is extensible. For example, adding nullability:

type Nullable<T> = {
  [P in keyof T]: T[P] | null;
};
Enter fullscreen mode Exit fullscreen mode

Or filtering out certain types:

type ExcludeStrings<T> = {
  [P in keyof T as T[P] extends string ? never : P]: T[P];
};
Enter fullscreen mode Exit fullscreen mode

Understanding the core concept of Mapped Types opens doors to creating diverse, reusable types.

Recursion

Recursion is a cornerstone in TypeScript's type-level programming, especially since state mutation is not an option. Consider applying immutability to all nested properties:

type DeepReadonly<T> = {
  readonly [P in keyof T]: T[P] extends object ? DeepReadonly<T[P]> : T[P];
};
Enter fullscreen mode Exit fullscreen mode

Here, TypeScript's compiler recursively ensures every property is immutable, demonstrating the language's depth in handling complex types.

Union Types

Union Types represent a set of distinct types, such as:

type Status = 'Failure' | 'Success';
Enter fullscreen mode Exit fullscreen mode

Creating structured types from unions involves looping over each union member. For instance, constructing a type where each status is an object:

type StatusObject = Status extends infer S ? { status: S } : never;
Enter fullscreen mode Exit fullscreen mode

Conclusion

TypeScript's advanced type system transcends static type checking, providing sophisticated tools for type transformation and manipulation. Mapped Types, Recursion, and Union Types are not mere features but powerful instruments that enhance code maintainability, type safety, and expressiveness. These techniques underscore TypeScript's capability to elegantly handle complex programming scenarios, affirming its status as more than a JavaScript superset but a language that enriches our development experience.


Enjoyed this post? Follow me on X for more Vue and TypeScript content:

@AlexanderOpalic

. . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player