Preface: The official documentation of This translation is compiled from the "Mapped Types" chapter in the TypeScript Handbook. This article is not strictly translated according to the original text, and some explanations and supplements are also provided. 1. Mapped TypesSometimes, a type needs to be based on another type, but you don't want to make a copy. In this case, you can consider using a mapping type. Mapping types are based on the syntax of index signatures. Let's review the index signatures first: // When you need to declare the type of the property in advance type OnlyBoolsAndHorses = { [key: string]: boolean | Horse; }; const conforms: OnlyBoolsAndHorses = { del: true, rodney: false, }; The mapping type is a generic type that uses type OptionsFlags<Type> = { [Property in keyof Type]: boolean; }; In this example, type FeatureFlags = { darkMode: () => void; newUserProfile: () => void; }; type FeatureOptions = OptionsFlags<FeatureFlags>; // type FeatureOptions = { // darkMode: boolean; // newUserProfile: boolean; // } 2. Mapping ModifiersWhen using a mapped type, there are two additional modifiers that may be used, one is readonly, which is used to set the property to be read-only, and the other is?, which is used to set the property to be optional. You can remove or add these modifiers by prefixing them with - or +. If no prefix is given, it is equivalent to using the + prefix. // Delete the read-only attribute type in the attribute CreateMutable<Type> = { -readonly [Property in keyof Type]: Type[Property]; }; type LockedAccount = { readonly id: string; readonly name: string; }; type UnlockedAccount = CreateMutable<LockedAccount>; // type UnlockedAccount = { // id: string; // name: string; // } // Delete the optional attribute type in the attribute Concrete<Type> = { [Property in keyof Type]-?: Type[Property]; }; type MaybeUser = { id: string; name?: string; age?: number; }; type User = Concrete<MaybeUser>; // type User = { // id: string; // name: string; //age: number; // } 3. Key Remapping via as In type MappedTypeWithNewProperties<Type> = { [Properties in keyof Type as NewKeyType]: Type[Properties] } For example, you can use Template Literal Types to create a new property name based on a previous property name: type Getters<Type> = { [Property in keyof Type as `get${Capitalize<string & Property>}`]: () => Type[Property] }; interface Person { name: string; age: number; location: string; } type LazyPerson = Getters<Person>; // type LazyPerson = { // getName: () => string; // getAge: () => number; // getLocation: () => string; // } You can also use the conditional type to return a never to filter out certain attributes: // Remove the 'kind' property type RemoveKindField<Type> = { [Property in keyof Type as Exclude<Property, "kind">]: Type[Property] }; interface Circle { kind: "circle"; radius: number; } type KindlessCircle = RemoveKindField<Circle>; // type KindlessCircle = { // radius: number; // } You can also iterate over any union type, not just type EventConfig<Events extends { kind: string }> = { [E in Events as E["kind"]]: (event: E) => void; } type SquareEvent = { kind: "square", x: number, y: number }; type CircleEvent = { kind: "circle", radius: number }; type Config = EventConfig<SquareEvent | CircleEvent> // type Config = { // square: (event: SquareEvent) => void; // circle: (event: CircleEvent) => void; // } 4. Further ExplorationMapping types can also be used with other functions. For example, this is a mapping type that uses conditional types and returns true or false depending on whether the object has a pii attribute: type ExtractPII<Type> = { [Property in keyof Type]: Type[Property] extends { pii: true } ? true : false; }; type DBFields = { id: { format: "incrementing" }; name: { type: string; pii: true }; }; type ObjectsNeedingGDPRDeletion = ExtractPII<DBFields>; // type ObjectsNeedingGDPRDeletion = { // id: false; // name: true; // } You may also be interested in:
|
<<: Detailed process of upgrading gcc (version 10.2.0) under CentOS7 environment
>>: How to display web pages properly in various resolutions and browsers
1. Add the following code to http{} in nginx.conf...
Copy code The code is as follows: <select> ...
1. Download address https://dev.mysql.com/downloa...
js realizes the special effect of clicking and dr...
Preface I just started learning MySQL and downloa...
1. Official website address The official website ...
Preface Recently, I encountered a program using S...
This article shares the specific code of jQuery t...
This article example shares the specific code of ...
I installed IE8 today. When I went to the Microso...
1. What is Docker Secret 1. Scenario display We k...
This is my first blog. It’s about when I started ...
01. Command Overview The paste command will merge...
The road ahead is always so difficult and full of...
Enable WSL Make sure the system is Windows 10 200...