Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow to change criteria before cleaning baskets #24

Merged
merged 2 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

declare(strict_types=1);

namespace Frosh\ShareBasket\Core\Content\ShareBasket\Events;

use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
use Symfony\Contracts\EventDispatcher\Event;

class ShareBasketCleanupCriteriaEvent extends Event
{
public function __construct(
private readonly Criteria $criteria,
)
{
}

public function getCriteria(): Criteria
{
return $this->criteria;
}
}
6 changes: 6 additions & 0 deletions src/Services/ShareBasketService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

use Frosh\ShareBasket\Core\Content\ShareBasket\Aggregate\ShareBasketLineItem\ShareBasketLineItemEntity;
use Frosh\ShareBasket\Core\Content\ShareBasket\Events\ShareBasketAddLineItemEvent;
use Frosh\ShareBasket\Core\Content\ShareBasket\Events\ShareBasketCleanupCriteriaEvent;
use Frosh\ShareBasket\Core\Content\ShareBasket\Events\ShareBasketPrepareLineItemEvent;
use Frosh\ShareBasket\Core\Content\ShareBasket\ShareBasketDefinition;
use Frosh\ShareBasket\Core\Content\ShareBasket\ShareBasketEntity;
Expand Down Expand Up @@ -167,6 +168,11 @@ public function cleanup(): ?EntityWrittenContainerEvent

$criteria->addAssociation('lineItems');

$this->eventDispatcher->dispatch(
new ShareBasketCleanupCriteriaEvent($criteria),
ShareBasketCleanupCriteriaEvent::class
);

$shareBasketEntities = $this->shareBasketRepository->searchIds($criteria, Context::createDefaultContext());

if (empty($ids = $shareBasketEntities->getIds())) {
Expand Down