@tanstack/react-router 1.131.28 → 1.131.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/llms/rules/guide.js
CHANGED
|
@@ -2256,7 +2256,7 @@ Literally any library that **can return a promise and read/write data** can be i
|
|
|
2256
2256
|
|
|
2257
2257
|
## Using Loaders to ensure data is loaded
|
|
2258
2258
|
|
|
2259
|
-
The easiest way to
|
|
2259
|
+
The easiest way to integrate external caching/data library into Router is to use \`route.loader\`s to ensure that the data required inside of a route has been loaded and is ready to be displayed.
|
|
2260
2260
|
|
|
2261
2261
|
> ⚠️ BUT WHY? It's very important to preload your critical render data in the loader for a few reasons:
|
|
2262
2262
|
>
|
|
@@ -2324,7 +2324,7 @@ export const Route = createFileRoute('/posts')({
|
|
|
2324
2324
|
|
|
2325
2325
|
### Error handling with TanStack Query
|
|
2326
2326
|
|
|
2327
|
-
When an error occurs while using \`suspense\` with \`TanStack Query\`, you
|
|
2327
|
+
When an error occurs while using \`suspense\` with \`TanStack Query\`, you need to let queries know that you want to try again when re-rendering. This can be done by using the \`reset\` function provided by the \`useQueryErrorResetBoundary\` hook. You can invoke this function in an effect as soon as the error component mounts. This will make sure that the query is reset and will try to fetch data again when the route component is rendered again. This will also cover cases where users navigate away from the route instead of clicking the \`retry\` button.
|
|
2328
2328
|
|
|
2329
2329
|
\`\`\`tsx
|
|
2330
2330
|
export const Route = createFileRoute('/')({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-router",
|
|
3
|
-
"version": "1.131.
|
|
3
|
+
"version": "1.131.30",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"tiny-invariant": "^1.3.3",
|
|
81
81
|
"tiny-warning": "^1.0.3",
|
|
82
82
|
"@tanstack/history": "1.131.2",
|
|
83
|
-
"@tanstack/router-core": "1.131.
|
|
83
|
+
"@tanstack/router-core": "1.131.30"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "^6.6.3",
|