-
-
Notifications
You must be signed in to change notification settings - Fork 548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add SetRequiredDeep
type
#939
base: main
Are you sure you want to change the base?
Conversation
Can this feature be added on @sindresorhus how about you think? |
The problem with doing both shallow and deep in a single method is that the deep logic affects the performance even if you don't need deep. This was the case for |
1c4f238
to
e3c2874
Compare
Need to resolve all conversation |
Done |
e3c2874
to
40ad558
Compare
@sindresorhus @hugomartinet I'll have a look at your PR later today or tomorrow |
test-d/set-required-deep.ts
Outdated
|
||
// Set nested key to required | ||
declare const variation1: SetRequiredDeep<{a?: number; b?: {c?: string}}, 'b.c'>; | ||
expectType<{a?: number; b: {c: string}}>(variation1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You haven't specified 'b' | 'b.c'
, therefore the expected behaviour should be expectType<{a?: number; b?: {c: string}}>(variation1);
(b is still optional)
Same below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this remark. I actually did this on purpose, in my mind I thought that this is what we want.
Since SetRequired<..., 'b.c'>
would mean that we want b.c
to always be defined, hence we also need b
to always be defined. Do you disagree ?
The reason is that I thought it would be fastidious when having nested objects with many levels. Writing SetRequired<..., 'a.b.${number}.c'>
is lighter than writing SetRequired<..., 'a' | 'a.b' | 'a.b.${number}' | 'a.b.${number}.c'>
.
What do you think ? If you're confident on making only the nested key required I can work on that again 😀
test-d/set-required-deep.ts
Outdated
|
||
// Set key inside array to required | ||
declare const variation7: SetRequiredDeep<{a?: Array<{b?: number}>}, `a.${number}.b`>; | ||
expectType<{a: Array<{b: number}>}>(variation7); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar here (and below), the only required path `a.${number}.b`
is specified, not 'a' | `a.${number}.b`
, therefore the expected behaviour should be expectType<{a?: Array<{b: number}>}>(variation7);
@hugomartinet I left my thoughts, I don't think it's ready because of a bug in the implementation (specified in my 2 comments where exactly), but I will leave it up to you (cc @sindresorhus) |
d76a9ca
to
51ec78e
Compare
@Beraliv I pushed a correction, I think I managed to take into account the expected behaviour you mentioned, thanks for pointing it out! |
Closes #796
This pull request adds a new
SetRequiredDeep
which, likeSetRequired
, allows to make one or several keys in a model required. It adds the possibility to select nested keys by specifying their path.Example