Kseikyo
TTCTheo's Typesafe Cult
•Created by Kseikyo on 9/2/2023 in #questions
Context on middleware always undefined
Not really, I ended up not using the middleware and checking for the session data with the public procedure.
6 replies
TTCTheo's Typesafe Cult
•Created by Kseikyo on 9/2/2023 in #questions
Context on middleware always undefined
Also, changing the check for
if (typeof ctx === "undefined") {
will throw the UNAUTHORIZED error.6 replies
TTCTheo's Typesafe Cult
•Created by Kseikyo on 9/2/2023 in #questions
Context on middleware always undefined
If I comment the check for a session, I can confirm it is passed down correctly to my mutation which uses the
protectedProcedure
.6 replies
TTCTheo's Typesafe Cult
•Created by Lumberjack on 9/1/2023 in #questions
shadcn Form
But in my opinion, it would be much easier to just have one form, and change only the inputs of the form on each step. That way, the form will have the data when the user hits cancel, shouldn't require any extra code.
9 replies
TTCTheo's Typesafe Cult
•Created by Lumberjack on 9/1/2023 in #questions
shadcn Form
you're handling with multiple forms, you must be using multiple uses of
useForm
, in that case, if you're removing the entire form between each step, you can save that form data using local storage and on hit cancel, you get that data from local storage and set to the form.9 replies
TTCTheo's Typesafe Cult
•Created by 'antonyyprints' on 8/31/2023 in #questions
Discord not signing in
Did you create an app on discord and add the right id and secret to the
.env
file?9 replies
TTCTheo's Typesafe Cult
•Created by Lumberjack on 9/1/2023 in #questions
shadcn Form
If I understand what you're trying to achieve, you want a multi step form, there are multiple ways of doing it, by changing routes within a layout, using only one form provider and rendering each step according to some state.
This is a simple example generated by chatgpt
9 replies
TTCTheo's Typesafe Cult
•Created by Ayush Goyal on 9/1/2023 in #questions
React query Refetching on page change
what you're probably looking for is query invalidation https://tanstack.com/query/v4/docs/react/guides/query-invalidation
you can also use the
refetchOnMount: "always"
so it will force a refetch on mount even if data is not stale (not marked as invalid)3 replies
TTCTheo's Typesafe Cult
•Created by Omar-7ioo on 9/1/2023 in #questions
Zod overrides react-hook-form validation
And as you mentioned you can make it required based on api response, you can use a discriminated union to make things required depending on some data from the api https://zod.dev/?id=discriminated-unions
8 replies
TTCTheo's Typesafe Cult
•Created by Omar-7ioo on 9/1/2023 in #questions
Zod overrides react-hook-form validation
Zod is your validation, so if you want things to be required, they have to be done on the schema. Or at least you can create a required version of that schema by calling
.required()
;
https://zod.dev/?id=required8 replies
Queries work but mutations do not
up! Just opened this issue on the t3 repo, have been struggling with this for days https://github.com/t3-oss/create-t3-app/issues/1549
5 replies
TTCTheo's Typesafe Cult
•Created by shvz on 8/28/2023 in #questions
mutateAsync()
I'm guessing is the way you're passing the input, here's how to do it by the docs using zod https://trpc.io/docs/server/validators
10 replies
TTCTheo's Typesafe Cult
•Created by shvz on 8/28/2023 in #questions
mutateAsync()
What's the error?
10 replies
TTCTheo's Typesafe Cult
•Created by fotoflo on 12/14/2022 in #questions
Building a design system?
Random question: In that second picture, why do you have that undefined selected variant? Wouldn’t that be solved with a
defaultVariant
?124 replies
TTCTheo's Typesafe Cult
•Created by Kseikyo on 9/25/2022 in #questions
Prisma nexth-auth role based access control model
Fixed by updating
next-auth.d.ts
4 replies
TTCTheo's Typesafe Cult
•Created by scatter on 9/23/2022 in #questions
change query params without rerender
I just joined and never used tRPC, but I see that it’s a wrapper to react query.
Assuming you just want to manually trigger the refetch, you can get this function from the
useQuery
https://tanstack.com/query/v4/docs/reference/useQuery
But your use case seems more like it depends on an input, so you can have that data as a param to the useQuery, as well as setting its key based on this value. It should still re-render, as I don’t think you can change the data in the UI without a re-render.5 replies