jaacsen
jaacsen
TtRPC
Created by jaacsen on 7/9/2024 in #❓-help
multiple subscriptions in client side causing latency and failing to reload/redirect
jus the title
14 replies
TtRPC
Created by jaacsen on 7/2/2024 in #❓-help
Subscription error: TRPCClientError: Subscriptions should use wsLink
this is my trpc client:
export const trpc = createTRPCNext<AppRouter>({
/**
* @link https://trpc.io/docs/v11/ssr
*/
// ssr: true,
// ssrPrepass,
ssr: false,
config({ ctx }) {
/**
* If you want to use SSR, you need to use the server's full URL
* @link https://trpc.io/docs/v11/ssr
*/

return {
/**
* @link https://trpc.io/docs/v11/client/links
*/
links: [
// adds pretty logs to your console in development and logs errors in production
loggerLink({
enabled: opts =>
(process.env.NODE_ENV === 'development' && typeof window !== 'undefined') ||
(opts.direction === 'down' && opts.result instanceof Error)
}),
splitLink({
condition: op => {
return op.type === 'subscription'
},
true: wsLink({
client: createWSClient({
url: 'ws://localhost:3001'
})
}),
false: httpBatchLink({
transformer: superjson,
url: `http://localhost:3000/api/trpc`
})
})
],
/**
* @link https://tanstack.com/query/v5/docs/reference/QueryClient
*/
queryClientConfig: { defaultOptions: { queries: { staleTime: 60 } } }
}
},
/**
* @link https://trpc.io/docs/v11/data-transformers
*/
transformer: superjson
})
export const trpc = createTRPCNext<AppRouter>({
/**
* @link https://trpc.io/docs/v11/ssr
*/
// ssr: true,
// ssrPrepass,
ssr: false,
config({ ctx }) {
/**
* If you want to use SSR, you need to use the server's full URL
* @link https://trpc.io/docs/v11/ssr
*/

return {
/**
* @link https://trpc.io/docs/v11/client/links
*/
links: [
// adds pretty logs to your console in development and logs errors in production
loggerLink({
enabled: opts =>
(process.env.NODE_ENV === 'development' && typeof window !== 'undefined') ||
(opts.direction === 'down' && opts.result instanceof Error)
}),
splitLink({
condition: op => {
return op.type === 'subscription'
},
true: wsLink({
client: createWSClient({
url: 'ws://localhost:3001'
})
}),
false: httpBatchLink({
transformer: superjson,
url: `http://localhost:3000/api/trpc`
})
})
],
/**
* @link https://tanstack.com/query/v5/docs/reference/QueryClient
*/
queryClientConfig: { defaultOptions: { queries: { staleTime: 60 } } }
}
},
/**
* @link https://trpc.io/docs/v11/data-transformers
*/
transformer: superjson
})
I don't know what is the issue exactly.
25 replies
TtRPC
Created by jaacsen on 6/30/2024 in #❓-help
Looking for a fullstack developer to help me in my project.
just the title
3 replies
TtRPC
Created by jaacsen on 6/21/2024 in #❓-help
Error "Subscriptions should use wsLink"
No description
2 replies
TtRPC
Created by jaacsen on 6/2/2024 in #❓-help
is there a way to fetch real time data in server side instead of client side(invalidate)?
just the title
3 replies
TtRPC
Created by jaacsen on 4/22/2024 in #❓-help
How can I show real-time post's replies/comments after a successful a reply mutation?
After submitting a successful reply mutation, I want to show a real-time UI update on my frontend?
11 replies