4

我有三个实体,Block、BlockPlacement、BlockPosition:

class BlockEntity
{
    private $bid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="block",
     *     cascade={"remove"})
     */
    private $placements;
}

class BlockPlacementEntity
{
    /**
     * The id of the block postion
     *
     * @ORM\Id
     * @ORM\ManyToOne(targetEntity="BlockPositionEntity", inversedBy="placements")
     * @ORM\JoinColumn(name="pid", referencedColumnName="pid", nullable=false)
     */
    private $position;

    /**
     * The id of the block
     *
     * @var BlockEntity
     * @ORM\Id
     * @ORM\ManyToOne(targetEntity="BlockEntity", inversedBy="placements")
     * @ORM\JoinColumn(name="bid", referencedColumnName="bid", nullable=false)
     */
    private $block;

    private $sortorder;
}

class BlockPositionEntity
{
    private $pid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="position",
     *     cascade={"remove"})
     * @ORM\OrderBy({"sortorder" = "ASC"})
     */
    private $placements;
}

所以,你可以看到关系:Block < OneToMany > Placement < ManyToOne > Position。

现在我正在尝试构建一个表单来创建/编辑一个块:

    $builder
        ->add($builder->create('placements', 'entity', [
            'class' => 'Zikula\BlocksModule\Entity\BlockPositionEntity',
            'choice_label' => 'name',
            'multiple' => true,
            'required' => false
        ]))
    ;

这给了我一个很好的选择框,可以进行多种选择,并有适当的位置列表可供选择。但它不显示以前的放置选择(我使用现有数据),例如将位置标记为“已选择”。我还没有尝试创建一个新块,只编辑现有数据。

我怀疑我将需要使用addModelTransformer()addViewTransformer()尝试过其中的一些,但无法使其正常工作。

我查看了collection表单类型,但我不喜欢该解决方案,因为它不是多选框。它需要 JS 并且不像简单的选择元素那样直观。

对于人们来说,这似乎是一个普遍的问题。我搜索并发现没有共同的答案,也没有任何帮助。

4

2 回答 2

1

更新:请看这个示例 repo

更新 2:我已经更新了 repo。

我使用表单事件侦听器和未映射的选择字段来做到这一点。仔细查看BlockType 表单类型 如有任何问题,请随时提出。

于 2015-11-27T04:06:54.430 回答
0

好的 - 所以最后,我找到了一种不同的方式。@Stepan Yudin 的回答有效,但很复杂(听众等),并不像我希望的那样。

所以,我有相同的三个实体。BlockPlacement 和 BlockPosition 保持不变(因此不会重新发布,见上文),但我对 BlockEntity 进行了一些更改:

class BlockEntity
{
    private $bid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="block",
     *     cascade={"remove", "persist"},
     *     orphanRemoval=true)
     */
    private $placements;

    /**
     * Get an ArrayCollection of BlockPositionEntity that are assigned to this Block
     * @return ArrayCollection
     */
    public function getPositions()
    {
        $positions = new ArrayCollection();
        foreach($this->getPlacements() as $placement) {
            $positions->add($placement->getPosition());
        }

        return $positions;
    }

    /**
     * Set BlockPlacementsEntity from provided ArrayCollection of positionEntity
     * requires
     *   cascade={"remove, "persist"}
     *   orphanRemoval=true
     *   on the association of $this->placements
     * @param ArrayCollection $positions
     */
    public function setPositions(ArrayCollection $positions)
    {
        // remove placements and skip existing placements.
        foreach ($this->placements as $placement) {
            if (!$positions->contains($placement->getPosition())) {
                $this->placements->removeElement($placement);
            } else {
                $positions->removeElement($placement->getPosition()); // remove from positions to add.
            }
        }

        // add new placements
        foreach ($positions as $position) {
            $placement = new BlockPlacementEntity();
            $placement->setPosition($position);
            // sortorder is irrelevant at this stage.
            $placement->setBlock($this); // auto-adds placement
        }
    }
}

因此,您可以看到 BlockEntity 现在正在处理positions实体中根本不存在的参数。这是相关的表单组件:

$builder
    ->add('positions', 'Symfony\Bridge\Doctrine\Form\Type\EntityType', [
        'class' => 'Zikula\BlocksModule\Entity\BlockPositionEntity',
        'choice_label' => 'name',
        'multiple' => true,
    ])

请注意,自从我的第一篇文章以来,我已更改为 Symfony 2.8 表单样式

这会在页面上呈现一个多选元素,该元素接受任意数量的位置并在提交时将它们转换为 ArrayCollection。然后,这由表单的 get/set position 方法直接处理,并且这些方法与放置属性相互转换。cascade和很重要,orphanRemoval因为它们会注意“清理”剩余的实体。

因为它是上面的引用,这里是 BlockPlacementsetBlock($block)方法:

public function setBlock(BlockEntity $block = null)
{
    if ($this->block !== null) {
        $this->block->removePlacement($this);
    }

    if ($block !== null) {
        $block->addPlacement($this);
    }

    $this->block = $block;

    return $this;
}
于 2015-12-02T13:18:04.737 回答