You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AssociationField.php 6.6KB

2 jaren geleden
3 jaren geleden
2 jaren geleden
3 jaren geleden
3 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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 setFilterOnMerchantViaSection(MerchantInterface $merchant): self
  59. {
  60. $this->queryBuilderParameters['merchantViaSection'] = $merchant;
  61. return $this;
  62. }
  63. public function setFilterOnDevAlias(string $devAlias): self
  64. {
  65. $this->queryBuilderParameters['devAlias'] = $devAlias;
  66. return $this;
  67. }
  68. public function setFilterIsOnline(): self
  69. {
  70. $this->queryBuilderParameters['status'] = 1;
  71. return $this;
  72. }
  73. public function setLeftJoin($entityName): self
  74. {
  75. $this->queryBuilderParameters['leftJoin'][] = $entityName;
  76. return $this;
  77. }
  78. public function addAndWhere($whereClause, $key, $value): self
  79. {
  80. $this->queryBuilderParameters['andWhere'][] = [
  81. 'whereClause' => $whereClause,
  82. 'key' => $key,
  83. 'value' => $value
  84. ];
  85. return $this;
  86. }
  87. public function addOrderBy($field, $direction = 'ASC'): self
  88. {
  89. $this->queryBuilderParameters['orderBy'][] = $field;
  90. $this->queryBuilderParameters['orderByDirection'][] = $direction;
  91. return $this;
  92. }
  93. public function initQueryBuilder(): self
  94. {
  95. $param = $this->queryBuilderParameters;
  96. $this->setFormTypeOption(
  97. 'query_builder',
  98. function (EntityRepository $er) use ($param) {
  99. $qb = $er->createQueryBuilder('e');
  100. if (isset($param['section'])) {
  101. $qb->andWhereSection('e', $param['section']);
  102. }
  103. if (isset($param['merchant'])) {
  104. $qb->andWhereMerchant('e', $param['merchant']);
  105. }
  106. if (isset($param['merchantManyToMany'])) {
  107. $qb->andWhereMerchantManyToMany('e', $param['merchantManyToMany']);
  108. }
  109. if (isset($param['merchantViaSection'])) {
  110. $qb->leftJoin('e.section', 's');
  111. $qb->andWhereMerchant('s', $param['merchantViaSection']);
  112. }
  113. if (isset($param['status'])) {
  114. $qb->andWhere('e.status = :status')->setParameter('status', $param['status']);
  115. }
  116. if (isset($param['orderBy'])) {
  117. foreach ($param['orderBy'] as $i => $field) {
  118. $qb->addOrderBy('e.' . $param['orderBy'][$i], $param['orderByDirection'][$i]);
  119. }
  120. }
  121. if (isset($param['leftJoin'])) {
  122. foreach ($param['leftJoin'] as $i => $entityName) {
  123. $qb->leftJoin('e.' . $entityName, $entityName)->addSelect($entityName);
  124. }
  125. }
  126. if (isset($param['andWhere'])) {
  127. foreach ($param['andWhere'] as $i => $whereClause) {
  128. $qb->andWhere($whereClause['whereClause'])->setParameter($whereClause['key'], $whereClause['value']);
  129. }
  130. }
  131. /*if (isset($param['devAlias'])) {
  132. $qb->andWhere('e.devAlias = :devAlias')->setParameter(
  133. 'devAlias',
  134. $param['devAlias']
  135. );
  136. }*/
  137. return $qb;
  138. }
  139. );
  140. return $this;
  141. }
  142. public function autocomplete(): self
  143. {
  144. $this->setCustomOption(self::OPTION_AUTOCOMPLETE, true);
  145. return $this;
  146. }
  147. public function renderAsNativeWidget(bool $asNative = true): self
  148. {
  149. $this->setCustomOption(self::OPTION_WIDGET, $asNative ? self::WIDGET_NATIVE : self::WIDGET_AUTOCOMPLETE);
  150. return $this;
  151. }
  152. public function setCrudController(string $crudControllerFqcn): self
  153. {
  154. $this->setCustomOption(self::OPTION_CRUD_CONTROLLER, $crudControllerFqcn);
  155. return $this;
  156. }
  157. }