refinedev / refine

A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.
https://refine.dev
MIT License
27.24k stars 2.09k forks source link

[FEAT] React-Query v5 compatibility #5370

Open bombillazo opened 8 months ago

bombillazo commented 8 months ago

Is your feature request related to a problem? Please describe.

We've created a branch to migrate our application code to RQ v5, but have refrained since Refine uses RQ under the hood and want to avoid breaking any dependencies.

Describe alternatives you've considered

Keep using RQ v4 for the time being.

Additional context

https://tanstack.com/query/v5/docs/react/guides/migrating-to-v5

The migration process is relatively straightforward. They did remove the query callbacks, and the new paradigm for reacting to queries is doing so with useEffect hooks. One can still set global callbacks for queries, which refine uses for the notifications context, so the migration for Refine will likely center around that for their custom useQuery hooks.

They've also standardized the query function signatures only to accept objects. The typing should auto-alert the internal refine code.

Describe the thing to improve

Having the ability to use React Query v5 in our refine project.

BatuhanW commented 8 months ago

Thanks for the issue @bombillazo.

Migration looks straightforward, other than callbacks. @aliemir had the idea of providing these callbacks as a polyfill with the current v4 version of refine.

This means we could still accept queryOptions.onSuccess, onError, etc., and trigger them with useEffect inside our hooks.

bombillazo commented 8 months ago

Yeah! I think that would be the best approach for backward compatibility; in fact, I think (if I remember correctly from the RQ maintainers) that is what RQ is doing internally for those callbacks.

rilrom commented 7 months ago

Would migrating to v5 allow us to take advantage of the react query suspense features?

zernie commented 7 months ago

yea suspense would be great

bombillazo commented 6 months ago

any update on this?

donalffons commented 5 months ago

Just wanted to give my +1 for this request.

(I'm having a "brownfield" project, which is already using react-query@5 and I tried using refine there. It looks like the missing support for the new version of react-query sadly blocks me from adopting refine.)

Also: Huge "thank you" for this fantastic project :slightly_smiling_face:!

zernie commented 5 months ago

@BatuhanW could you please specify what needs to be done in preparation before migration to react-query v5?

BatuhanW commented 5 months ago

Hey @zernie the main refactor should be replacing removed onXXX calbacks with useEffect for notifications in internal logic. Also, since these callbacks might be used by current Refine users, we also need to keep these types and trigger them with useEffect. Other thing is we need to check react-query's new types and make sure there is no breaking change with current Refine types.

We are open to contributions for this issue, if anyone wants to work on this.

bombillazo commented 3 months ago

Was anyone able to look into this? The Refine source is pretty daunting and internally has lots of file/usage of RQ, perhaps identifying where the changes are required will motivate others to take the challenge?

kziemski commented 2 months ago

Curious if this is on roadmap and/or in need of contributors? Haven't seen any mention of it in awhile.

BatuhanW commented 2 months ago

~Hey @kziemski we are open to contributions for this one.~

We've discussed with core team internally, there is no way to do this upgrade without a breaking change in refine v4. If we update react-query to v5, we'll have users both on react-query v4 and v5. We will not release a major Refine version atm, and we also have plans to make react-query (Store provider) agnostic on our next major release. But they aren't clear yet.

kziemski commented 2 months ago

@BatuhanW apologies wasn't expecting such a quick response(s). is agnostic the next major version release or is that not yet determined?

zernie commented 2 months ago

@BatuhanW wait, does that mean it'd be possible to use RTK Query in the future?

BatuhanW commented 2 months ago

We don't want to release this update as a basic version bump, but we want to deeply integrate new features such as suspense, server components into Refine. Things are moving fast nowadays on RSC side. We'll keep you posted in the future.

kziemski commented 2 months ago

And another library becomes infected with RSC. Really was hoping to keep this library as part of my stack. oh well good luck

BatuhanW commented 2 months ago

And another library becomes infected with RSC. Really was hoping to keep this library as part of my stack. oh well good luck

We don't want to enforce anything on users. That's why we are not doing the upgrade at the moment. Even if we support some features, that wouldn't be required or would be opt-in. RSC is controversial topic right now, we'll wait for it to become more mature and see how community positions itself with it.

kziemski commented 2 months ago

I think you're right to hold back. React core's head space is clearly in supporting vercel/nextjs priorities.
Thankfully, this time they tripped over tanner's library. mess with the wrong library and you will incur the wrath of x.

I was just hoping to keep the libraries version in sync as react-query v5 is a dependency but i'll make do. ty for the response.

stale[bot] commented 2 weeks ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

datner commented 3 days ago

Hey, this makes new projects that use pnpm start out broken because of how pnpm treats peers. I'm very interested in seeing this resolved, even if not properly solved, as the current situation is a proper blocker on the whole thing.. I am willing to help if it's a matter of effort, I have some familiarity with the project internals

zernie commented 2 days ago

we also have plans to make react-query

that'd be perfect since we use redux. is there any way to contribute to this effort?