Symfony 2.8 dynamic ChoiceType options Symfony 2.8 dynamic ChoiceType options symfony symfony

Symfony 2.8 dynamic ChoiceType options


To deal with dynamically added values use 'choice_loader' option of choice type. It's new in symfony 2.7 and sadly doesn't have any documentaion at all.

Basically it's a service implementing ChoiceLoaderInterface which defines three functions:

  • loadValuesForChoices(array $choices, $value = null)
    • is called on build form and receives the preset values of object bound into the form
  • loadChoiceList($value = null)
    • is called on build view and should return the full list of choices in general
  • loadChoicesForValues(array $values, $value = null)
    • is called on form submit and receives the submitted data

Now the idea is to keep a ArrayChoiceList as private property within the choice loader. On build form loadValuesForChoices(...) is called, here we add all preset choices into our choice list so they can be displayed to the user. On build view loadChoiceList(...) is called, but we don't load anything, we just return our private choice list created before.

Now the user interacts with the form, some additional choices are loaded via an autocomplete and put into th HTML. On submit of the form the selected values are submitted and in our controller action first the form is created and afterwards on $form->handleRequest(..) loadChoicesForValues(...) is called, but the submitted values might be completly different from those which where included in the beginning. So we replace our internal choice list with a new one containing only the submitted values.

Our form now perfectly holds the data added by autocompletion.

The tricky part is, that we need a new instance of our choice loader whenever we use the form type, otherwise the internal choice list would hold a mixture of all choices.

Since the goal is to write a new autocomplete choice type, you usually would use dependency injection to pass your choice loader into the type service. But for types this is not possible if you always need a new instance, instead we have to include it via options. Setting the choice loader in the default options does not work, since they are cached too. To solve that problem you have to write a anonymous function which needs to take the options as parameters:

$resolver->setDefaults(array(    'choice_loader' => function (Options $options) {        return AutocompleteFactory::createChoiceLoader();    },));

Edit:Here is a reduced version of the choice loader class:

use Symfony\Component\Form\ChoiceList\ArrayChoiceList;use Symfony\Component\Form\ChoiceList\ChoiceListInterface;use Symfony\Component\Form\ChoiceList\Loader\ChoiceLoaderInterface;class AutocompleteChoiceLoader implements ChoiceLoaderInterface{    /** @var ChoiceListInterface */    private $choiceList;    public function loadValuesForChoices(array $choices, $value = null)    {        // is called on form creat with $choices containing the preset of the bound entity        $values = array();        foreach ($choices as $key => $choice) {            // we use a DataTransformer, thus only plain values arrive as choices which can be used directly as value            if (is_callable($value)) {                $values[$key] = (string)call_user_func($value, $choice, $key);            }            else {                $values[$key] = $choice;            }        }        // this has to be done by yourself:  array( label => value )        $labeledValues = MyLabelService::getLabels($values);        // create internal choice list from loaded values        $this->choiceList = new ArrayChoiceList($labeledValues, $value);        return $values;    }    public function loadChoiceList($value = null)    {        // is called on form view create after loadValuesForChoices of form create        if ($this->choiceList instanceof ChoiceListInterface) {            return $this->choiceList;        }        // if no values preset yet return empty list        $this->choiceList = new ArrayChoiceList(array(), $value);        return $this->choiceList;    }    public function loadChoicesForValues(array $values, $value = null)    {        // is called on form submit after loadValuesForChoices of form create and loadChoiceList of form view create        $choices = array();        foreach ($values as $key => $val) {            // we use a DataTransformer, thus only plain values arrive as choices which can be used directly as value            if (is_callable($value)) {                $choices[$key] = (string)call_user_func($value, $val, $key);            }            else {                $choices[$key] = $val;            }        }        // this has to be done by yourself:  array( label => value )        $labeledValues = MyLabelService::getLabels($values);        // reset internal choice list        $this->choiceList = new ArrayChoiceList($labeledValues, $value);        return $choices;    }}


A basic (and probably not the best) option would be to unmap the field in your form like :

->add('field', choiceType::class, array(       ...       'mapped' => false    ))

In the controller, after validation, get the data and send them to the entity like this :

$data = request->request->get('field');// OR$data = $form->get('field')->getData();// and finish with :$entity = setField($data);