No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

AssociationField.php 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. namespace Lc\CaracoleBundle\Field;
  3. use Doctrine\ORM\EntityRepository;
  4. use EasyCorp\Bundle\EasyAdminBundle\Contracts\Field\FieldInterface;
  5. use EasyCorp\Bundle\EasyAdminBundle\Field\FieldTrait;
  6. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  7. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  8. use Symfony\Bridge\Doctrine\Form\Type\EntityType;
  9. final class AssociationField implements FieldInterface
  10. {
  11. use FieldTrait;
  12. public const OPTION_AUTOCOMPLETE = 'autocomplete';
  13. public const OPTION_CRUD_CONTROLLER = 'crudControllerFqcn';
  14. public const OPTION_WIDGET = 'widget';
  15. public const OPTION_QUERY_BUILDER_CALLABLE = 'queryBuilderCallable';
  16. /** @internal this option is intended for internal use only */
  17. public const OPTION_RELATED_URL = 'relatedUrl';
  18. /** @internal this option is intended for internal use only */
  19. public const OPTION_DOCTRINE_ASSOCIATION_TYPE = 'associationType';
  20. public const WIDGET_AUTOCOMPLETE = 'autocomplete';
  21. public const WIDGET_NATIVE = 'native';
  22. /** @internal this option is intended for internal use only */
  23. public const PARAM_AUTOCOMPLETE_CONTEXT = 'autocompleteContext';
  24. protected $queryBuilderParameters = array();
  25. /**
  26. * @param string|false|null $label
  27. */
  28. public static function new(string $propertyName, $label = null): self
  29. {
  30. return (new self())
  31. ->setProperty($propertyName)
  32. ->setLabel($label)
  33. ->setTemplateName('crud/field/association')
  34. ->setFormType(EntityType::class)
  35. ->addCssClass('field-association')
  36. ->setCustomOption(self::OPTION_AUTOCOMPLETE, false)
  37. ->setCustomOption(self::OPTION_CRUD_CONTROLLER, null)
  38. ->setCustomOption(self::OPTION_WIDGET, self::WIDGET_AUTOCOMPLETE)
  39. ->setCustomOption(self::OPTION_QUERY_BUILDER_CALLABLE, null)
  40. ->setCustomOption(self::OPTION_RELATED_URL, null)
  41. ->setCustomOption(self::OPTION_DOCTRINE_ASSOCIATION_TYPE, null);
  42. }
  43. public function setFilterOnSection(SectionInterface $section): self
  44. {
  45. $this->queryBuilderParameters['section'] = $section;
  46. return $this;
  47. }
  48. public function setFilterOnMerchant(MerchantInterface $merchant): self
  49. {
  50. $this->queryBuilderParameters['merchant'] = $merchant;
  51. return $this;
  52. }
  53. public function setFilterOnMerchantManyToMany(MerchantInterface $merchant): self
  54. {
  55. $this->queryBuilderParameters['merchantManyToMany'] = $merchant;
  56. return $this;
  57. }
  58. public function setFilterOnDevAlias(string $devAlias): self
  59. {
  60. $this->queryBuilderParameters['devAlias'] = $devAlias;
  61. return $this;
  62. }
  63. public function setFilterIsOnline(): self
  64. {
  65. $this->queryBuilderParameters['status'] = 1;
  66. return $this;
  67. }
  68. public function setLeftJoin($entityName): self
  69. {
  70. $this->queryBuilderParameters['leftJoin'][] = $entityName;
  71. return $this;
  72. }
  73. public function addAndWhere($whereClause, $parameter): self
  74. {
  75. $this->queryBuilderParameters['leftJoin'][] = [
  76. 'whereClause' => $whereClause,
  77. 'parameter' => $parameter
  78. ];
  79. return $this;
  80. }
  81. public function addOrderBy($field, $direction = 'ASC'): self
  82. {
  83. $this->queryBuilderParameters['orderBy'][] = $field;
  84. $this->queryBuilderParameters['orderByDirection'][] = $direction;
  85. return $this;
  86. }
  87. public function initQueryBuilder(): self
  88. {
  89. $param = $this->queryBuilderParameters;
  90. $this->setFormTypeOption(
  91. 'query_builder',
  92. function (EntityRepository $er) use ($param) {
  93. $qb = $er->createQueryBuilder('e');
  94. if (isset($param['section'])) {
  95. $qb->andWhereSection('e', $param['section']);
  96. }
  97. if (isset($param['merchant'])) {
  98. $qb->andWhereMerchant('e', $param['merchant']);
  99. }
  100. if (isset($param['merchantManyToMany'])) {
  101. $qb->andWhereMerchantManyToMany('e', $param['merchantManyToMany']);
  102. }
  103. if (isset($param['status'])) {
  104. $qb->andWhere('e.status = :status')->setParameter('status', $param['status']);
  105. }
  106. if (isset($param['orderBy'])) {
  107. foreach ($param['orderBy'] as $i => $field) {
  108. $qb->addOrderBy('e.' . $param['orderBy'][$i], $param['orderByDirection'][$i]);
  109. }
  110. }
  111. if (isset($param['leftJoin'])) {
  112. foreach ($param['leftJoin'] as $i => $entityName) {
  113. $qb->leftJoin('e.' . $entityName, $entityName)->addSelect($entityName);
  114. }
  115. }
  116. if (isset($param['andWhere'])) {
  117. foreach ($param['andWhere'] as $i => $whereClause) {
  118. $qb->andWhere($whereClause['whereClause'])->setParamater($whereClause['parameter']);
  119. }
  120. }
  121. /*if (isset($param['devAlias'])) {
  122. $qb->andWhere('e.devAlias = :devAlias')->setParameter(
  123. 'devAlias',
  124. $param['devAlias']
  125. );
  126. }*/
  127. return $qb;
  128. }
  129. );
  130. return $this;
  131. }
  132. public function autocomplete(): self
  133. {
  134. $this->setCustomOption(self::OPTION_AUTOCOMPLETE, true);
  135. return $this;
  136. }
  137. public function renderAsNativeWidget(bool $asNative = true): self
  138. {
  139. $this->setCustomOption(self::OPTION_WIDGET, $asNative ? self::WIDGET_NATIVE : self::WIDGET_AUTOCOMPLETE);
  140. return $this;
  141. }
  142. public function setCrudController(string $crudControllerFqcn): self
  143. {
  144. $this->setCustomOption(self::OPTION_CRUD_CONTROLLER, $crudControllerFqcn);
  145. return $this;
  146. }
  147. }