WSOD when creating a User reference field

Created on 22 October 2024, 5 months ago

Describe your bug or feature request.

I am working on a new project that utilizes Commerce 3.x and Drupal 11.0. When I tried to add a User reference field to the Order Item - entity type or bundle the field is added to is not important as long as the field is Entity Reference => User. After choosing User reference type in the multi-step field creation form I am getting the following error:

The website encountered an unexpected error. Try again later.

TypeError: Drupal\Component\Utility\Html::escape(): Argument #1 ($text) must be of type string, null given, called in /var/www/html/web/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php on line 457 in Drupal\Component\Utility\Html::escape() (line 431 of core/lib/Drupal/Component/Utility/Html.php

The error is related to the EntityReferenceSelection plugin missing a base_plugin_label. As a result of that Html::escape() is provided with NULL argument and since Drupal 11 expected argument type is string. That results in unrecoverable error and WSOD.

Please mind that the lack of base_plugin_label is caused by no plugin deriver being responsible for commerce namespace but the plugin ID is commerce:user. The expected plugin id is default:user_search_commerce or similar.

If a bug, provide steps to reproduce it from a clean install.

- Install Commerce Order
- Go to /admin/commerce/config/order-item-types/default/edit/fields
- Click "Create a new field"
- Choose "Reference". Click Continue.
- Choose "User" and give the field a label. Click Continue.
- WSOD

🐛 Bug report
Status

Active

Version

3.0

Component

Order

Created by

🇳🇴Norway zaporylie

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

Merge Requests

Comments & Activities

  • Issue created by @zaporylie
  • 🇦🇺Australia 2pha

    I got this too..
    The user entity reference field would work for my up until I installed the commerce_order module.
    Something to do with the Plugin\EntityReferenceSelection\UserSelection in the commerce_order module I suppose..

  • First commit to issue fork.
  • 🇮🇱Israel jsacksick

    As soon as we set the group to "default", indeed the bug is fixed, but you cannot select our custom selection handler from the UI... due to the following code:

     $selection_group_plugin = $selection_group_id . ':' . $this->getSetting('target_type');
    $handlers_options[$selection_group_plugin] = Html::escape($selection_plugins[$selection_group_id][$selection_group_plugin]['base_plugin_label']);
    

    On D10 you can select it, but it looks buggy as the option offered in the UI has no label... Should we just not allow the selection from the UI? Alternative would be to set the base_plugin_label from an alter hook but this is an hackish approach... Thoughts?

  • 🇮🇱Israel jsacksick

    The fix from the MR gives us the ability to choose our selection handler from the UI while retaining the existing ID which means if the selection handler is used by an existing field or custom code, it won't break... So tempted to just go with the workaround...
    @zaporylie, @2pha: thoughts?

  • Pipeline finished with Skipped
    3 months ago
    #387293
    • jsacksick committed 97049f49 on 3.0.x
      Issue #3482451 by jsacksick, zaporylie, 2pha: WSOD when creating a User...
  • 🇮🇱Israel jsacksick

    Considering the fix from the MR fixes the issue reported, I went ahead and merged the MR... The fix is doesn't break potential code relying on the plugin ID which doesn't change with the fix merged...

  • 🇦🇺Australia 2pha

    @jsacksick thanks.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024