Skip to content

Commit 18b6f33

Browse files
EmmanuelRouxAndrewKushnir
authored andcommittedOct 22, 2024
fix(forms): fix FormRecord type inference (#50750)
Updates type inference in `ɵElement` to make `FormRecord` take precedence over `FormGroup` PR Close #50750
1 parent 9762b24 commit 18b6f33

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed
 

‎packages/forms/src/form_builder.ts

+16-12
Original file line numberDiff line numberDiff line change
@@ -75,24 +75,28 @@ export type ɵElement<T, N extends null> =
7575
// through the distributive conditional type. This is the officially recommended solution:
7676
// https://www.typescriptlang.org/docs/handbook/2/conditional-types.html#distributive-conditional-types
7777
//
78+
// Note: Because `FormRecord` implementation extends `FormGroup`, it must be checked BEFORE `FormGroup`
79+
// in the following clauses (otherwise it may incorrectly be inferred to `FormGroup`).
80+
//
81+
//
7882
// Identify FormControl container types.
7983
[T] extends [FormControl<infer U>]
8084
? FormControl<U>
8185
: // Or FormControl containers that are optional in their parent group.
8286
[T] extends [FormControl<infer U> | undefined]
8387
? FormControl<U>
84-
: // FormGroup containers.
85-
[T] extends [FormGroup<infer U>]
86-
? FormGroup<U>
87-
: // Optional FormGroup containers.
88-
[T] extends [FormGroup<infer U> | undefined]
89-
? FormGroup<U>
90-
: // FormRecord containers.
91-
[T] extends [FormRecord<infer U>]
92-
? FormRecord<U>
93-
: // Optional FormRecord containers.
94-
[T] extends [FormRecord<infer U> | undefined]
95-
? FormRecord<U>
88+
: // FormRecord containers.
89+
[T] extends [FormRecord<infer U>]
90+
? FormRecord<U>
91+
: // Optional FormRecord containers.
92+
[T] extends [FormRecord<infer U> | undefined]
93+
? FormRecord<U>
94+
: // FormGroup containers.
95+
[T] extends [FormGroup<infer U>]
96+
? FormGroup<U>
97+
: // Optional FormGroup containers.
98+
[T] extends [FormGroup<infer U> | undefined]
99+
? FormGroup<U>
96100
: // FormArray containers.
97101
[T] extends [FormArray<infer U>]
98102
? FormArray<U>

0 commit comments

Comments
 (0)
Please sign in to comment.