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

Vue Query's onPaginationChange has incorrect union type/unexpected behavior, unexpected API, "This expression is not callable. Not all constituents of type "Updater<PaginationState>" are callable" #5305

Open
2 tasks done
braden-w opened this issue Jan 27, 2024 · 1 comment

Comments

@braden-w
Copy link

braden-w commented Jan 27, 2024

TanStack Table version

v8.11.7

Framework/Library version

Vue v3.4.15

Describe the bug and the steps to reproduce it

The onPaginationChange function in useVueTable is typed as OnChangeFn<PaginationState>, but the actual type seems to always be

(updater: (args: PaginationState) => PaginationState) => void

In my the reproduction, you'll see that the printed value for updater is

(old) => {
        let newState = functionalUpdate(updater, old);
        return newState;
      }

if you click a button to update the pagination.

This type, (updater: (args: PaginationState) => PaginationState) => void, is different than its provided unioned definition, and it's causing a type error (could I get some clarification if I'm wrong here?).

The Type Error

If you see the images, I'm getting various Typescript errors in my editor. In my first picture, it insists that my type for onPaginationChange is incorrect, despite me being sure that the implementation is working. In the second picture, when I'm inlining the function, I'm getting "This expression is not callable. Not all constituents of type "Updater" are callable". This seems to be due to the definition of

export type OnChangeFn<T> = (updaterOrValue: Updater<T>) => void;
export type Updater<T> = T | ((old: T) => T)

the Union type of type Updater<T> = T | ((old: T) => T) seems to be causing this constant Typescript error, and I have been unable to resolve it without a Type assertion.

Separate Issue: onPaginationChange type was not what I expected, and the docs compounded this

I expected the onPaginationChange function to have a type

(newPaginationState: PaginationState, oldPaginationState: PaginationState) => void

rather than of type

(updater: (args: PaginationState) => PaginationState) => void

to more closely mimic the style of Vue's watch function.

Instead, I'm calling pagination.value = updatePagination(pagination.value) inside onPaginationChange, which feels somewhat cumbersome and unintuitive.

The ambiguity of current documentation and the naming of the Updater type suggest a more straightforward update mechanism, akin to typical state updates in Vue. This discrepancy between the expected and actual behavior can lead to misunderstandings about how to properly use the onPaginationChange function. In the docs, it is said:

If this function is provided, it will be called when the pagination state changes and you will be expected to manage the state yourself. You can pass the managed state back to the table via the tableOptions.state.pagination option.

This creates ambiguity and potentially misleads new users. More information on how to pass the managed state back in the table would be appreciated (such as showing an example onPaginationChange function.

Your Minimal, Reproducible Example - (Sandbox Highly Recommended)

https://stackblitz.com/edit/tanstack-table-rsbmuy?file=src%2FApp.vue

Screenshots or Videos (Optional)

CleanShot 2024-01-27 at 14 28 56
CleanShot 2024-01-27 at 14 29 22

Do you intend to try to help solve this bug with your own PR?

Maybe, I'll investigate and start debugging

Terms & Code of Conduct

  • I agree to follow this project's Code of Conduct
  • I understand that if my bug cannot be reliable reproduced in a debuggable environment, it will probably not be fixed and this issue may even be closed.
@braden-w braden-w changed the title Vue Query's onPaginationChange has incorrect union type/unexpected behavior, confusing API Vue Query's onPaginationChange has incorrect union type/unexpected behavior, confusing API, "This expression is not callable. Not all constituents of type "Updater<PaginationState>" are callable" Jan 27, 2024
@braden-w braden-w changed the title Vue Query's onPaginationChange has incorrect union type/unexpected behavior, confusing API, "This expression is not callable. Not all constituents of type "Updater<PaginationState>" are callable" Vue Query's onPaginationChange has incorrect union type/unexpected behavior, unexpected API, "This expression is not callable. Not all constituents of type "Updater<PaginationState>" are callable" Jan 27, 2024
@ammuench
Copy link

ammuench commented Mar 7, 2024

+1 to this issue. docs are incredible unclear. @braden-w's solution worked but required me to pass in a ts-ignore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants