GroupeAdmin.php 6.78 KB
Newer Older
Julien Jorry committed
1 2 3 4
<?php

namespace App\Admin;

Julien Jorry committed
5 6
use App\Entity\Comptoir;
use App\Entity\Siege;
7
use FOS\CKEditorBundle\Form\Type\CKEditorType;
Julien Jorry committed
8
use Sonata\AdminBundle\Admin\AbstractAdmin;
9
use Sonata\AdminBundle\Datagrid\DatagridMapper;
Julien Jorry committed
10 11
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Form\FormMapper;
Julien Jorry committed
12
use Sonata\AdminBundle\Route\RouteCollection;
Julien Jorry committed
13
use Sonata\AdminBundle\Show\ShowMapper;
Julien Jorry committed
14
use Sonata\DoctrineORMAdminBundle\Filter\CallbackFilter;
15
use Sonata\FormatterBundle\Form\Type\SimpleFormatterType;
Julien Jorry committed
16 17 18 19 20
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
use Symfony\Component\Form\Extension\Core\Type\HiddenType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
Julien Jorry committed
21

22 23 24
/**
 * Administration des groupes locaux
 *
Julien Jorry committed
25
 * KOHINOS : Outil de gestion de Monnaie Locale Complémentaire
26 27
 * @author Julien Jorry <julien.jorry@gmail.com>
 */
Julien Jorry committed
28 29
class GroupeAdmin extends AbstractAdmin
{
Julien Jorry committed
30 31 32 33 34
    protected $datagridValues = [
        '_sort_order' => 'ASC',
        '_sort_by' => 'name',
    ];

Julien Jorry committed
35 36 37 38 39 40
    public function configure()
    {
        parent::configure();
        $this->classnameLabel = "Groupes locaux";
    }

Julien Jorry committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54
    /**
    * {@inheritdoc}
    */
    protected function configureShowFields(ShowMapper $showMapper)
    {
    }

    /**
    * {@inheritdoc}
    */
    protected function configureFormFields(FormMapper $formMapper)
    {
        $groupe = $this->getSubject();
        $formMapper
55
            ->with("Création d'un groupe")
Julien Jorry committed
56 57 58 59 60 61 62 63 64 65
                ->add('siege', HiddenType::class, array(
                    'data' => 1,
                    'data_class' => null,
                    'entity_class' => Siege::class,
                    'em' => $this->getConfigurationPool()->getContainer()->get('doctrine')->getManager()
                ))
                ->add('name', TextType::class, array(
                    'label' => 'Nom du groupe :',
                    'required' => true
                ))
66 67 68 69
                ->add('content', CKEditorType::class, array(
                    'label' => 'Description :',
                    'required' => false,
                ))
70 71 72 73 74 75
                // ->add('content', SimpleFormatterType::class, [
                //     'format' => 'richhtml',
                //     'ckeditor_context' => 'default',
                //     'label' => 'Description :',
                //     'required' => false,
                // ])
Julien Jorry committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
                ->add('comptoirs', CollectionType::class, array(
                    'label' => 'Comptoirs',
                    'entry_type' => EntityType::class,
                    'entry_options' => array(
                        'class' => Comptoir::class,
                        'choices' =>  $this->getConfigurationPool()->getContainer()->get('doctrine')->getRepository(Comptoir::class)->findAll(),
                        'choice_label' => 'slug',
                        'placeholder' => 'Comptoir',
                        'required' => false,
                        'label' => false),
                    'by_reference' => false,
                    'allow_add' => true,
                    'allow_delete' => true
                ))
                ->add('enabled', CheckboxType::class, array(
                    'label' => 'Activé ?',
                    'required' => false,
                    'label_attr' => array('class' => 'checkbox-inline')
                ))
            ->end()
Julien Jorry committed
96 97 98
        ;
    }

Julien Jorry committed
99 100 101 102 103 104 105 106 107 108 109
    public function postPersist($object)
    {
        $this->addFlash(
            'sonata_flash_success',
            $this->trans(
                "Après avoir créer le groupe %name%, il est conseiller d'ajouter un gestionnaire de groupe",
                ['%name%' => $this->escapeHtml($this->admin->toString($object))]
            )
        );
    }

110 111 112 113 114 115
    /**
    * {@inheritdoc}
    */
    protected function configureDatagridFilters(DatagridMapper $datagridMapper): void
    {
        $datagridMapper
Julien Jorry committed
116 117 118 119 120 121 122
            ->add('full_text', CallbackFilter::class, [
                'callback' => [$this, 'getFullTextFilter'],
                'field_type' => TextType::class,
                'label' => "Recherche par nom",
                'show_filter' => true,
                'advanced_filter' => false
            ])
123 124 125
        ;
    }

Julien Jorry committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139
    public function getFullTextFilter($queryBuilder, $alias, $field, $value)
    {
        if (!$value['value']) {
            return;
        }

        // Use `andWhere` instead of `where` to prevent overriding existing `where` conditions
        $queryBuilder->andWhere(
            $queryBuilder->expr()->like($alias.'.name', $queryBuilder->expr()->literal('%' . $value['value'] . '%'))
        );

        return true;
    }

Julien Jorry committed
140 141 142 143 144
    protected function configureRoutes(RouteCollection $collection)
    {
        $collection->remove('delete');
    }

145 146 147 148 149
    public function getRouteShowOnFront($object)
    {
        return $this->routeGenerator->generate('show_groupe', array('slug' => $object->getSlug()));
    }

Julien Jorry committed
150 151 152 153 154
    /**
    * {@inheritdoc}
    */
    protected function configureListFields(ListMapper $listMapper)
    {
Julien Jorry committed
155 156 157
        unset($this->listModes['mosaic']);
        $listMapper
            ->addIdentifier('name', null, array('label' => 'Nom du groupe'))
158 159 160
            ->add('gestionnaires', null, array('label' => 'Gestionnaires'))
            ->add('content', 'html', array('truncate' => array('length' => 80), 'label' => 'Description'))
            ->add('compte', null, array('label' => 'Solde'))
Julien Jorry committed
161 162 163 164
            ->add(
                'getPrestatairesCount',
                null,
                [
Julien Jorry committed
165
                    'label' => 'Nombre de prestas',
Julien Jorry committed
166 167 168 169
                    'sortable' => true,
                    'sort_field_mapping' => ['fieldName' => 'id'],
                    'sort_parent_association_mappings' => [],
                ]
170 171 172 173 174 175 176 177 178
            )->add(
                'getAdherentsCount',
                null,
                [
                    'label' => 'Nb adherents',
                    'sortable' => true,
                    'sort_field_mapping' => ['fieldName' => 'id'],
                    'sort_parent_association_mappings' => [],
                ]
Julien Jorry committed
179 180 181 182 183 184 185 186 187 188 189
            )
            ->add(
                'getComptoirsCount',
                null,
                [
                    'label' => 'Nb comptoirs',
                    'sortable' => true,
                    'sort_field_mapping' => ['fieldName' => 'id'],
                    'sort_parent_association_mappings' => [],
                ]
            )
190 191 192 193 194 195 196 197 198 199
            ->add('enabled', null, array(
                'label' => 'Activé',
                'editable' => true
            ))
            ->add('_action', null, [
                'actions' => [
                    'show' => ['template' => '@SonataAdmin/CRUD/list__action_showonfront.html.twig'],
                    'edit' => []
                ]
            ])
Julien Jorry committed
200
        ;
Julien Jorry committed
201 202
    }
}