Managing large forms React+Meteor+Apollo

Hi!
Can you share with me how you manage large forms (many inputs, checkbox, relationship between fields) in your Meteor’s/React App? :slight_smile:

Uniforms is quite easy to use, especially with its out of box integration with graphql, and simple schema and has decent performance, but if your form is really very very very large, I guess you can take a look at Redux Form which has better performance with large array fields that grow indefinitely.

This makes me think redux-forms but if you’re just worried about the number of options (like in a dropdown) there are options like https://github.com/bvaughn/react-virtualized-select . Redux-Form is probably worth using either way.

1 Like

@serkandurusoy @a.com
Thank you for your anwser.
I’ll take a look on Uniforms, because I don’t want to use Redux in my app.
I will be glad if someone has other suggestions :slight_smile: