react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Separate layouts for dashboard and public routes

Hooks proposal
useNavigatePreload
, it works like useNavigate
, but in 2 steps, first to preload, then to actually navigate.
```tsx
const preload = useNavigatePreload()...Hooks in shared component (useParams, useSearch)
useParams
, useSearch
) from components that could be mounted on multiple routes? I'm thinking of writing custom hooks that take an array of from
instead of a single from
string, but I'd love to know if someone has something better.
The basic problem is something like this:
```tsx
const Shared = () => {...differentiate navigation due to router.navigate vs browser navigation
basepath issue

i know its not the right place
Using url params for state w/ multiple components on a page
?table1SortBy=...&table2SortBy=...
feels weird to me.
Thanks for any guidance....Data Loading and Local Pagination
Can I redirect AND update the router context within beforeLoad?
uninitialized
& initialized
In the beforeLoad
of the __root.tsx
I use TSQuery to get the serverState
and inject it into the router context along with the QueryClient.
...Search Params typings not working as expected
const search = ReportRoute.useSearch();
const search = ReportRoute.useSearch();
search
is typed as any
. The route tree is as below:...Search params on index.route with '/'
TSR imports not working as expected

Can we create a search functionality for searching routes
Detecting a change in path on location change

Is refactoring global React context provider to a loader bad practice?
useUserProfile
.
Does it make sense to refactor this to a loader at root level, and then to access that data from whichever route you're in? Is that bad practice?...Runtime route manipulation (Fog of War)
Sentry setup
Can't find route.router in loader context params.
export const Route = createFileRoute("/playground/edit")({...
How to write the custom hook 'useStateQuery' similar to Nuqs for '@tanstack/react-router'.
useQueryState
hook that is similar in functionality to Nuqs but utilizing @tanstack/react-router
for handling query parameters. The implementation involves a Parser
utility for parsing and stringifying different data types (string, number, boolean) and a hook that syncs state with query parameters.
Here is the current implementation:
```tsx...Tanstack router loader vs. tanstack query
