Prevent error on the 'view_item_list' event call

Created on 10 March 2025, 26 days ago

Problem/Motivation

We call 'view_item_list' from 'commerce_product_view_item_list' views handler.

It has the following code:

        if ($result->_entity instanceof ProductVariationInterface) {
          $items[] = $result->_entity;
        }
        elseif ($result->_entity instanceof ProductInterface) {
          $items[] = $result->_entity->getDefaultVariation();
        }

In the 'elseif' section, we get the default variation but don't check that the product can be without variation in some circumstances. As a result, the next error occurs:

TypeError: Drupal\google_tag\Plugin\GoogleTag\Event\Commerce\ViewItemList::Drupal\google_tag\Plugin\GoogleTag\Event\Commerce\{closure}(): Argument #1 ($item) must be of type Drupal\commerce_product\Entity\ProductVariationInterface, null given in Drupal\google_tag\Plugin\GoogleTag\Event\Commerce\ViewItemList->Drupal\google_tag\Plugin\GoogleTag\Event\Commerce\{closure}() (line 61 of /var/www/html/project/web/modules/contrib/google_tag/src/Plugin/GoogleTag/Event/Commerce/ViewItemList.php).

Proposed resolution

Check that the product has a variation

πŸ“Œ Task
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡¦Ukraine init90 Ukraine

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024