Xanacas
Xanacas
TTCTheo's Typesafe Cult
Created by MagerX on 3/12/2025 in #questions
How to call TRPC query from function instead of inside the react component itself.
You can pass useQuery an enabled=false and enable it when pressing the button
3 replies
TTCTheo's Typesafe Cult
Created by tyler4949 on 3/7/2025 in #questions
T3 App Router Service Layer
14 replies
TTCTheo's Typesafe Cult
Created by Benfa on 3/4/2025 in #questions
Cache issue
Does refreshing help? Which nextjs version are you on? Your createhabbit is the place where you want to mark existing data as dirty. On the page you want to refresh/reload the data after you updated the list (or update with what the server action returns)
4 replies
TTCTheo's Typesafe Cult
Created by tyler4949 on 3/7/2025 in #questions
T3 App Router Service Layer
Recipe-new/page.tsx has „use client“ at the top and is therefore a client component which should enable you to just use trpc like you did in the old page router days, if you’re trpc is configured correctly. (I’ve currently no computer/dev env at hand, so I can’t deep dive at your codebase) However, if you want to drop trpc that’s a different story, but in that case I can’t help. I’ve not yet used next server actions together with react query (which is possible as far as I know)
14 replies
TTCTheo's Typesafe Cult
Created by tyler4949 on 3/7/2025 in #questions
T3 App Router Service Layer
@tyler4949 you‘ve configured trpc, why are you using useQuery from react-query not trpc?
14 replies
TTCTheo's Typesafe Cult
Created by tyler4949 on 3/7/2025 in #questions
T3 App Router Service Layer
Are you able to share some code? Generally speaking, you should be able to call the server function that imports the „server-only“ in trpc or from within a server action. (useQuery/useMutation should then work as before on a client component.)
14 replies
TTCTheo's Typesafe Cult
Created by mofalkmusic on 2/13/2025 in #questions
Terrible Uploadthing performance with German ISP.
For me everything works fine with Deutsche Telekom.
11 replies
TTCTheo's Typesafe Cult
Created by mofalkmusic on 2/13/2025 in #questions
Terrible Uploadthing performance with German ISP.
Give me some links and I’ll check with DSL and fibre accounts I have at deutsche Telekom
11 replies
TTCTheo's Typesafe Cult
Created by iam_nekk on 2/12/2025 in #questions
Does anybody have experience with Proxy Re-encryption?
Do you have control over the encrypted message? Can you prevent ppl not being in the group anymore accessing the encrypted message from a that group? Are the decryption keys sth you can revoke? What kind of security standards do you need to comply to?
3 replies
TTCTheo's Typesafe Cult
Created by Camuise on 2/6/2025 in #questions
Unable to have a environment variable only on client?
Your next_public env belong into client:{} object inside of createEnv() as described here: https://github.com/t3-oss/t3-env
12 replies
TTCTheo's Typesafe Cult
Created by tomek on 2/6/2025 in #questions
React on Amplify with or without Next.js
Given your „out of my hand“, vite+react is mostlikely your goto. If you see a chance, that you can get control of what is outside of your control, nextjs could be an option
6 replies
TTCTheo's Typesafe Cult
Created by Hollow on 2/3/2025 in #questions
Regarding 2025 status of t3
Create T3 ist just a starting template with all the included tools being installed in the latest version. Therefore, as long as the tools being used (tailwind, typescript trpc, drizzle, prisma ) are not end of life, nor are newer and (subjected) better tools available, there are little reasons to update sth in a good shape.
6 replies
TTCTheo's Typesafe Cult
Created by Roland on 1/31/2025 in #questions
Prevent router.refresh() from remounting client components
You CAN have a server component access cookies, you’re just opting out of static generation by doing so. Means it runs on the server on every request, instead of once on build time. https://nextjs.org/docs/app/api-reference/functions/cookies
11 replies
TTCTheo's Typesafe Cult
Created by Hollow on 2/3/2025 in #questions
Regarding 2025 status of t3
It is good to go. Go ahead and use it. Nothing really outdated in it. If you’re set on NextJS, it’s definitely a good starting point. If not, things like AstroJS might also be an option depending on the case.
6 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/3/2025 in #questions
Theo recent auth video on JWT
At least to my understanding, you could revoke/invalidate refresh tokens very easily. Whether you do, or you rely on cryptographic algorithms is up to the implementation. In general, refresh token are meant to be used once - at least as per RFC. In my experience in working with all sorts of APIs, reality is different. I’ve even some old hobby projects with hardcoded refresh token, because they have basically no exp. To summarise: refresh token are ment to be long lived but used once. Implementation is often long lived, endless use. If and when you want to force the user to login again with a password/passkey is up to you. Zoom or Hubspot annoy me every fucking day in their web apps, Google, OneDrive, Miro keep me going for ever, if I connect every couple of days.
23 replies
TTCTheo's Typesafe Cult
Created by skater235 on 2/1/2025 in #questions
In nextj15, router.refresh after router.back doesnt update the server component data
You need todo this within the api endpoint. Or you need to force dynamic/ disable SSR for this page.
5 replies
TTCTheo's Typesafe Cult
Created by skater235 on 2/1/2025 in #questions
In nextj15, router.refresh after router.back doesnt update the server component data
What’s your caching rendering strategy? You propably want to use revalidatePath() in your api/serveraction
5 replies
TTCTheo's Typesafe Cult
Created by Chandra on 2/1/2025 in #questions
What is best charts lib for chart like trading view?
Depending on the complexity of what you want to do: simple things: I like recharts very complex: d3 js
4 replies
TTCTheo's Typesafe Cult
Created by Anish on 1/27/2025 in #questions
trpc with nextjs 15
I’ve worked quiet a lot with server actions and I like them much more than trpc because of their simplicity in DX. With serverrendering I had so far very rarely the case that I had to fetch client side - I think this remark is reasonable. I’d probably go with trpc just for fetch, if this would be needed.
12 replies
TTCTheo's Typesafe Cult
Created by Xanacas on 1/29/2025 in #questions
NextJS dynamic routes with „use cache“ and dynamicIO - examples?
Thx! Haven’t had the time yet to dive into it, but after a quick check of the repo, he has at least the type of code I’m looking for 🙏 thanks @ChrisEvans
4 replies