mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
85 lines
2.1 KiB
PHP
85 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Form\DataMapper;
|
|
|
|
use Chill\MainBundle\Entity\Center;
|
|
use Chill\MainBundle\Entity\Regroupment;
|
|
use Chill\MainBundle\Repository\RegroupmentRepository;
|
|
use Exception;
|
|
use Symfony\Component\Form\DataMapperInterface;
|
|
use Symfony\Component\Form\FormInterface;
|
|
use function count;
|
|
|
|
class ExportPickCenterDataMapper implements DataMapperInterface
|
|
{
|
|
protected RegroupmentRepository $regroupmentRepository;
|
|
|
|
/**
|
|
* @param array|Center[] $data
|
|
* @param $forms
|
|
*
|
|
* @throws Exception
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function mapDataToForms($data, $forms)
|
|
{
|
|
if (null === $data) {
|
|
return;
|
|
}
|
|
|
|
/** @var array<string, FormInterface> $form */
|
|
$form = iterator_to_array($forms);
|
|
|
|
$pickedRegroupment = [];
|
|
|
|
foreach ($this->regroupmentRepository->findAll() as $regroupment) {
|
|
[$contained, $notContained] = $regroupment->getCenters()->partition(static function (Center $center) {
|
|
});
|
|
|
|
if (0 === count($notContained)) {
|
|
$pickedRegroupment[] = $regroupment;
|
|
}
|
|
}
|
|
|
|
$form['regroupment']->setData($pickedRegroupment);
|
|
$form['centers']->setData($data);
|
|
}
|
|
|
|
/**
|
|
* @param iterable $forms
|
|
* @param array $data
|
|
*
|
|
* @return void
|
|
*/
|
|
public function mapFormsToData($forms, &$data)
|
|
{
|
|
/** @var array<string, FormInterface> $forms */
|
|
$forms = iterator_to_array($forms);
|
|
|
|
$centers = [];
|
|
|
|
foreach ($forms['center']->getData() as $center) {
|
|
$centers[spl_object_hash($center)] = $center;
|
|
}
|
|
|
|
foreach ($forms['regroupment']->getData() as $regroupment) {
|
|
/** @var Regroupment $regroupment */
|
|
foreach ($regroupment->getCenters() as $center) {
|
|
$centers[spl_object_hash($center)] = $center;
|
|
}
|
|
}
|
|
|
|
$data = array_values($centers);
|
|
}
|
|
}
|