Skip to content

Commit db89d9c

Browse files
committedAug 29, 2022
PartialDeep: Make the recurseIntoArrays option false by default
1 parent a7f367d commit db89d9c

File tree

2 files changed

+17
-19
lines changed

2 files changed

+17
-19
lines changed
 

‎source/partial-deep.d.ts

+6-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type PartialDeepOptions = {
77
/**
88
Whether to affect the individual elements of arrays and tuples.
99
10-
@default true
10+
@default false
1111
*/
1212
readonly recurseIntoArrays?: boolean;
1313
};
@@ -40,7 +40,7 @@ const applySavedSettings = (savedSettings: PartialDeep<Settings>) => {
4040
settings = applySavedSettings({textEditor: {fontWeight: 500}});
4141
```
4242
43-
By default, this also affects array and tuple types:
43+
By default, this does not affect elements in array and tuple types. You can change this by passing `{recurseIntoArrays: true}` as the second type argument:
4444
4545
```
4646
import type {PartialDeep} from 'type-fest';
@@ -49,13 +49,11 @@ interface Settings {
4949
languages: string[];
5050
}
5151
52-
const partialSettings: PartialDeep<Settings> = {
52+
const partialSettings: PartialDeep<Settings, {recurseIntoArrays: true}> = {
5353
languages: [undefined]
5454
};
5555
```
5656
57-
If this is undesirable, you can pass `{recurseIntoArrays: false}` as the second type argument.
58-
5957
@category Object
6058
@category Array
6159
@category Set
@@ -75,13 +73,13 @@ export type PartialDeep<T, Options extends PartialDeepOptions = {}> = T extends
7573
? T | undefined
7674
: T extends object
7775
? T extends ReadonlyArray<infer ItemType> // Test for arrays/tuples, per https://github.com/microsoft/TypeScript/issues/35156
78-
? Options['recurseIntoArrays'] extends false // If they opt out of array testing, just use the original type
79-
? T
80-
: ItemType[] extends T // Test for arrays (non-tuples) specifically
76+
? Options['recurseIntoArrays'] extends true
77+
? ItemType[] extends T // Test for arrays (non-tuples) specifically
8178
? readonly ItemType[] extends T // Differentiate readonly and mutable arrays
8279
? ReadonlyArray<PartialDeep<ItemType | undefined, Options>>
8380
: Array<PartialDeep<ItemType | undefined, Options>>
8481
: PartialObjectDeep<T, Options> // Tuples behave properly
82+
: T // If they don't opt into array testing, just use the original type
8583
: PartialObjectDeep<T, Options>
8684
: unknown;
8785

‎test-d/partial-deep.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ const foo = {
2525
},
2626
};
2727

28-
let partialDeepFoo: PartialDeep<typeof foo> = foo;
28+
let partialDeepFoo: PartialDeep<typeof foo, {recurseIntoArrays: true}> = foo;
2929

3030
expectError(expectType<Partial<typeof foo>>(partialDeepFoo));
31-
const partialDeepBar: PartialDeep<typeof foo.bar> = foo.bar;
31+
const partialDeepBar: PartialDeep<typeof foo.bar, {recurseIntoArrays: true}> = foo.bar;
3232
expectType<typeof partialDeepBar | undefined>(partialDeepFoo.bar);
3333
expectType<((_: string) => void) | undefined>(partialDeepFoo.bar!.function);
3434
expectAssignable<object | undefined>(partialDeepFoo.bar!.object);
@@ -54,20 +54,20 @@ partialDeepFoo = {bar: {string: 'waldo'}};
5454
partialDeepFoo = {bar: {date: new Date()}};
5555
// Check that recursive array evalution isn't infinite depth
5656
type Recurse =
57-
| string
58-
| number
59-
| boolean
60-
| null
61-
| Record<string, Recurse[]>
62-
| Recurse[];
57+
| string
58+
| number
59+
| boolean
60+
| null
61+
| Record<string, Recurse[]>
62+
| Recurse[];
6363
type RecurseObject = {value: Recurse};
6464
const recurseObject: RecurseObject = {value: null};
6565
expectAssignable<PartialDeep<RecurseObject>>(recurseObject);
6666

67-
// Check that recurseIntoArrays: true is the default
67+
// Check that `{recurseIntoArrays: false}` is the default
68+
const partialDeepNoRecurseIntoArraysFoo: PartialDeep<typeof foo> = foo;
69+
// Check that `{recurseIntoArrays: true}` behaves as intended
6870
expectType<PartialDeep<typeof foo, {recurseIntoArrays: true}>>(partialDeepFoo);
69-
// Check that recurseIntoArrays: false behaves as expected
70-
const partialDeepNoRecurseIntoArraysFoo: PartialDeep<typeof foo, {recurseIntoArrays: false}> = foo;
7171
// These are mostly the same checks as before, but the array/tuple types are different.
7272
expectError(expectType<Partial<typeof foo>>(partialDeepNoRecurseIntoArraysFoo));
7373
const partialDeepNoRecurseIntoArraysBar: PartialDeep<typeof foo.bar, {recurseIntoArrays: false}> = foo.bar;

0 commit comments

Comments
 (0)
Please sign in to comment.