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
How to use ValidateLinkOptions to type a React Aria Component MenuItem that uses createLink?
MenuItem component. The docs say to use ValidateLinkOptions when passing link related params...the issue is that createLink returns the actual type of the component instead of converting it to an anchor tag, which means I get DOM event mismatch errors when spreading the props on the "link" such the one below since the original MenuItem component is a div...
Type 'MouseEventHandler<HTMLAnchorElement> | undefined' is not assignable to type 'MouseEventHandler<HTMLDivElement> | undefined'...here is the example i was going off from the docs but combined with RAC and
createLink. And here's a stackblitz playground that uses this code for convenience: https://stackblitz.com/edit/github-utepv35x?file=package.json,src%2Fmain.tsx,src%2Froutes%2Findex.tsx...Router + Query integration // route invalidation
Link navigates using stale param despite the href using the updated param
/projects/$projectId where projectId: 1, which renders link that navigates to /projects/1/members with the same project id param used
2. Navigate to /projects/$projectId where projectId: 2, which renders link that navigates to /projects/1/members, despite the href being /projects/2/members...Migrating from TanStack Router to Start
Scoped view transitions
typesafe pathname?
URL hash manipulation ??
hello from this url http://example.com/page#hello ?...SSR error on build in new project
pnpm dlx create-tsrouter-app@latest my-app --template file-router --tailwind --add-ons shadcn and then ran pnpm run build in it.
I am getting the following error:
```
error during build:...Redirect on Login
Is it possible to access router.buildLocation() in a Server Route?
buildLocation() (or something simillar) on a server route so that I can build a typesafe redirect url?
```
export const Route = createFileRoute("/(api)/api/auth/callback")({
validateSearch: z.object({...Multiple Convex calls on SSR with Clerk auth — 5 calls, one unauthorized on refresh
Eslint rule `@typescript-eslint/no-unsafe-assignment` triggers on `useParams` or `useSearch`
1.132.0-alpha.4 and 1.132.0-alpha.8.
I get the following error:...Couldn't get pendingComponent to render
createServerFn from Start, but I think this is more of a Router question, so I think it fits here.
Anyway. I'm working on a fresh Start project via pnpm create @tanstack/start@latest. I'm still new to the whole Tanstack stack. I'm reading the doc about Data Loading, and in the Showing a pending component section, it is said that pendingComponent will be shown when it takes more than 1 sec for the loader to resolve.
EDIT...Router not building on mac

solid-router have some problem i think it's on cli
Is it possible to access browser QueryClient without passing it as a function parameter?
beforeLoad that I'd like to call to verify permissions and since I'm use Tanstack Query I want to use ensureQueryData so I can utilize browser cache if it exists. I would like to extract the logic in to a function and I was curious if I could access my client without needing to pass it as a function parameter?
```
const hasPermission = async (queryClient: QueryClient, permission: PermissionEnum) => {
// implementation......Random failure of file-based route matches across unrelated folders
Does code-based router works with SSR?
thrown errors in context lifecycle method renders nothing (errorComponent)
context() lifecycle method "hangs" when thrown errors happen, leading to no content being rendered at all. I expect the errorBoundary to show, much like it happens in beforeLoad. Is this intentional?SSG