Тёмный

The favorite way to create forms in Next.js 

Web Dev Cody
Подписаться 225 тыс.
Просмотров 22 тыс.
50% 1

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

Опубликовано:

 

27 май 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 110   
@cipherw0lf
@cipherw0lf 2 месяца назад
Thank you for the informative clips Cody 👍
@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.
@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?
@Oshimani
@Oshimani 2 месяца назад
I never noticed that keyboard thock 👌
@lirbartal6116
@lirbartal6116 2 месяца назад
This is the coolest thing ever! The creator seems very smart!
@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.
@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
@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
@bodywithoutasoul
@bodywithoutasoul Месяц назад
Your keyboard sounds so yum
@griffadev
@griffadev 2 месяца назад
Nice thing here is you can share the zod schema across frontend and backend too
@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!!! ❤
@durmoth7027
@durmoth7027 20 дней назад
next-safe-action vs. zsa? What to use?
@mitch1668
@mitch1668 2 месяца назад
what is your keyboard setup? sounds so satisfying
@entrepreneurdrive
@entrepreneurdrive 24 дня назад
I would like to know too
@juanofdark
@juanofdark 2 месяца назад
What Is that theme?
@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.
@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?
@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).
@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
@bora514
@bora514 2 месяца назад
Which VSCode theme are you using? Looks neat.
@WebDevCody
@WebDevCody 2 месяца назад
Bearded theme stained blue
@bora514
@bora514 2 месяца назад
@@WebDevCody thx man 🙌
@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
@hamidfarmani
@hamidfarmani 2 месяца назад
I'd recommend you to check out Mantine and Mantine forms
@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. RU-vidrs/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
@duliya45
@duliya45 2 месяца назад
What is the theme you are using?
@lee.g.v
@lee.g.v 2 месяца назад
Bearded theme stained blue I think
@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
@CarlosDuque-e3j
@CarlosDuque-e3j 11 дней назад
What's the name of the VS Code theme you're using?
@WebDevCody
@WebDevCody 11 дней назад
bearded theme stained blue
@CarlosDuque-e3j
@CarlosDuque-e3j 11 дней назад
@@WebDevCody Thank you sm!
@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
@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
@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
@mymorningjacket_
@mymorningjacket_ 2 месяца назад
src code? thank i needed this advice
@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
@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
@PeriklesPeriklesoglu
@PeriklesPeriklesoglu 21 день назад
thanks
@JS_Jordan
@JS_Jordan 2 месяца назад
I been using react-aria-components, it's nice but the package is heavy AF
@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
@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
@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
@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
@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
@mubbasherashraf1658
@mubbasherashraf1658 2 месяца назад
You just got my code 😢... The same way am doing in my Next template with tailwind
@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
@rand0mtv660
@rand0mtv660 2 месяца назад
Frontend validation for UX, server side validation for correctness.
@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
@arsh1a145
@arsh1a145 2 месяца назад
Imma just stick to zod + react-hook-form.
@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
@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
@ShivGamer
@ShivGamer 2 месяца назад
Nice video, but feels like too much to setup for form imo😅
@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 still choose next.js
19:39
Просмотров 19 тыс.
Why I don't use React-Query and tRPC in Next.js
18:58
кукинг с Даниилом 🥸
01:00
Просмотров 491 тыс.
Goodbye javascript (for now)
14:57
Просмотров 56 тыс.
How Did I Not Know This TypeScript Trick Earlier??!
9:11
Every Framework Sucks Now
24:11
Просмотров 122 тыс.
CoPilot Review: My Thoughts After 6 Months
9:45
Просмотров 541 тыс.
How I structure my next.js applications
23:19
Просмотров 24 тыс.
Fetching Data Doesn't Get Better Than This
6:58
Просмотров 101 тыс.
This is why dependency injection is useful
3:56
Просмотров 31 тыс.