5

Symfony 2 で新しいフォーム タイプを作成しようとしています。これはエンティティ タイプに基づいており、フロントエンドでselect2を使用し、ユーザーが既存のエンティティを選択するか、新しいエンティティを作成できるようにする必要があります。

私の考えは、エンティティのIDを送信し、ユーザーが既存のエンティティを選択した場合、またはユーザーが新しい値を入力した場合に「_new:entered text」のようなものを送信した場合、デフォルトのエンティティタイプによって変換できるようにすることでした。次に、この文字列を独自のモデル トランスフォーマーによって新しいフォーム エンティティに変換する必要があります。これは次のようになります。

<?php
namespace Acme\MainBundle\Form\DataTransformer;

use Symfony\Component\Form\DataTransformerInterface;

class EmptyEntityTransformer
implements DataTransformerInterface
{
    private $entityName;
    public function __construct($entityName)
    {
        $this->entityName = $entityName;
    }
    public function transform($val)
    {
        return $val;
    }
    public function reverseTransform($val)
    {
        $ret = $val;
        if (substr($val, 0, 5) == '_new:') {
            $param = substr($val, 5);
            $ret = new $this->entityName($param);
        }
        return $ret;
    }
}

残念ながら、トランスフォーマーは既存のエンティティが選択された場合にのみ呼び出されます。新しい値を入力すると、リクエストで文字列が送信されますが、トランスフォーマーの reverseTransform メソッドはまったく呼び出されません。

私は Symfony を初めて使用するので、このアプローチが正しいかどうかさえわかりません。これを解決する方法はありますか?

編集:私のフォームタイプコードは:

<?php

namespace Acme\MainBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use Acme\MainBundle\Form\DataTransformer\EmptyEntityTransformer;
use Symfony\Component\PropertyAccess\PropertyAccess;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormEvents;

class Select2EntityType
extends AbstractType
{
    protected $router;
    public function __construct(Router $router)
    {
        $this->router = $router;
    }
    /**
     * {@inheritdoc}
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        parent::setDefaultOptions($resolver);
        $resolver->setDefaults(array(
            'placeholder' => null,
            'path' => false,
            'pathParams' => null,
            'allowNew' => false,
            'newClass' => false,
        ));
    }

    public function getParent()
    {
        return 'entity';
    }

    public function getName()
    {
        return 's2_entity';
    }

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        if ($options['newClass']) {
            $transformer = new EmptyEntityTransformer($options['newClass']);
            $builder->addModelTransformer($transformer);
        }
    }

    public function buildView(FormView $view, FormInterface $form, array $options)
    {
        $field = $view->vars['name'];
        $parentData = $form->getParent()->getData();
        $opts = array();
        if (null !== $parentData) {
            $accessor = PropertyAccess::createPropertyAccessor();
            $val = $accessor->getValue($parentData, $field);
            if (is_object($val)) {
                $getter = 'get' . ucfirst($options['property']);
                $opts['selectedLabel'] = $val->$getter();
            }
            elseif ($choices = $options['choices']) {
                if (is_array($choices) && array_key_exists($val, $choices)) {
                    $opts['selectedLabel'] = $choices[$val];
                }
            }
        }

        $jsOpts = array('placeholder');

        foreach ($jsOpts as $jsOpt) {
            if (!empty($options[$jsOpt])) {
                $opts[$jsOpt] = $options[$jsOpt];
            }
        }
        $view->vars['allowNew'] = !empty($options['allowNew']);
        $opts['allowClear'] = !$options['required'];
        if ($options['path']) {
            $ajax = array();
            if (!$options['path']) {
                throw new \RuntimeException('You must define path option to use ajax');
            }
            $ajax['url'] = $this->router->generate($options['path'], array_merge($options['pathParams'], array(
                'fieldName' => $options['property'],
            )));
            $ajax['quietMillis'] = 250;
            $opts['ajax'] = $ajax;
        }
        $view->vars['options'] = $opts;
    }
}

次に、このフォーム タイプを作成します。

class EditType
extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('masterProject', 's2_entity', array(
                'label' => 'Label',
                'class' => 'MyBundle:MyEntity',
                'property' => 'name',
                'path' => 'my_route',
                'pathParams' => array('entityName' => 'name'),
                'allowNew' => true,
                'newClass' => '\\...\\MyEntity',
            ))

...

ご提案いただきありがとうございます

4

2 に答える 2