Тёмный

Reusable Create & Edit Form in React (React Hook Form, Zod) 

Cosden Solutions
Подписаться 88 тыс.
Просмотров 22 тыс.
50% 1

🚀 Project React → cosden.solutions/project-react
Source Code → github.com/cosdensolutions/co...
Join The Discord! → discord.cosden.solutions
VSCode Theme | Font → Material Theme Darker | Menlo, Monaco "monospace"
In this video I will show you how to create a reusable create & edit form in React using React Hook Form and Zod. We're going to be going into a form that is already created and we're going to add edit functionality to it in a way that's efficient and follows all of the React best practices and design patterns.

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

 

23 апр 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 47   
@Pareshbpatel
@Pareshbpatel Час назад
Excellent demonstration of how to build an Edit/Add Form with React-Hook-Form and Zod. Thanks, Darius. {2024-07-09}
@naziruadam3950
@naziruadam3950 2 месяца назад
Thanks for this piece. I think I'll have to follow this tut typing the code myself, that way, I'll understand it better.
@navedkhan6643
@navedkhan6643 2 месяца назад
Big fan of yours
@varshithgowdav9892
@varshithgowdav9892 2 месяца назад
Can u please make a video on persisting user data,I'm really confused what to use .There are multiple options like local storage,redux ..etc.
@hqasmei
@hqasmei Месяц назад
Great video! Question, for a delete form you'd have to create a different form right?
@stefin1
@stefin1 2 месяца назад
Would you leave the file as is, or decompose it into smaller files?
@ptolemyhenson6838
@ptolemyhenson6838 2 месяца назад
How can you create a form to allow users to create a list of arbitrary length (preferably a heterogeneous list, allowing the user to add multiple input types) using this method?
@kevinmitchell6141
@kevinmitchell6141 2 месяца назад
Would be great to see some dynamic form content! It adds a lot of complexity I feel
@jitesh_khurana
@jitesh_khurana 2 месяца назад
can be done by useFieldArray from react-hook-form
@kevinmitchell6141
@kevinmitchell6141 2 месяца назад
@@jitesh_khurana yes but my point is that it can be difficult to work with + not much examples of it in the wild
@thngzys
@thngzys 2 месяца назад
I would advice against this. Have been using rhf in prod for couple of years. I will say it does not scale well with huge or dynamic forms. Better to have individual form instances for each section, then collate the data prior to submission.
@thngzys
@thngzys 2 месяца назад
Also, maintenance is a pain.
@KartheekJavvajiKJ
@KartheekJavvajiKJ 2 месяца назад
@@thngzys I have reached to a similar conclusion
@violabg
@violabg 2 месяца назад
Why didn’t use Controller from react-hook-form, for DatePicker and Select
@cosdensolutions
@cosdensolutions 2 месяца назад
You could
@rezaz7167
@rezaz7167 2 месяца назад
How?
@johndevnoza4223
@johndevnoza4223 2 месяца назад
i would love to see, react query with react hook form and zod. since imnt pro with this, react query has different approach with FORM when it comes to mutations, so i couldnt understand it by myself. anyway Great videos!
@AviCharlop
@AviCharlop 2 месяца назад
Nice idea and video thanks. Just one note, you are already using zod, parsing the user prop with zod would have made the spread for default values unnecessary and the logic a bit cleaner
@rezaz7167
@rezaz7167 2 месяца назад
Passing the parsed value as defaultValues?
@AviCharlop
@AviCharlop 2 месяца назад
@@rezaz7167 exactly. Something like: defaultValues: user ? formSchema.parse(user) : undefined
@serbanmarin-eusebiu
@serbanmarin-eusebiu 2 месяца назад
The idea behind this video was very good and clear, but it would be more interesting if you would make a modal like with react-query under the hood. I’ve tried to create a such implementation, but it keeps falling for more than 2 use effects (linked data, one data depends on another). If you would like to create a video about this, I could give you access to the repository.
@lord_kh4n
@lord_kh4n 2 месяца назад
Wouldn't simply providing a key should be possible?
@serbanmarin-eusebiu
@serbanmarin-eusebiu 2 месяца назад
The base ideea is that you can provide a modal state, and a key for what you need, and when you open the modal, you pass to the react query the modal state and the key to enable the fetch request.
@alitonoliveira1700
@alitonoliveira1700 2 месяца назад
How to deal with nested array? That would be awesome.
@ThangNgo-hs2oy
@ThangNgo-hs2oy 28 дней назад
good video
@jazzdestructor
@jazzdestructor 2 месяца назад
Hey Cosden i have just one query with register onSubmit it scrolls to it and redirects to the specific field, how can i achieve validation, required, error and scrollTo for components that dont register?? i have seen something called that react hook form but i am not quite sure on it. please let me know what can be done here.
@JohnSmith-gu9gl
@JohnSmith-gu9gl 2 месяца назад
Great video but there is a problem. lets say you have a user form. if you want to update a user, password field is optional, so your types and validations have to know that. Maybe something like this: resolver: user ? zodResolver(updateUserValidator) : zodResolver(createUserValidator) , Would be great to see how you would solve that.
@rezaz7167
@rezaz7167 2 месяца назад
When I pass undefined to default values (in rhf) the browser on client component gives me this warning: Changed from uncontrolled to controlled input. But when i explicitly gives {title: “”, email:””} its ok. Can someone explain a better way to tackle this issue
@rajivchaulagain4749
@rajivchaulagain4749 Месяц назад
I would like some changes to do if I was using this approach cause I would pass initialvalue from parent like add and edit page cause it is more relative than using if else same for handleSubmir fnc.
@navedkhan6643
@navedkhan6643 2 месяца назад
Can you make more video on clean code and SOLID principle
@warrenpeace2557
@warrenpeace2557 2 месяца назад
Any coupon code for your course please 😮
@imkir4n
@imkir4n 2 месяца назад
Please add server action and error handling with this combo.
@petarmalamov2917
@petarmalamov2917 2 месяца назад
Isn't is better to pass an onSubmit function to the component, the form component doesn't need to know what happens to the submitted data it just interested if the data is valid and you can pass only the form data, not the entire user. That way in the future if there is a 3th action the form needs to do ( can't think of one now :D ) you can just change the on submit function that you pass to the component .
@dipanjanghosal1662
@dipanjanghosal1662 2 месяца назад
Please make a video on jwt authentication with Redux persist
@akshayc3314
@akshayc3314 2 месяца назад
Your contents are great. Can you please cover some other tech stack apart from react. Like devops or backend .
@shakapaker
@shakapaker 2 месяца назад
I would like to see how make add edit form with images
@jitx2797
@jitx2797 2 месяца назад
I am currently using bunnycdn to handle them
@NikhilPatel-bq7ck
@NikhilPatel-bq7ck 2 месяца назад
Have you ever made a video upon limitations of react-hook-forms and Formik? Is there any limitations when some more complex form with array type with multiple fields with some of theme as optional and some with lazy api call lets say some checks on db side and displaying validation like email exists. Such Comparison is bit rare in youtube. Everyone just shows very basic demos. Real usecase form are more complex and thats when only few quality content can help some to take decision which lib one should go with. If application is more complex lets say insurance company portal etc.
@mohamedsalimbensalem6118
@mohamedsalimbensalem6118 2 месяца назад
because the majority of people watching youtube tutos are beginners
@AhmedOsama5
@AhmedOsama5 2 месяца назад
really nice video, but I think you don't have to pass the default value for every input manually I think just can use the form default value better
@thngzys
@thngzys 2 месяца назад
The reason why he had to pass manually is because he didn't use the Controller
@jazzdestructor
@jazzdestructor 2 месяца назад
i think he could use getValues / watch instead of user Obj for consistency
@AhmedOsama5
@AhmedOsama5 2 месяца назад
using user data should be done once as default values that's the correct flow based on my experience any way the tutorial is more focused on another aspect and he did well about it @@jazzdestructor
@AhmedOsama5
@AhmedOsama5 2 месяца назад
yeb could be@@thngzys
@VkParish
@VkParish 2 месяца назад
First comment 😜
Далее
React Hook Form - Complete Tutorial (with Zod)
28:22
Просмотров 89 тыс.
You Are Using useEffect Wrong
14:40
Просмотров 32 тыс.
100❤️
00:19
Просмотров 2,9 млн
아이스크림으로 체감되는 요즘 물가
00:16
Efficiently Render 100,000 Rows in React
16:41
Просмотров 16 тыс.
React Hook Form & React 19 Form Actions, The Right Way
16:08
React Native Bridgeless Mode for Dummies
6:43
Просмотров 4,2 тыс.
React Hook Form (+ Zod) - Complete Tutorial
31:21
Просмотров 85 тыс.
CSS Is 2.4x Slower Than Inline Styles (Oh No...)
19:39
Refactoring a React component - Design Patterns
15:19
Zod Makes TypeScript Even Better
7:14
Просмотров 153 тыс.
5 Design Patterns That Are ACTUALLY Used By Developers
9:27
They made React great again?
4:11
Просмотров 1 млн