React Hook Form - useFieldArray

Sdílet
Vložit
  • čas přidán 3. 10. 2022
  • In this session, we are taking a look at the useFieldArray custom hook to manage your dynamic form fields.
    working example: codesandbox.io/s/usefieldarra...

Komentáře • 53

  • @cloudsss83
    @cloudsss83 Před 17 dny

    amazing stuff... i'm creating a form that it is supposed to be loaded with server data, and it allows users to update this data. The summary at the end that needs only the changed fields is giving me a headache, but your videos are helping me a lot. Thanks!

  • @adityatiwari7337
    @adityatiwari7337 Před rokem +3

    Thank you Beier! Approaching docs would be much easier now after watching this.

  • @budiman-kr5ug
    @budiman-kr5ug Před rokem +1

    Thank you!
    The best human being is the one who benefits others.

  • @ahofi
    @ahofi Před rokem +2

    One of the better coding tutorials. Mostly I was just interested in the usage, eg for append and field arrays in general. I followed along and all works great. Keep up the good work!

  • @talatkuyuk6556
    @talatkuyuk6556 Před rokem +3

    It is very advanced usage of the react hook forms, nice to have it, thanks.

    • @bluebill1049
      @bluebill1049  Před rokem +1

      No worries! Give it a try. It's quite powerful.

  • @noname13345
    @noname13345 Před 8 měsíci +1

    You sir are great. Thankyou for this awesome library.

  • @rafaelreale8848
    @rafaelreale8848 Před rokem +2

    Incredible, now I managed to implement. I didn't understand from the documentation.

  • @jsricochet
    @jsricochet Před rokem +6

    Great video. That's exactly the use case I had: allowing the user to dynamically add extra items to an estimate or to a receipt :) It's also great you use TypeScript in your videos as its really becoming more and more required in lots of job offers (React + TS).

  • @jonathonbloomfield8991
    @jonathonbloomfield8991 Před rokem +1

    Thanks again for your work on this!

  • @longnq3
    @longnq3 Před 2 měsíci +1

    Thanks for sharing

  • @jsricochet
    @jsricochet Před rokem +2

    Working great!
    The only issued I had was 'Uncaught TypeError: methods is null'. It was simply because I imported 'Control' from 'react-hook-form' (KO) instead of destructuring 'control' (lower case 'c') from the object returned by useForm() (OK). Thanks again from this great video.
    It's great the cursor is also set properly on a field added by the user when there is an error (like a required field with no value provided by the user). :)

    • @bluebill1049
      @bluebill1049  Před rokem

      Yea, I believe focus management is really important for accessibility.

  • @aulyaaryansyah6974
    @aulyaaryansyah6974 Před měsícem +2

    thanks man

  • @benphamvan3456
    @benphamvan3456 Před rokem +1

    Thank you Bill.

  • @HelpOrNot
    @HelpOrNot Před rokem +1

    Super nice video. Very helpful

  • @jeremygollehon7631
    @jeremygollehon7631 Před rokem +2

    So good. Thank you!

  • @ArtiomNeganov
    @ArtiomNeganov Před rokem +1

    Thank you very much! It was very useful.

    • @bluebill1049
      @bluebill1049  Před rokem +1

      You are most welcome! So glad to hear that.

  • @barbarojaviervalmasedavazq9713

    Thanks, your save my life

  • @pedverse
    @pedverse Před rokem +1

    fought literally week against usefieldarray xd less than 10min from video, and were able to finish my stuff. mby next time i check tutorials or read stuff before i start trying

  • @harrisonwell1719
    @harrisonwell1719 Před 7 měsíci +1

    How to calculate the total for each item if I have a quantity field? Thanks

  • @JJ-nm8sh
    @JJ-nm8sh Před rokem

    great video. what approach would you say would be best for using react hook form with a custom build select (so not using native element) - any demos? Thanks

  • @ab_semi
    @ab_semi Před 2 měsíci

    Hello, thank you for the video. I have a question though: I want to have a language set with three select fields with options: first is "Language", second is "Oral Skill for this language" and "Writing skill for this language".
    However, I want initially only "language" field to appear, and only after selecting a language (i.e. giving it value), I want two other fields to appear.
    And the append button should become disabled as soon as I added a language, until we selected all three selects.
    N.B. I can not use onChange or OnValueChange functions. Does it still work because of watch?

  • @athulgeorge6744
    @athulgeorge6744 Před rokem +2

    Hey can you make a video of using react hook form with Zod and TS that passes register and errors into custom input components that, so UI can be standard instead of always having to build it out everytime, thankyou. Also great videos so far, I've learned alot, very useful.

    • @bluebill1049
      @bluebill1049  Před rokem +1

      Thank you, I will get to it when I can, it's on my todo list.

    • @athulgeorge6744
      @athulgeorge6744 Před rokem +2

      @@bluebill1049 thankyou very much, I look forward to your video

  • @alexjjwu
    @alexjjwu Před rokem

    Hi Beier, thank you for the great tutorial!! But I really want to know how to validate these "name fields" have the same value! It doesn't make any sense that user can type the same value over and over again.

  • @nataliaduran8051
    @nataliaduran8051 Před rokem

    Thanks for the video!!
    I tried this hook but notice that the state of the newly generated field created with the append method, doesn't look like expected, for example, the field is generated with the isDirty state as true by default.
    I am using the React Hook Form DevTools.
    By any chance have you seen this behavior before?
    Thanks in advance

  • @user-se6mi3fe8w
    @user-se6mi3fe8w Před 5 dny

    I need to store objects removed from useFieldArray remove method to another array for subsequent use. How can I achieve this?

  • @budiman-kr5ug
    @budiman-kr5ug Před rokem

    it cannot infer the fields type when using it on other component file inside form context area, where we are not passing the control props (optional if using form context)

  • @LinhVu-wz5nq
    @LinhVu-wz5nq Před měsícem +1

    Thank you

  • @RomanH91
    @RomanH91 Před rokem

    Thanks for your demo! Have a question...
    Why do you use the dot here`cart.${index}.name`? When in other examples without the dot. Thanks for the answer

  • @NARAYANSHARMA-mc1bb
    @NARAYANSHARMA-mc1bb Před 8 měsíci

    Hello Sir, can we make name field will be unique when user try to submit then get error like name field should be unique on particular field.

  • @rujalsapkota3824
    @rujalsapkota3824 Před rokem

    How to move item of one useFieldArray to another useFieldArray ? we can use move for one specific fieldArray for moving item....

  • @nawazishali274
    @nawazishali274 Před rokem +1

    Explore it's update value function

  • @timothyduncanmacahilig1378

    hello sir i have a problem i want to get total in useFieldArray example append name price1 amount1 total1 when i click append again total2 autoamtically get valuei in total1

  • @nickolaki
    @nickolaki Před rokem

    How would you manage multiple uses of useFieldArray? Say you had carts, items and products that were all arrays in the form object.

    • @bluebill1049
      @bluebill1049  Před rokem +2

      Have multiple `useFieldArray`?

    • @nickolaki
      @nickolaki Před rokem

      @@bluebill1049 Yeah, I'm stupid. Thanks :)

  • @notoreofreakshake
    @notoreofreakshake Před měsícem

    hello, can i use this in a controller

  • @z44-huynhkhangvy52
    @z44-huynhkhangvy52 Před 6 dny

    Is it required with array of objects sir? I wanna use array of string instead, but typescript warns me with append("")

    • @incognito14x2
      @incognito14x2 Před 2 dny

      zdid you find the solution? typescript complains about typing

  • @user-nx6cr1zv4o
    @user-nx6cr1zv4o Před 8 měsíci

    why the codesandbox does not work?

  • @naywinhlaing7574
    @naywinhlaing7574 Před rokem

    I would like to ask about can I try two different arrays ? I mean two different names.

    • @bluebill1049
      @bluebill1049  Před rokem +1

      just create two useFieldArray instances and slot them into two different components.

    • @naywinhlaing7574
      @naywinhlaing7574 Před rokem +1

      @@bluebill1049 Thank you, Sir! I got it.

  • @spa.3239
    @spa.3239 Před 3 měsíci

    Accurate closed captions would be appreciated