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.

86 lines
3.2KB

  1. <?php
  2. namespace Lc\SovBundle\Field;
  3. use EasyCorp\Bundle\EasyAdminBundle\Contracts\Field\FieldInterface;
  4. use EasyCorp\Bundle\EasyAdminBundle\Field\FieldTrait;
  5. use Lc\SovBundle\Form\Type\FileManagerType;
  6. use Lc\SovBundle\Form\Type\GalleryManagerType;
  7. use Symfony\Component\Form\Extension\Core\Type\CollectionType;
  8. class GalleryManagerField implements FieldInterface
  9. {
  10. use FieldTrait;
  11. public const OPTION_ALLOW_ADD = 'allowAdd';
  12. public const OPTION_ALLOW_DELETE = 'allowDelete';
  13. public const OPTION_ENTRY_IS_COMPLEX = 'entryIsComplex';
  14. public const OPTION_ENTRY_TYPE = 'entryType';
  15. public const OPTION_SHOW_ENTRY_LABEL = 'showEntryLabel';
  16. public static function new(string $propertyName, ?string $label = null): self
  17. {
  18. return (new self())
  19. ->setProperty($propertyName)
  20. ->setLabel($label)
  21. ->setTemplatePath('@LcSov/tabler/crud/field/collection.html.twig')
  22. ->setFormType(CollectionType::class)
  23. ->addCssClass('field-collection')
  24. ->addJsFiles('bundles/lcsov/js/form-type-collection.js')
  25. ->addJsFiles('bundles/lcsov/js/form-type-file-manager.js')
  26. ->addJsFiles('bundles/lcsov/js/jquery-ui/jquery-ui.min.js')
  27. ->setFormTypeOption('allow_add', true)
  28. ->setFormTypeOption('allow_delete', true)
  29. ->setFormTypeOption('entry_options', array('label'=> false))
  30. ->setFormTypeOption('entry_type', FileManagerType::class)
  31. ->setFormTypeOption('attr', array('class'=> 'field-collection-group'))
  32. ->setFormTypeOption('row_attr', array('data-sortable'=> true))
  33. ->hideOnIndex();
  34. //->setEntryType(FileManagerType::class);
  35. //->setFormTypeOption('show_entry_label', false);
  36. }
  37. public function allowAdd(bool $allow = true): self
  38. {
  39. $this->setCustomOption(self::OPTION_ALLOW_ADD, $allow);
  40. return $this;
  41. }
  42. public function allowDelete(bool $allow = true): self
  43. {
  44. $this->setCustomOption(self::OPTION_ALLOW_DELETE, $allow);
  45. return $this;
  46. }
  47. /**
  48. * Set this option to TRUE if the collection items are complex form types
  49. * composed of several form fields (EasyAdmin applies a special rendering to make them look better).
  50. */
  51. public function setEntryIsComplex(bool $isComplex): self
  52. {
  53. $this->setCustomOption(self::OPTION_ENTRY_IS_COMPLEX, $isComplex);
  54. return $this;
  55. }
  56. public function setEntryType(string $formTypeFqcn): self
  57. {
  58. $this->setCustomOption(self::OPTION_ENTRY_TYPE, $formTypeFqcn);
  59. return $this;
  60. }
  61. public function showEntryLabel(bool $showLabel = true): self
  62. {
  63. $this->setCustomOption(self::OPTION_SHOW_ENTRY_LABEL, $showLabel);
  64. return $this;
  65. }
  66. }