-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
Support for co-dependently conditionally typed arguments #35873
Comments
Possible duplicate of #30581. The main issue here seems to be that the compiler is unable to deal with the correlated nature of the two arguments to the function separately. Here's how I would translate the example JS into TS without involving numeric enums, generics, or type assertions. It packages the separate arguments into a single rest argument of a discriminated union tuple type in order to sidestep the correlated variable issue, but it would be nice if such repackaging weren't necessary.: type ReducerArgs = ["add", { a: number, b: number }] |
["concat", { firstArr: any[], secondArr: any[] }];
function reducer(...args: ReducerArgs) {
switch (args[0]) {
case "add":
console.log(args[1].a + args[1].b);
break;
case "concat":
console.log(args[1].firstArr.concat(args[1].secondArr));
break;
}
}
reducer("add", { a: 1, b: 3 }); // 4
reducer("concat", { firstArr: [1, 2], secondArr: [3, 4] }); // [1,2,3,4] |
#33014 is related. Another solution is type ReducerArgs = {
"add": { a: number, b: number };
"concat": { firstArr: any[], secondArr: any[] }
}
declare function reducer<T extends keyof ReducerArgs>(arg: T, key: ReducerArgs[T]): void;
reducer("add", { a: 1, b: 3 }); // 4
reducer("concat", { firstArr: [1, 2], secondArr: [3, 4] }); |
Search Terms
Suggestion
It should be easier to conditionally type a function argument based on the type/value (in the case of enums / string literal types) of a previous argument in the function. Having a more specific way to do this than currently possible should improve editor intelligence and performance.
Use Cases
It is quite common to have an API where the type of the second argument depends on the type and/or value of the first. For example, take a look at the following JavaScript code. (It's a fairly trivial example, but it should illustrate the use case.
It is currently possible to type this, but it is extremely convulted and the editor somewhat struggles to understand this at the call site. This method is based on the fantastic article over at https://artsy.github.io/blog/2018/11/21/conditional-types-in-typescript/
There are four main issues with this approach.
The first, fairly obvious one, is that for the type checker to understand that type of args inside the switch, we're having to merge the two arguments into a single object, cast it, and then switch based on that:
This is an example of the type system leaking into the emitted javascript and is arguably inefficient.
The second is that the editor doesn't really understand what's going on. It understands enough to tell you you've made an error when the type check doesn't validate but also doesn't understand well enough to properly autocomplete. The error could also be easier to understand. See below.
See above how it's suggesting firstArr and secondArr as fields in the second object, even though including them fails the type checker. The only suggestions should be a & b.
The third issue is that it's entirely undiscoverable for all but the most advanced in TypeScript. This is a semi-common use case, and I had no idea how to properly type it. Without this singular article detailing this approach, I never would have discovered it. This should be built into the language to fix this.
Fourthly, and similarly, it's very difficult to read and understand unless you really, really understand generics. I am sure that somebody smarter than I would be able to come up with a more expressive way of detailing the co-dependence of these two types.
Examples
I think I've properly explained this in the use case above.
Checklist
My suggestion meets these guidelines:
The text was updated successfully, but these errors were encountered: