I've got this far, basically, I need to assign the dealership field to my form, and hide/show it based on whether the entity my form represents already had this data (i.e. the user is already on a dealership page thus this is inferred from context).
$builder->addEventListener(FormEvents::PRE_SET_DATA, function($event) use ($builder) {
$form = $event->getForm();
$review = (object) $event->getData();
$field = $builder->getFormFactory()->createNamed(
'dealership', !$review->getDealership() ? 'text' : 'hidden',
$review->getDealership()
);
// $field->addViewTransformer(new DealershipTransformer($this->finder), true)
$form->add($field);
});
I see a few methods on the factory for adding named fields/builders but I'm not sure how I'm meant to use this combo to get a builder back to bind my viewTransformer to.
Additionally thoughts about how I should go about converting these values back and forth would be appreciated; when hidden the value should be an int, and text, the toString value, but at present they're both the toString value for some reason (not sure I understand why).. should I get it right so that it is an int when hidden, would I then need 2 transformers, 1 to tranform to and from a string, and another for an int?
Lastly, somewhat related, I am using this field as alternative to a choice (12k records), so resolving to a single entity... when I can't match, i.e. the text entered is too vague, how can I pass "Did you mean?" options back to the form for display (as a choice?).