Warnings logged for missing field block plugins when enabling layout builder on an entity view display for the first time

Created on 4 October 2024, 6 months ago

Problem/Motivation

πŸ“Œ Replace "Expose all fields as blocks to Layout Builder" configuration with feature flag Active makes it so that block plugins for fields are not created unless at least one bundle from an entity type has a layout builder entity view display enabled.

When enabling layout builder on an entity view display for the first time, layout builder creates the default layout and places block plugins for each field on the display. This generates warnings like this in the logs:

The "field_block:taxonomy_term:test:description" was not found

This is coming from BlockManager::handlePluginNotFound.

Nothing breaks and things work as expected, but these log messages can be alarming.

Steps to reproduce

  1. Turn on dblog
  2. Enable layout builder module
  3. Enable layout builder for an entity view display for one of the default content types. Note the content type's existing traditional entity view display must have at least one field set to be displayed already.
  4. Look at dblog report and see the warning messages

Proposed resolution

Not sure. But I suspect we need to invalidate the block plugin cache somewhere between enabling layout builder view display and layout builder placing the field block plugins in a layout.

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

πŸ› Bug report
Status

Active

Version

11.0 πŸ”₯

Component

layout_builder.module

Created by

πŸ‡ΊπŸ‡ΈUnited States bkosborne New Jersey, USA

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

Merge Requests

Comments & Activities

  • Issue created by @bkosborne
  • πŸ‡³πŸ‡ΏNew Zealand quietone
  • πŸ‡ͺπŸ‡ΈSpain penyaskito Seville πŸ’ƒ, Spain πŸ‡ͺπŸ‡Έ, UTC+2 πŸ‡ͺπŸ‡Ί

    This might not be only entity view displays, but any entity using layout builder.

    See πŸ› [warning] The "system_menu_block:welcome" block plugin was not found Active . Easiest way to reproduce is ddev drush si --yes demo_umami

  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA

    Given this will affect Drupal CMS until we switch to XB and it makes the system look buggy, can we figure out a way to try to suppress these somehow soon? Even a hacky way?

    πŸ› Block plugin not found warnings on install Active

  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA
  • First commit to issue fork.
  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    I wrote a test for this and found the cause -- the issue is the parent::preSave() call in \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::preSave(), which invokes some inline block related hooks that expect all the block plugins in the section list to be instantiate-able, but the field block definition doesn't exist yet because apparently the block cache hasn't been cleared.

    Except that it has. LB does clear the block plugin cache when a field is created (in \Drupal\layout_builder\Hook\LayoutBuilderHooks::fieldConfigInsert()). In my test, I am very explicitly doing that. You'd expect that would cause the block to become available right away, but no, because \Drupal\layout_builder\Plugin\Derivative\FieldBlockDeriver::getFieldMap() is only exposing fields used by entity view displays that have layout. The problem is...the view display hasn't been saved yet: We're still in the middle of pre-saving it!

    So I think that's your problem right there. I'm not sure what the correct solution is here because is some very sensitive logic. But at least we have a test now so we'll know we fixed it.

  • Merge request !10872Wrote a test for this β†’ (Open) created by phenaproxima
  • Pipeline finished with Failed
    3 months ago
    Total: 165s
    #393056
  • πŸ‡ΊπŸ‡ΈUnited States tim.plunkett Philadelphia
  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I am adding the STR from Comment #3 to the issue summary. I have noticed the same thing.

Production build 0.71.5 2024