3

将 Symfony 4.4 与 Easy Admin 3 一起使用:
我有 OneToOne 关系

class Usuario
{
...
    /**
     * @ORM\OneToOne(targetEntity=Hora::class, inversedBy="usuario", cascade={"persist", "remove"})
     */
    private $hora;
...
}
class Hora
{
...
    /**
     * @ORM\OneToOne(targetEntity=Usuario::class, mappedBy="hora", cascade={"persist", "remove"})
     */
    private $usuario;
...
}

我有一个用于 Usuario 的 CRUD 控制器:

class UsuarioCrudController extends AbstractCrudController
{
    public function configureFields(string $pageName): iterable
    {
    ...
    return [
    ...
            AssociationField::new('hora', 'Hora'),
        ];

一切似乎都很好,但是在“Usuario”的管理表单中,“hora”字段显示了数据库中的所有值,甚至那些已经分配给其他“Usuario”实体
的值:我希望下拉控件只显示未分配的值,加上实际“Usuario”实体的值,使控件易于使用。

使用 easyadmin 执行此操作的正确方法是什么?

我已经设法对该字段进行编码以仅显示未关联的“Hora”值,使用$this->getDoctrine()->setFormTypeOptions([ "choices" =>在 UsuarioCrudController 类中,

但我无法访问正在管理的实际实体,也无法访问 UsuarioCrudController 类(可能无法访问),也无法访问 Usuario 类(我在这里尝试__construct(EntityManagerInterface $entityManager)无济于事,因为该值似乎没有被注入,不知道为什么)。

4

2 回答 2

3

通过覆盖 EasyAdmin 方法或侦听 EasyAdmin 事件,可以在 easy admin 中自定义一些内容。

方法示例

public function createIndexQueryBuilder(SearchDto $searchDto, EntityDto $entityDto, FieldCollection $fields, FilterCollection $filters): QueryBuilder
public function createEntity(string $entityFqcn)
public function createEditForm(EntityDto $entityDto, KeyValueStore $formOptions, AdminContext $context): FormInterface
//etc..

事件示例

use EasyCorp\Bundle\EasyAdminBundle\Event\AfterCrudActionEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\AfterEntityDeletedEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\AfterEntityPersistedEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\AfterEntityUpdatedEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\BeforeCrudActionEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\BeforeEntityDeletedEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\BeforeEntityPersistedEvent;
use EasyCorp\Bundle\EasyAdminBundle\Event\BeforeEntityUpdatedEvent;

您可以覆盖简单的管理员createEditFormBuildercreateNewFormBuilder方法,这样您就可以访问当前的表单数据并修改您的 hora 字段。

就像是 :

 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\FormBuilderInterface;
 use EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto;
 use EasyCorp\Bundle\EasyAdminBundle\Config\KeyValueStore;
 
 public function createEditFormBuilder(EntityDto $entityDto, KeyValueStore $formOptions, AdminContext $context): FormBuilderInterface {
    $formBuilder = parent::createEditFormBuilder($entityDto, $formOptions, $context);

    $unassignedValues = $this->yourRepo->findUnassignedValues();
    $data = $context->getEntity()->getInstance();
    if(isset($data) && $data->getHora()){
        //if your repo return an ArrayCollection
        $unassignedValues = $unassignedValues->add($data->getHora());
    }
    // if 'class' => 'App\Entity\Hora' is not passed as option, an error is raised (see //github.com/EasyCorp/EasyAdminBundle/issues/3095):
    //      An error has occurred resolving the options of the form "Symfony\Bridge\Doctrine\Form\Type\EntityType": The required option "class" is missing.
    $formBuilder->add('hora', EntityType::class, ['class' => 'App\Entity\Hora', 'choices' => $unassignedValues]);

    return $formBuilder;
}

目前,easyadmin3 仍然缺乏文档,所以有时最好的方法是查看 easyadmin 的操作方式。

于 2021-04-08T12:28:06.487 回答
2

fwiw,可以使用 Symfony easyadmin CrudController 的 configureFields() 方法访问正在编辑的实际实体

if ( $pageName === 'edit' ) {
    ...
    $this->get(AdminContextProvider::class)->getContext()->getEntity()->getInstance()
    ...

这样在 configureFields() 中我可以添加代码来过滤我的实体:

$horas_libres = $this->getDoctrine()->getRepository(Hora::class)->findFree();

然后也添加实际的实体值,这就是我想要做的

array_unshift( $horas_libres, 
$this->get(AdminContextProvider::class)->getContext()->getEntity()->getInstance()->getHora() );

现在可以使用“选择”在返回的数组中构造该字段:

return [ ...
            AssociationField::new('hora', 'Hora')->setFormTypeOptions([
                "choices" => $horas_libres
            ]),
       ]
于 2021-04-12T07:07:19.497 回答