This topic was automatically generated from Slack. You can find the original thread here.
There seems to be inconsistent state in the react connect form. optional configured props with remote options will sometimes be disabled or enabled even if the non-optional fields are defined. My understanding is that all the required props with remote options need to be defined first, and then the optional ones can be defined? It’s not clear if there are for example some optional props that depend on other optional props.
My understanding is that all the required props with remote options need to be defined first, and then the optional ones can be defined? It’s not clear if there are for example some optional props that depend on other optional props.
This is not necessary the case:
• Some props will requires other props to be defined first (for example, you need to input the Trello Board first, before inputting the Card in that board)
• Some props will not depends on each other (for example Labels)
On another note, remote options are the way to help the end-user to select predefined options. You can totally bypass it by defining the value yourself (.e.g your stored Trello Board ID)
The docs state that they need to be configured one by one, so that makes sense that the required ones need to be defined in the given order of the array, but the optional ones are harder to reason about. It’s not clear for example if some optional props depend on other optional ones