The favorite way to create forms in Next.js

  Рет қаралды 22,347

Web Dev Cody

Web Dev Cody

2 ай бұрын

checkout zsa: github.com/IdoPesok/zsa
My Products
🏗️ WDC StarterKit: wdcstarterkit.com
📖 ProjectPlannerAI: projectplannerai.com
🤖 IconGeneratorAI: icongeneratorai.com
📝 ThumbnailCritique: thumbnailcritique.com
Useful Links
💬 Discord: / discord
🔔 Newsletter: newsletter.webdevcody.com/
📁 GitHub: github.com/webdevcody
📺 Twitch: / webdevcody
🤖 Website: webdevcody.com
🐦 Twitter: / webdevcody

Пікірлер: 110
@cipherw0lf
@cipherw0lf 2 ай бұрын
Thank you for the informative clips Cody 👍
@lirbartal6116
@lirbartal6116 2 ай бұрын
This is the coolest thing ever! The creator seems very smart!
@vasyaqwe2087
@vasyaqwe2087 2 ай бұрын
often times I just throw a required attribute on the inputs, and have zod validate the input on the server. I like the simplicity of that.
@hyperbrug9328
@hyperbrug9328 2 ай бұрын
shouldn't you also do validation on the server? can't client side validation be spoofed?
@xCoKeZx
@xCoKeZx 2 ай бұрын
@@hyperbrug9328 Yes, you should. That's what he said, validate the input on the server using zod.
@Metruzanca
@Metruzanca 2 ай бұрын
Neat. I've done my own back and forth with forms. Now that SolidStart is releasing stable, I wanna figure out whats the best way to make forms in solid.
@Oshimani
@Oshimani 2 ай бұрын
I never noticed that keyboard thock 👌
@griffadev
@griffadev 2 ай бұрын
Nice thing here is you can share the zod schema across frontend and backend too
@MYM861
@MYM861 2 ай бұрын
I have some server actions in my nextjs app that doesn't really need a form. For example delete. Do i need to create a form around that action on my client button to handle loading states and such. Im currently trying to build a ActionButton that takes a server action as prop, showing a spinner when the action is executing, but i want to show both success message and error messages when done. Should i build all my actions so they return a object of like { message: string, status: 'success' | 'error'}?
@N8X4TE
@N8X4TE 2 ай бұрын
You’re looking at the shadcn forms which is lot more boilerplate than it needs to be. RHF on its own is pretty simple imo
@rand0mtv660
@rand0mtv660 2 ай бұрын
Yeah RHF on its own is pretty cool, but to be honest his example shows how a production ready application form handling would like. Forms in a well structured React apps do look like this usually, whether you are using shadcn components or not.
@user-lf7mb1lk6i
@user-lf7mb1lk6i 2 ай бұрын
You’d be surprised. By the time you do it all yourself, the code isn’t much shorter
@angelhodar8888
@angelhodar8888 2 ай бұрын
Partially agree because I had my own inputs using just RHF but I have improved them a lot just by using shadcn form components internally. For example it handles each input id in the recommended React way using the useId hook. It also keeps the internal input control in context and the accesibility props properly setup, which is tedious to implement correctly
@N8X4TE
@N8X4TE 2 ай бұрын
@@angelhodar8888 what’s the recommended react way to handle inputs? Also having a context per each FormField may not be the best thing is it not?
@bodywithoutasoul
@bodywithoutasoul 2 ай бұрын
Your keyboard sounds so yum
@Love-id8gu
@Love-id8gu 2 ай бұрын
Hi, I really enjoy learning from your tutorials!👋 Can you please make next.js 15rc + drizzle + lucia + zod + react-hook-form + shadcn lesson. Authorization, registration, double authentication by email code, users browsing the site without authorization and adding/editing entries of an authorized user with Admin role. Thank you very much!!! ❤
@cgh2467
@cgh2467 2 ай бұрын
The improvement with client side validation isn’t just UX. ideally you should never send dirty data to your server/api. The validation on the server action should be a final step that ideally never fails as the client side validation is ensuring the correct data is sent.
@aliameur1147
@aliameur1147 Ай бұрын
You can still do progressive enhancement with all the client-side bells & whistles RHF provides. You would need to use both the action and onSubmit props on the form element (use e.preventDefault for onSubmit). Two slight issues with this approach 1) the extra formStates in the return useForm object are now wrong and need to be manually implemented 2) Loading states using isSubmitting from RHF or useFormStatus don't work, but I fixed this with a custom hook that is basically the same as the upcoming/beta useActionState react hook. For 99% of use cases this approach should be more good enough. Nice point on the type safety of the server actions, I guess some might overlook the fact that they are still exposed endpoints. I personally used schema.parse from zod to validate my inputs and outputs which worked out pretty well (sending back errors + earlier states as well).
@romaind4853
@romaind4853 2 ай бұрын
Hello. I don't understand why you don't use basic zod validation for the server action, and instead use libs like zsa. What am I missing ?
@WebDevCody
@WebDevCody 2 ай бұрын
Both approaches work, but using a library reduces the amount of code you need to to type
@SeibertSwirl
@SeibertSwirl 2 ай бұрын
Good job babe!
@gerkim3046
@gerkim3046 2 ай бұрын
respectfully asking who are u, i see this comment every time. it is cute btw
@SeibertSwirl
@SeibertSwirl 2 ай бұрын
@@gerkim3046 I am his wife and the mother of his children :)
@WebDevCody
@WebDevCody 2 ай бұрын
@@gerkim3046 my sexy wife
@hamidfarmani
@hamidfarmani 2 ай бұрын
I'd recommend you to check out Mantine and Mantine forms
@drprdcts
@drprdcts 2 ай бұрын
Genuine question - people started using these safe server action wrappers that looks pretty much exactly like tRPC procedures. So at this point, why not just use tRPC? And it comes with react query built in so it manages loading states and caching as well.
@IvanKleshnin
@IvanKleshnin 2 ай бұрын
TRPC does not support RSC at the moment. Typing issues.
@euanmorgann
@euanmorgann 2 ай бұрын
@@IvanKleshnin It does support it in v11, I've been using it in production for about 6 months now it's pretty stable
@IvanKleshnin
@IvanKleshnin 2 ай бұрын
@@euanmorgann I see, good to know.
@benjaoliva3383
@benjaoliva3383 2 ай бұрын
Old good tRPC structure. Didn't found something to move from it yet, just perfect for almost anything
@wadoudazer6906
@wadoudazer6906 2 ай бұрын
1:30 also you can disable html5 validation , i use it a lot to see what i am writing in password input , by changing the type from password to text hahaha
@cambabyfacecam
@cambabyfacecam 2 ай бұрын
Do a video on AWS Amplify Gen 2, it works like Drizzle+Trpc+SST now and generates forms automatically too based on the data models
@PeriklesPeriklesoglu
@PeriklesPeriklesoglu 22 күн бұрын
thanks
@durmoth7027
@durmoth7027 21 күн бұрын
next-safe-action vs. zsa? What to use?
@mitch1668
@mitch1668 2 ай бұрын
what is your keyboard setup? sounds so satisfying
@entrepreneurdrive
@entrepreneurdrive 25 күн бұрын
I would like to know too
@juanofdark
@juanofdark 2 ай бұрын
What Is that theme?
@mcsoud
@mcsoud 2 ай бұрын
You could use the register from rhf tho, styling your own input component is never that hard. Plus you could use the isPending from tanstack query's mutation to disable the button and show the loading svg inside it. I have worked with loads of forms in my projects. I will be working on a package that uses rhf, tanstack and zod to maximize the dx about these 3 awesome packages
@CyberTechBits
@CyberTechBits 2 ай бұрын
@cody what do you think about using client side validation/sanitizer that is instantaneous and on submit validate the Jason that is sent to the server? This accomplishes both, right? Very little client side js is needed to validate your inputs on the client side. WDYT?
@bogdanfilimon2486
@bogdanfilimon2486 2 ай бұрын
What keyboard do you have?
@mymorningjacket_
@mymorningjacket_ 2 ай бұрын
src code? thank i needed this advice
@gauravvarma3645
@gauravvarma3645 2 ай бұрын
At 4:27 if you use the required attribute aka client side validation won’t it instantly notify the user and to my knowledge the warning goes away when the user starts typing or clicks away? Thus why not use client side validation and server side validation with next actions boom problem solved
@WebDevCody
@WebDevCody 2 ай бұрын
Because when you client asks for custom looking client validation that idea goes out the window
@gauravvarma3645
@gauravvarma3645 2 ай бұрын
@@WebDevCody ahhh i see, makes sense
@codinginflow
@codinginflow 2 ай бұрын
I admire your perfect beard growth. Share some tips.
@jeremymunroe
@jeremymunroe 2 ай бұрын
Have you tried hair food😂
@WebDevCody
@WebDevCody 2 ай бұрын
the tip is don't shave 😃
@codinginflow
@codinginflow 2 ай бұрын
@@WebDevCody Well first you need proper growth
@asustufa1515
@asustufa1515 2 ай бұрын
@@codinginflow I had done some research on this matter, minoxidil seems to be most effective approach
@JS_Jordan
@JS_Jordan 2 ай бұрын
I been using react-aria-components, it's nice but the package is heavy AF
@Harish-rz4gv
@Harish-rz4gv 2 ай бұрын
How to get that keyboard sound on windows
@snivels
@snivels 2 ай бұрын
Use a physical keyboard instead of the on-screen keyboard
@duliya45
@duliya45 2 ай бұрын
What is the theme you are using?
@lee.g.v
@lee.g.v 2 ай бұрын
Bearded theme stained blue I think
@mubbasherashraf1658
@mubbasherashraf1658 2 ай бұрын
You just got my code 😢... The same way am doing in my Next template with tailwind
@bora514
@bora514 2 ай бұрын
Which VSCode theme are you using? Looks neat.
@WebDevCody
@WebDevCody 2 ай бұрын
Bearded theme stained blue
@bora514
@bora514 2 ай бұрын
@@WebDevCody thx man 🙌
@78SuperWhite
@78SuperWhite Ай бұрын
Because that action is ran on the server, how is the log even coming through to the browser at the end?
@WebDevCody
@WebDevCody Ай бұрын
any server log should be showing up only in the vscode terminal. If you saw a log from the action show up in the UI, either you were confusing logs or I forgot to add 'use server' at the top of my action
@78SuperWhite
@78SuperWhite Ай бұрын
@@WebDevCody Strange, at 11:00 I can see you're using 'use server' at the top and you can see just previous to that the log is coming through in the console on the browser
@CarlosDuque-e3j
@CarlosDuque-e3j 12 күн бұрын
What's the name of the VS Code theme you're using?
@WebDevCody
@WebDevCody 12 күн бұрын
bearded theme stained blue
@CarlosDuque-e3j
@CarlosDuque-e3j 12 күн бұрын
@@WebDevCody Thank you sm!
@arsh1a145
@arsh1a145 2 ай бұрын
Imma just stick to zod + react-hook-form.
@vigovlugt
@vigovlugt 2 ай бұрын
What about TanStack Form?
@noahwinslow3252
@noahwinslow3252 2 ай бұрын
I like tanstack form as well but I also feel it's a little verbose and not sure how well it's maintained. Other than that it seems to work just fine. It doesn't seem like a good idea to me to have validation traverse through a server action
@bibblebabl
@bibblebabl 2 ай бұрын
But not so long ago you were recommending the next safe action. You change libraries every week. PS. I've tried NSA - it's very crude. Even the author tries to fix all upcoming issues I'm not sure if it's a better approach instead of your own boilerplate
@EdwardOrnelas
@EdwardOrnelas 2 ай бұрын
It’s almost as if he learned new things and found better options.
@WebDevCody
@WebDevCody 2 ай бұрын
I'm experimenting and learning new things so that you don't have to
@codernerd7076
@codernerd7076 2 ай бұрын
The problem is the React/NEXT community they change there mind every week, never get anything done because they always in the middle of findjng the best way, while the Lavavel/Django dev put 10 sites online 😅
@rand0mtv660
@rand0mtv660 2 ай бұрын
This is why you should always try things yourself and validate libraries on your own. KZfaqrs/influencers can show you something interesting, but it's up to you to validate if it works for your use case.
@versaleyoutubevanced8647
@versaleyoutubevanced8647 2 ай бұрын
he is not a tech influencer, he is a dev that is learning and documenting it
@dawidwraga
@dawidwraga 2 ай бұрын
I've spent forever building a wrapper around shadcn ui + react hook form which fixes the DX You literally just pass and it uses context to pass all the form stuff into the fields Creating the field is as easy as writing Ive been using this internally for the past year and it works very well so I want to publish it as an open source extension of shadcn If you also find the shadcn + react hook form DX to be annoying verbose then id really love to hear your feedback and help in publishing the library I haven't published the code yet because I've been busy with work and not sure how to set up the shadcn like CLI if anyone is able to help with setting up the docs/CLI that would super helpful to publishing all the code for everyone to benefit :)
@WebDevCody
@WebDevCody 2 ай бұрын
That sounds interesting. Send a message if you end up publishing it and maybe I’ll check it out
@user-vd3ph6zh8q
@user-vd3ph6zh8q 2 ай бұрын
Not trynna be mean or anything but why would you need to validate your output if your the one writing the output? Like just don't return process.env.API_SECRET right?
@WebDevCody
@WebDevCody 2 ай бұрын
because humans make mistakes, and leaking user's emails on accident because you typed return users instead of return users.map(user => user.name) can be a big issue
@neociber24
@neociber24 2 ай бұрын
A lot of frameworks use DTO for that reason, you need to transform and send the exact data to the user needs and/or sanitize the output.
@WebDevCody
@WebDevCody 2 ай бұрын
@@neociber24 yeah DTO is one approach. Technically zsa uses zod which acts as your dto mapper
@user-vd3ph6zh8q
@user-vd3ph6zh8q 2 ай бұрын
@@WebDevCody if you type your return types you wouldn't need to install the extra package though? You can also use branded types to make sure that you pass the right string type.
@WebDevCody
@WebDevCody 2 ай бұрын
@@user-vd3ph6zh8q I’d say I’d agree if this was go or another strongly typed language. Typescript I honestly don’t trust the type system. You can return more data than what is typed on an object and typescript won’t complain
@blizzy78
@blizzy78 2 ай бұрын
3:09 you probably misspoke: "oh wait, you can't, because you can't have a server action defined inside of a useFormState" - what you probably meant to say was that you can't have a server action inside of a client component
@WebDevCody
@WebDevCody 2 ай бұрын
Yeah probably mispoke
@kH-ul4hk
@kH-ul4hk 2 ай бұрын
why can't you just use trpc + react hook form?
@WebDevCody
@WebDevCody 2 ай бұрын
TRPc doesn’t work with server actions / revalidate path from what I understand
@BenMargolius
@BenMargolius 2 ай бұрын
@@WebDevCody Why are sever actions an advantage in this case? Like what do they provide that a tRPC+RHC experience doesn't?
@WebDevCody
@WebDevCody 2 ай бұрын
@@BenMargolius if you plan to use RSC, you’ll eventually end up needing to call revalidatePath to trigger next to rerender the component tree. Obviously you could just do all queries and mutations against your tRPc api. I guess ultimately I like server actions and the RSC approach to next.hs
@rand0mtv660
@rand0mtv660 2 ай бұрын
Frontend validation for UX, server side validation for correctness.
@drewhjava
@drewhjava 2 ай бұрын
The ergonomics of all the built in React 19 stuff is so bad. The Remix stuff is so much better but I think they're going to embrace server actions too. Might as well go back to API calls at this point
@ShivGamer
@ShivGamer 2 ай бұрын
Nice video, but feels like too much to setup for form imo😅
@Everythingwithmashle
@Everythingwithmashle Ай бұрын
SaaS owners: Would you pay for an AI chatbot that answers new customers' questions, handles marketing, and directs them to the checkout page when they're ready to subscribe?
@WebDevCody
@WebDevCody Ай бұрын
I think a lot of people already built applications like this, so yes I think there is a market for it. It may just be a bit saturated maybe?
@Everythingwithmashle
@Everythingwithmashle Ай бұрын
@@WebDevCody thank you for your response, it means a lot
@safeeullahdevlogs509
@safeeullahdevlogs509 2 ай бұрын
Why not just use tRPC?
@WebDevCody
@WebDevCody 2 ай бұрын
I think tRPc uses a separate api endpoint approach and doesn’t hook into server actions for when calling revalidatePath
@blazi_0
@blazi_0 2 ай бұрын
Ive used shadcn forms with zod before for a project. Yes its very cool to have but man it sucks to write all this code every fucking time you want to create a form. So boring
@seandegee
@seandegee 2 ай бұрын
Coming from a place of ignorance as someone who's never used React and Next and has only ever developed Vue and Nuxt, this looks nightmare-level tedious. Can someone explain why React/Next is better?
@WebDevCody
@WebDevCody 2 ай бұрын
In nuxt you’re doing the same thing. You’re defining an api endpoint, then you’re probably validating the user inputs. React will always be more verbose compared to vue because vue uses signals and has the bind directive.
@user-lf7mb1lk6i
@user-lf7mb1lk6i 2 ай бұрын
Forms are tricky in general. Slap on the way Next renders pages and the abstractions it provides to avoid writing APIs and you’re in for a ride. But like anything you just get used to it
@bw7868
@bw7868 2 ай бұрын
I'm trying to learn React because of the market share, but yes it's a hell compared to Vue and Svelte, but at the end it's personal preference!!
@pedroalonsoms
@pedroalonsoms Ай бұрын
tldr: react forms still suck
Why I don't use React-Query and tRPC in Next.js
18:58
ByteGrad
Рет қаралды 80 М.
Why I still choose next.js
19:39
Web Dev Cody
Рет қаралды 19 М.
ВОДА В СОЛО
00:20
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 31 МЛН
Useful gadget for styling hair 🤩💖 #gadgets #hairstyle
00:20
FLIP FLOP Hacks
Рет қаралды 9 МЛН
Jumping off balcony pulls her tooth! 🫣🦷
01:00
Justin Flom
Рет қаралды 16 МЛН
Получилось у Миланы?😂
00:13
ХАБИБ
Рет қаралды 4 МЛН
Goodbye javascript (for now)
14:57
Web Dev Cody
Рет қаралды 66 М.
10 common mistakes with the Next.js App Router
20:37
Vercel
Рет қаралды 197 М.
How I structure my next.js applications
23:19
Web Dev Cody
Рет қаралды 24 М.
Every Framework Sucks Now
24:11
Theo - t3․gg
Рет қаралды 123 М.
My Weird Journey To Next.js
24:28
Theo - t3․gg
Рет қаралды 47 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 511 М.
the most important Next.js features to learn (in 8 minutes)
8:26
Web Dev Cody
Рет қаралды 33 М.
I Never Want To Build Authentication Any Other Way
2:03:20
Elliott Chong
Рет қаралды 16 М.
5 Design Patterns That Are ACTUALLY Used By Developers
9:27
Alex Hyett
Рет қаралды 231 М.
ВОДА В СОЛО
00:20
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 31 МЛН