React Hook Form - useFieldArray

Поделиться
HTML-код
  • Опубликовано: 26 авг 2024
  • In this session, we are taking a look at the useFieldArray custom hook to manage your dynamic form fields.
    working example: codesandbox.io...

Комментарии • 53

  • @ahofi
    @ahofi Год назад +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!

  • @cloudsss83
    @cloudsss83 Месяц назад

    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!

  • @jsricochet
    @jsricochet Год назад +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).

  • @adityatiwari7337
    @adityatiwari7337 Год назад +3

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

  • @talatkuyuk6556
    @talatkuyuk6556 Год назад +3

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

    • @bluebill1049
      @bluebill1049  Год назад +1

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

  • @budiman-kr5ug
    @budiman-kr5ug Год назад +1

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

  • @rafaelreale8848
    @rafaelreale8848 Год назад +2

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

  • @jsricochet
    @jsricochet Год назад +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  Год назад

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

  • @noname13345
    @noname13345 9 месяцев назад +1

    You sir are great. Thankyou for this awesome library.

  • @aulyaaryansyah6974
    @aulyaaryansyah6974 Месяц назад +2

    thanks man

  • @harrisonwell1719
    @harrisonwell1719 8 месяцев назад +1

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

  • @jonathonbloomfield8991
    @jonathonbloomfield8991 Год назад +1

    Thanks again for your work on this!

  • @benphamvan3456
    @benphamvan3456 Год назад +1

    Thank you Bill.

  • @jeremygollehon7631
    @jeremygollehon7631 Год назад +2

    So good. Thank you!

  • @HelpOrNot
    @HelpOrNot Год назад +1

    Super nice video. Very helpful

  • @longnq3
    @longnq3 3 месяца назад +1

    Thanks for sharing

  • @ab_semi
    @ab_semi 3 месяца назад

    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?

  • @barbarojaviervalmasedavazq9713
    @barbarojaviervalmasedavazq9713 Год назад +1

    Thanks, your save my life

  • @ArtiomNeganov
    @ArtiomNeganov Год назад +1

    Thank you very much! It was very useful.

    • @bluebill1049
      @bluebill1049  Год назад +1

      You are most welcome! So glad to hear that.

  • @user-se6mi3fe8w
    @user-se6mi3fe8w 28 дней назад

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

  • @pedverse
    @pedverse Год назад +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

  • @athulgeorge6744
    @athulgeorge6744 Год назад +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  Год назад +1

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

    • @athulgeorge6744
      @athulgeorge6744 Год назад +2

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

  • @NARAYANSHARMA-mc1bb
    @NARAYANSHARMA-mc1bb 9 месяцев назад

    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.

  • @budiman-kr5ug
    @budiman-kr5ug Год назад

    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 2 месяца назад +1

    Thank you

  • @JJ-nm8sh
    @JJ-nm8sh Год назад

    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

  • @alexjjwu
    @alexjjwu Год назад

    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.

  • @notoreofreakshake
    @notoreofreakshake 2 месяца назад

    hello, can i use this in a controller

  • @user-nx6cr1zv4o
    @user-nx6cr1zv4o 9 месяцев назад

    why the codesandbox does not work?

  • @rujalsapkota3824
    @rujalsapkota3824 Год назад

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

  • @nataliaduran8051
    @nataliaduran8051 Год назад

    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

  • @timothyduncanmacahilig1378
    @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

  • @z44-huynhkhangvy52
    @z44-huynhkhangvy52 Месяц назад

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

    • @incognito14x2
      @incognito14x2 25 дней назад

      zdid you find the solution? typescript complains about typing

  • @RomanH91
    @RomanH91 Год назад

    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

  • @nickolaki
    @nickolaki Год назад

    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  Год назад +2

      Have multiple `useFieldArray`?

    • @nickolaki
      @nickolaki Год назад

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

  • @nawazishali274
    @nawazishali274 Год назад +1

    Explore it's update value function

  • @naywinhlaing7574
    @naywinhlaing7574 Год назад

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

    • @bluebill1049
      @bluebill1049  Год назад +1

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

    • @naywinhlaing7574
      @naywinhlaing7574 Год назад +1

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

  • @spa.3239
    @spa.3239 4 месяца назад

    Accurate closed captions would be appreciated