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

perf(vue-query): use shallowRef instead of ref #6657

Merged
merged 6 commits into from
Jan 12, 2024

Conversation

TheAlexLichter
Copy link
Contributor

When only replacing the whole ref and not changing nested values, shallowRef allows performance improvements. More details in the Vue docs and my video.

This comes especially handy when using data fetching.

(PS: This comment was suggesting this PR, so here I am 😂)

Copy link

vercel bot commented Jan 6, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
query ⬜️ Ignored (Inspect) Visit Preview Jan 12, 2024 11:30pm

@TheAlexLichter TheAlexLichter changed the title perf(vue-query): shallowRef instead of ref perf(vue-query): use shallowRef instead of ref Jan 6, 2024
Copy link

codesandbox-ci bot commented Jan 6, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit 9d4862e:

Sandbox Source
@tanstack/query-example-angular-basic Configuration
@tanstack/query-example-react-basic-typescript Configuration
@tanstack/query-example-solid-basic-typescript Configuration
@tanstack/query-example-svelte-basic Configuration
@tanstack/query-example-vue-basic Configuration

Copy link

nx-cloud bot commented Jan 8, 2024

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 9d4862e. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 1 target

Sent with 💌 from NxCloud.

@codecov-commenter
Copy link

codecov-commenter commented Jan 12, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (58fe2eb) 0.00% compared to head (9d4862e) 70.81%.

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff            @@
##           main    #6657       +/-   ##
=========================================
+ Coverage      0   70.81%   +70.81%     
=========================================
  Files         0       18       +18     
  Lines         0      442      +442     
  Branches      0      113      +113     
=========================================
+ Hits          0      313      +313     
- Misses        0       99       +99     
- Partials      0       30       +30     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@DamianOsipiuk DamianOsipiuk merged commit 61142a0 into TanStack:main Jan 12, 2024
@TheAlexLichter TheAlexLichter deleted the perf/use-shallow-ref branch January 13, 2024 00:14
@GabrielHangor
Copy link

@manniL Hey Alexander, so what about this feature, has it been implemented? I dont see it anywhere in the docs or how to use that

@TheAlexLichter
Copy link
Contributor Author

@GabrielHangor Hey! It is an under-the-hood improvement and "just works" ☺️

@GabrielHangor
Copy link

@manniL so by default it returns shallowRef as data via the useQuery? What if i need my data deeply reactive - wrapped in a ref as it used to be....

@GabrielHangor
Copy link

I can see the changes in the useQueries hook but it seems that useQuery still using plain ref. Since useQuery is the most popular tool i guess it might be a good addition to add some kind of a toggle to return data wrapped in a shallowRef instead of ref...imagine having thousands of of records in api response in some data-heavy apps...lots of memory

@n0099
Copy link

n0099 commented Jun 24, 2024

How about useInfiniteQuery()?

n0099 added a commit to n0099/open-tbm that referenced this pull request Jun 25, 2024
…to fix the timing of query cannot get the `fetchedPage` as route hasn't changed at that time

+ `queryStartedAtSSR` & `isQueriedBySSR` to fix not timing from the point of fetch started while SSR
* rename variable `startTime` to `queryStartedAt`, const `isCached` to `isQueryCached`, `(network|render)Time` to `-Duration`
- ref `isRouteNewQuery` as moved scrolling to top from watcher of query timing to waterch of route
@ pages/posts.vue

* fix ref of `data.pages` fetched from `useInfiniteQuery()` may contain nesting refs at root level: TanStack/query#6657 @ `<RendererList>`
* using media query in css instead of js before hydrate like 9603faf for noscript user @ `<PostNav>`

* partial revert 8283197 as only scroll to `savedPosition` when it's not scrolling to top
* fix regression of `isPathsFirstDirectorySame()` from d5fcc95
@ app/router.options.ts
@ fe
@n0099
Copy link

n0099 commented Sep 8, 2024

#7733

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

Successfully merging this pull request may close these issues.

5 participants