Skip to content
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

[enhancement]: Type Safety in RTK Query Listener #3951

Open
1 task done
Millu opened this issue Jul 24, 2023 · 0 comments
Open
1 task done

[enhancement]: Type Safety in RTK Query Listener #3951

Millu opened this issue Jul 24, 2023 · 0 comments
Labels
enhancement New feature or request good first issue Good for new contributors

Comments

@Millu
Copy link
Contributor

Millu commented Jul 24, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Contact Details

No response

What should this feature add?

When we use RTK Query in the listener middleware, we'd like to get type safety on actions.

This needs some TypeScript magic, thanks to RTK maintainer on discord:

`type TypeGuard = {
(input: unknown): input is T;
};

type TypeGuardFor<T extends TypeGuard> = T extends TypeGuard
? U
: never;

// in startAppListening
matcher: (
action
): action is TypeGuardFor<
typeof imagesApi.endpoints.listImages.matchFulfilled
> =>
imagesApi.endpoints.listImages.matchFulfilled(action) &&
action.meta.arg.queryCacheKey ===
getListImagesUrl({ categories: IMAGE_CATEGORIES }),`

Alternatives

No response

Aditional Content

No response

@Millu Millu added enhancement New feature or request good first issue Good for new contributors labels Jul 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for new contributors
Projects
None yet
Development

No branches or pull requests

1 participant