Theo's Typesafe Cult

TTC

Theo's Typesafe Cult

Join the community to ask questions about Theo's Typesafe Cult and get answers from other members.

Join

Uploadthing Path Not Found HONO

```appRouter.all("/uploadthing", (ctx) => { return uploadthingHandlers({ ...ctx.env, ctx: ctx.executionCtx })( ctx.req.raw ); });...

File Upload Limit for $8 Plan

If I pay $8, how many files can I upload in t3chat? I want to upload them one by one, but I need to know the maximum number of times I can upload.

AI & General tooling and workflow advice

Hi! So I have noticed recently that my workflow has become quite inefficient despite being reliable and working. I use:...

TanStack Form

i have a form, values in inputs can be specified by user manually but i would like to have as well an ability to pass value from for example zustand. Is that possible?

Looking for developer - Crypto payments

Looking for Assistance with Automated Media Server Deployment I need help setting up and configuring the following: Jellyfin (Media Server)...

aws lambda + drizzle orm help me please

Hi, im trying to learn a way to create mi api on api gateway + lambdas with drizzle ORM, currently everything works connected to a supabase postgres db but i cant manage to deploy my lambdas to aws :(. I've been trying so hard with serverless framework but it doesnt deploy the lambda handler, node_modules nor anything, just uploades empty package.jsons and handler.js & handler.js.map with a lot of boilerplate code (10000 lines).
No description

React Profiler vs Console.log

I made a dummy app with a context that I will want to convert to pub/sub for learning purposes. I added console logs to each component at the beginning. One thing puzzles me. Why does React Profiler show the re-render of a component (DisplayContainer) but the console.log in that component IS NOT displayed in the console? https://playcode.io/2294773...
No description

UploadThingError: Failed to parse response from UploadThing server

I am using the latest version of UploadThing with tailwindCSS v4 , using UploadAvatar , following all the instructions for nextJs (v15) here is the console error: error UploadThingError: Failed to parse response from UploadThing server at ut-reporter.js:44:69...

Is Theo's model-pricing.csv public?

I can't seem to find it anywhere on his github/gist page. since he's showing it alle the time in his videos, it would be cool to reference it externally every now and then

What is uploadthing?

I've tried to ask AI, search online, and look at other posts, but I don't really understand what it is. Could someone explain it to me in a non-dev-centric manner? Kind of like Eli 10. Can you also tell me why it's better than AWS? Does it make sense for large projects. Who's the target demo? Could you give me examples to visualize it. That would be great, thanks!...

How to pass data (input) along with multi-file uploads?

I have my uploader configure to allow multiple image uploads; I really need to send an id along with each file to update the db onUploadComplete. Since startUpload takes an array of files, I figured I should also send an array of ids Here's the simplified setup: ...
Solution:
This is something we actually do not handle super well right now. You can change files customId in middleware though

How to handle Download request authorization with uploadthing?

I am reading through the documentation and I can see that I can create signed URLs to download private files. However, I am wondering how people handle authorization for this. For instance if I have a NextJs server action ( like getSignedUrl(fileUrl)) that returns a signed URL if I send it a file URL, how can I tell whether the user is authorized to see this file? I would have to encode some kind of data in the file URL, which I can then decode in the getSignedUrl(fileUrl) server action in order...

How to call TRPC query from function instead of inside the react component itself.

So essentially I have a trpc query like this const {data} = await trpc.events.getRSVPsByUser.useQuery(userId); however I do not want this query to execute the moment that the page loads, I want to wait until a button is pressed for it, similarly to the way that useMutation works...

Looking for Developer

looking for a developer to help me build an app (only the base) with the following technologies: Next.js, TypeScript, Tailwind CSS, PostgreSQL, Drizzle ORM, Better Auth, pnpm, ESLint, Prettier, React Hook Form, Radix UI, Shadcn/Ui. Crypto payments only...

Best way to handle min width/height in uploadthing route input?

I am having trouble following https://docs.uploadthing.com/file-routes#input and https://docs.uploadthing.com/getting-started/appdir to add an input in my route where I deny images that have a width or height less than X (enforce a min width/height). I tried something like this, but that doesn't seem to work: ```...

Handling Async Params and Suspense Queries in a T3 Stack Next.js App

I'm having issues with fetching data for my story/[storyId]/page.tsx component. ```ts 'use client' import { notFound } from "next/navigation";...

Is there a way to use useQuery in server actions?

My aim here is to get all of the properties that useQuery (via trpc) provides - loading, error, onSuccess for mutations, etc - returned from my server action so that I can reflect that in UI updates. I'm not entirely sure what the difference in use is between next server actions and trpc's server-side api, to be honest. They seem to have a lot of overlap This is my server action:...

Bug occured while initializing t3-turbo with bun as package manager.

How can use bun as a run time and also as a package manager with t3-turbo?
No description

Tailwindcss looks weird after @uploadthing/react/styles.css

https://docs.uploadthing.com/getting-started/appdir#add-upload-things-styles I have completed all the steps in the documentation but there are still problems with my project. The styles of my project are all messed up. Any solution? versions: ```...

How can we handle transferable={false} with Clerk elements while building custom UI?

import { SignIn } from "@clerk/nextjs"; export default function Page() { return ( <div className="w-full min-h-screen flex items-center justify-center">...