custom/plugins/WbfkOffer/src/Subscriber/AddressListingPageLoadedEventSubscriber.php line 36

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Wbfk\Offer\Subscriber;
  4. use Shopware\Core\Checkout\Cart\SalesChannel\CartService;
  5. use Shopware\Storefront\Page\Address\Listing\AddressListingPageLoadedEvent;
  6. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  7. use Wbfk\Offer\Core\Checkout\Cart\Custom\CartMode;
  8. class AddressListingPageLoadedEventSubscriber implements EventSubscriberInterface
  9. {
  10.     public function __construct(private readonly CartService $cart)
  11.     {
  12.     }
  13.     /**
  14.      * @inheritDoc
  15.      */
  16.     public static function getSubscribedEvents(): array
  17.     {
  18.         return [
  19.             AddressListingPageLoadedEvent::class => 'onAddressListingPageLoaded',
  20.         ];
  21.     }
  22.     /**
  23.      * User can edit the address from `checkout/cart` and checkout/offer pages.
  24.      * By default, shopware redirects user to `checkout/cart` page after editing the address.
  25.      * To redirect the user to the same page from where the user has initiated the address edit, we need to set the redirectTo parameter.
  26.      *
  27.      * @param AddressListingPageLoadedEvent $event
  28.      * @return void
  29.      */
  30.     public function onAddressListingPageLoaded(AddressListingPageLoadedEvent $event): void
  31.     {
  32.         $cart $this->cart->getCart($event->getSalesChannelContext()->getToken(), $event->getSalesChannelContext());
  33.         /** @var ?CartMode $cartMode */
  34.         $cartMode $cart->getExtension('cartMode');
  35.         $currentCartMode $cartMode?->getSelectedCartMode() ?? 'cart';
  36.         $redirectTo $currentCartMode === 'cart' 'frontend.checkout.cart.page' 'frontend.wbfk-offer.checkout.offer.page';
  37.         $event->getPage()->assign(['redirectTo' => $redirectTo]);
  38.     }
  39. }