Why I use Zod with Server Actions

Поділитися
Вставка
  • Опубліковано 11 лип 2024
  • In this video we're going to take a look at how Zod makes FormData easy to work with!
    Check out my Build UI course on React Server Components: buildui.com/courses/react-ser...
    - 0:00 - Intro
    - 0:23 - Introduction to Server Actions
    - 2:58 - Problems with FormData and TypeScript
    - 6:14 - Introduction to Zod
    - 10:17 - Dealing with Checkboxes
    - 12:35 - Code cleanup
    - 13:42 - Summary
    - 14:38 - Outro

КОМЕНТАРІ • 34

  • @zeynalabdinqdirov2386
    @zeynalabdinqdirov2386 2 місяці тому +2

    You can put a + in front of the value to convert the form.id to a string. Exp: +form.id. It will be shorter.🙂

  • @n3uron_bloom938
    @n3uron_bloom938 11 місяців тому +2

    Great video, clear and comprehensive. Thanks!

  • @jitx2797
    @jitx2797 Рік тому +4

    Awesome content Ryan. Please bring more of these.
    Simply amazing content.

  • @prashlovessamosa
    @prashlovessamosa 11 місяців тому +1

    Great explanation thanks for making this.

  • @codefixlabs
    @codefixlabs 11 місяців тому

    Awesome video!

  • @wassup102
    @wassup102 8 місяців тому

    awesome, code is so cleannnn

  • @futuremoe
    @futuremoe Рік тому +3

    Awesome video! Working with server actions has been refreshing.
    I think it's important to note that Zod will throw Errors which will shut down the Node process if they make it to the main event loop. You can prevent this by wrapping dot parse in try/catch or calling the server action with a then/catch chain.
    This can get pretty verbose. I prefer to use dot safeParse. You can destructure { success, data, error } and handle success and failure accordingly. This makes it convenient to validate forms with Zod and display error messages you've defined in the schema.

  • @luke_bennett_
    @luke_bennett_ Рік тому +6

    If you use react-hook-form with the zod resolver you can share the schema on the frontend and backend.

    • @RyanToronto
      @RyanToronto  Рік тому

      Awesome! That's great to know

    • @roguesherlock
      @roguesherlock Рік тому +5

      I'm not sure if we can do it in prisma but in drizzle orm you can create zod schema from your models. Add in react hook form and you've basically got end-to-end type safety with your db model as the single source of truth!

    • @jpkiser5051
      @jpkiser5051 Рік тому +5

      @@roguesherlock I recommend that you don’t do this. It’s really important when building scalable applications to create an abstraction layer (your business logic) between your client and your database. You should be able to make changes to your database without touching your client.

    • @roguesherlock
      @roguesherlock Рік тому

      @@jpkiser5051 yeah probably. It's mostly for small stuff where you have a tight control over your inputs and outputs.

    • @RyanToronto
      @RyanToronto  Рік тому +1

      That's awesome. I really need to give drizzle a try, how are you liking it?
      One thing about defining the schema in the action (vs using the database generated zod schema), is that you might have a different form for admins vs non-admins, so you'd want a more restrictive schema for the non-admins.
      Though having an auto generated schema that you can quickly get access to sounds pretty awesome. I think my next project will use drizzle :)

  • @jacerchetoui709
    @jacerchetoui709 4 місяці тому

    Thank you so much

  • @hassanallen1823
    @hassanallen1823 11 місяців тому

    either use try catch or use safeparse incase if empty input avoid page error. nice video 3>

  • @gosnooky
    @gosnooky 5 місяців тому

    One small optimization I'd recommend is to place the definition of the Zod schema outside of that function so memory doesn't need to be reallocated each time the function is called, since the schema will never change over time.

  • @KoenVerheyen
    @KoenVerheyen 11 місяців тому

    Are you using a specific UI library? The loading button is cool!

    • @RyanToronto
      @RyanToronto  10 місяців тому +1

      Hi @KoenVerheyen! No specific UI library, but I do use Tailwind to style everything. Here's a twitter thread on how I built the submit button: twitter.com/ryantotweets/status/1676625909351153671

  • @akosbalint3485
    @akosbalint3485 Рік тому

    I think you can parse the id as number directly with zod.

    • @filipjnc
      @filipjnc 11 місяців тому

      z.coerce.number()

  • @Shawn-Mosher
    @Shawn-Mosher Рік тому +1

    How do you show errors to the UI so the users can fix?

    • @RyanToronto
      @RyanToronto  Рік тому +1

      That's a topic deserves a whole other video :)
      Basic idea you pass the server action into a client component that invokes the action and keeps track of any errors it returns. If it errors then the client component can set state displaying those errors.

    • @Shawn-Mosher
      @Shawn-Mosher Рік тому +1

      @@RyanToronto that sounds like a great follow up video as I’m trying to wrap my head around it! Thanks!!

  • @ExpertGamingOnline
    @ExpertGamingOnline 10 місяців тому

    What i am missing, and was hoping to see in this video, is error handling with zod and displaying the error messages client side.

    • @RyanToronto
      @RyanToronto  10 місяців тому +1

      That's coming up in a future video!

  • @nathanguedes7726
    @nathanguedes7726 11 місяців тому

    Mano tu parece o Jim do the office tlg?

  • @Notoriousjunior374
    @Notoriousjunior374 11 місяців тому

    Doing db operations without any proxy is hella raw and insecure. Why not use a rest endpoint to handle all that stuff?

  • @tiagoagm
    @tiagoagm 8 місяців тому

    How about validations with zod?