mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
fix cs
This commit is contained in:
parent
b2fb86111d
commit
c2061110dd
@ -35,7 +35,6 @@ use Symfony\Component\Security\Core\User\UserInterface;
|
|||||||
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
||||||
use Symfony\Component\Serializer\Annotation\Groups;
|
use Symfony\Component\Serializer\Annotation\Groups;
|
||||||
use Symfony\Component\Serializer\Annotation\SerializedName;
|
use Symfony\Component\Serializer\Annotation\SerializedName;
|
||||||
use function count;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Activity.
|
* Class Activity.
|
||||||
@ -238,23 +237,14 @@ class Activity implements AccompanyingPeriodLinkedWithSocialIssuesEntityInterfac
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function ensureSocialActionConsistency(): void
|
|
||||||
{
|
|
||||||
$ancestors = SocialAction::findAncestorSocialActions($this->getSocialActions());
|
|
||||||
|
|
||||||
foreach ($ancestors as $ancestor) {
|
|
||||||
$this->removeSocialAction($ancestor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a social issue
|
* Add a social issue.
|
||||||
*
|
*
|
||||||
* Note: the social issue consistency (the fact that only yougest social issues
|
* Note: the social issue consistency (the fact that only yougest social issues
|
||||||
* are kept) is processed by an entity listener:
|
* are kept) is processed by an entity listener:
|
||||||
|
*
|
||||||
* @see{\Chill\PersonBundle\AccompanyingPeriod\SocialIssueConsistency\AccompanyingPeriodSocialIssueConsistencyEntityListener}
|
* @see{\Chill\PersonBundle\AccompanyingPeriod\SocialIssueConsistency\AccompanyingPeriodSocialIssueConsistencyEntityListener}
|
||||||
*
|
*
|
||||||
* @param SocialIssue $socialIssue
|
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function addSocialIssue(SocialIssue $socialIssue): self
|
public function addSocialIssue(SocialIssue $socialIssue): self
|
||||||
@ -652,4 +642,13 @@ class Activity implements AccompanyingPeriodLinkedWithSocialIssuesEntityInterfac
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function ensureSocialActionConsistency(): void
|
||||||
|
{
|
||||||
|
$ancestors = SocialAction::findAncestorSocialActions($this->getSocialActions());
|
||||||
|
|
||||||
|
foreach ($ancestors as $ancestor) {
|
||||||
|
$this->removeSocialAction($ancestor);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,10 @@ use Doctrine\ORM\Event\LifecycleEventArgs;
|
|||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Prophecy\PhpUnit\ProphecyTrait;
|
use Prophecy\PhpUnit\ProphecyTrait;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
* @coversNothing
|
||||||
|
*/
|
||||||
final class ActivityTest extends TestCase
|
final class ActivityTest extends TestCase
|
||||||
{
|
{
|
||||||
use ProphecyTrait;
|
use ProphecyTrait;
|
||||||
@ -107,5 +111,4 @@ final class ActivityTest extends TestCase
|
|||||||
$this->assertNotContains($parent, $activity->getSocialIssues());
|
$this->assertNotContains($parent, $activity->getSocialIssues());
|
||||||
$this->assertNotContains($child, $activity->getSocialIssues());
|
$this->assertNotContains($child, $activity->getSocialIssues());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -128,6 +128,44 @@ class SocialAction
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* In a SocialIssues's collection, find the elements which are an ancestor of
|
||||||
|
* other elements.
|
||||||
|
*
|
||||||
|
* The difference of the given list (thus, the elements which are **not** kept
|
||||||
|
* in the returned collection) are the most-grand-child elements of the list.
|
||||||
|
*
|
||||||
|
* Removing those elements of the Collection (which is not done by this method)
|
||||||
|
* will ensure that only the most descendent elements are present in the collection,
|
||||||
|
* (any ancestor of another element are present).
|
||||||
|
*
|
||||||
|
* @param Collection|SocialAction[] $socialActions
|
||||||
|
*
|
||||||
|
* @return Collection|SocialAction[] a list with the elements of the given list which are parent of other elements in the given list
|
||||||
|
*/
|
||||||
|
public static function findAncestorSocialActions(Collection $socialActions): Collection
|
||||||
|
{
|
||||||
|
$ancestors = new ArrayCollection();
|
||||||
|
|
||||||
|
foreach ($socialActions as $candidateChild) {
|
||||||
|
if ($ancestors->contains($candidateChild)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($socialActions as $candidateParent) {
|
||||||
|
if ($ancestors->contains($candidateParent)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($candidateChild->isDescendantOf($candidateParent)) {
|
||||||
|
$ancestors->add($candidateParent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $ancestors;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Collection|self[]
|
* @return Collection|self[]
|
||||||
*/
|
*/
|
||||||
@ -233,6 +271,23 @@ class SocialAction
|
|||||||
return $this->getParent() instanceof self;
|
return $this->getParent() instanceof self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recursive method which return true if the current $action
|
||||||
|
* is a descendant of the $action given in parameter.
|
||||||
|
*/
|
||||||
|
public function isDescendantOf(SocialAction $action): bool
|
||||||
|
{
|
||||||
|
if (!$this->hasParent()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getParent() === $action) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->getParent()->isDescendantOf($action);
|
||||||
|
}
|
||||||
|
|
||||||
public function removeChild(self $child): self
|
public function removeChild(self $child): self
|
||||||
{
|
{
|
||||||
if ($this->children->removeElement($child)) {
|
if ($this->children->removeElement($child)) {
|
||||||
@ -307,59 +362,4 @@ class SocialAction
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recursive method which return true if the current $action
|
|
||||||
* is a descendant of the $action given in parameter.
|
|
||||||
*/
|
|
||||||
public function isDescendantOf(SocialAction $action): bool
|
|
||||||
{
|
|
||||||
if (!$this->hasParent()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->getParent() === $action) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->getParent()->isDescendantOf($action);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* In a SocialIssues's collection, find the elements which are an ancestor of
|
|
||||||
* other elements.
|
|
||||||
*
|
|
||||||
* The difference of the given list (thus, the elements which are **not** kept
|
|
||||||
* in the returned collection) are the most-grand-child elements of the list.
|
|
||||||
*
|
|
||||||
* Removing those elements of the Collection (which is not done by this method)
|
|
||||||
* will ensure that only the most descendent elements are present in the collection,
|
|
||||||
* (any ancestor of another element are present).
|
|
||||||
*
|
|
||||||
* @param Collection|SocialAction[] $socialActions
|
|
||||||
*
|
|
||||||
* @return Collection|SocialAction[] a list with the elements of the given list which are parent of other elements in the given list
|
|
||||||
*/
|
|
||||||
public static function findAncestorSocialActions(Collection $socialActions): Collection
|
|
||||||
{
|
|
||||||
$ancestors = new ArrayCollection();
|
|
||||||
|
|
||||||
foreach ($socialActions as $candidateChild) {
|
|
||||||
if ($ancestors->contains($candidateChild)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($socialActions as $candidateParent) {
|
|
||||||
if ($ancestors->contains($candidateParent)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($candidateChild->isDescendantOf($candidateParent)) {
|
|
||||||
$ancestors->add($candidateParent);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $ancestors;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user