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.

61 lines
1.9KB

  1. <?php
  2. namespace Lc\SovBundle\Field\Filter;
  3. use EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto;
  4. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  5. use Symfony\Component\Form\Extension\Core\Type\TextType;
  6. use Symfony\Component\Form\FormBuilderInterface;
  7. /**
  8. * @author La clic ! <contact@laclic.fr>
  9. */
  10. class TextFilter
  11. {
  12. use FilterTrait;
  13. public function buildProperty(FormBuilderInterface $builder, FieldDto $fieldDto, $options = array())
  14. {
  15. $builder->add(
  16. str_replace('.', '_', $fieldDto->getProperty()),
  17. TextType::class,
  18. array(
  19. 'required' => false,
  20. 'attr' => array(
  21. 'class' => ' input-sm',
  22. 'form' => 'filters-form',
  23. ),
  24. )
  25. );
  26. }
  27. public function applyFilter(RepositoryQueryInterface $repositoryQuery, string $fieldProperty, string $filteredValue = null)
  28. {
  29. if ($filteredValue !== null) {
  30. // if ($this->isRelationField($fieldProperty)) {
  31. //
  32. // $aliasRelation = $this->getFieldPropertyRelationAlias($fieldProperty);
  33. // if (array_search($aliasRelation, $repositoryQuery->getAllAliases()) === false) {
  34. // $repositoryQuery->innerJoin('entity.' . $aliasRelation, $aliasRelation);
  35. // }
  36. // $repositoryQuery->andWhere(
  37. // $fieldProperty . ' LIKE :' . $this->getFieldPropertySnake($fieldProperty) . ''
  38. // );
  39. // $repositoryQuery->setParameter(
  40. // $this->getFieldPropertySnake($fieldProperty),
  41. // '%' . $filteredValue . '%'
  42. // );
  43. // } else {
  44. $repositoryQuery->andWhere(
  45. '.' . $fieldProperty . ' LIKE :' . $fieldProperty . ''
  46. );
  47. $repositoryQuery->setParameter($fieldProperty, '%' . $filteredValue . '%');
  48. }
  49. }
  50. }