I'm going with MobX on my new project which involves a lot of Forms (hundreds) and Fields (10 to 50)
At core MobX solve a lot of concerns but it's not easy to copy the Form example at scale when you have a lot of fields.
There are two stores to handle, values and errors also you should not forget to init disposers.
There's an ObservableList that handle specific modifications and react accordingly.
I'd like to have an ObservableFormField that would handle Fields.
So much handwritten code is really error prone when working on real business forms entries
Thank you for your feedback !
I'm not sure how to architect all this but I'll be happy to find logic per field at one place only.
@observable
ObservableFormField<String> name = ObservableFormField<String>(
name:'firstname',
validator : ...
error : errorBuilder<String>(..) => ...
)
@action
setName(String value) => name.value = value
I'm going with MobX on my new project which involves a lot of Forms (hundreds) and Fields (10 to 50)
At core MobX solve a lot of concerns but it's not easy to copy the Form example at scale when you have a lot of fields.
There are two stores to handle, values and errors also you should not forget to init disposers.
There's an ObservableList that handle specific modifications and react accordingly.
I'd like to have an ObservableFormField that would handle Fields.
So much handwritten code is really error prone when working on real business forms entries
Thank you for your feedback !
I'm not sure how to architect all this but I'll be happy to find logic per field at one place only.