Error when enabling lupus_decoupled_layout_builder

Created on 6 February 2025, about 2 months ago

Problem/Motivation

When enabling the module and layout_builder at the same time, a fatal error is created:

Steps to reproduce

- Launch new "try online" gitpod
- ddev drush en lupus_decoupled_layout_builder -y

see error

In EntityTypeRepository.php line 111:
                                                                                                                
  The Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay class does not correspond to an entity type.  
                                                                                                                
🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇦🇹Austria fago Vienna

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

Merge Requests

Comments & Activities

  • Issue created by @fago
  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    Minimum modules required to trigger the error on my ddev instance:

    Note, no lupus_decoupled modules are involved:

    $ drush si
    $ drush en -y custom_elements
     [success] Successfully installed: custom_elements
    $ drush en -y layout_builder
    The following module(s) will be installed: layout_builder, layout_discovery
    
    
    In EntityTypeRepository.php line 111:
    
      The Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay class does not correspond to an enti
      ty type.
    

    So this seems a custom_elements bug, and feels related to the fact that we are 'unlinking' the LayoutBuilderEntityViewDisplay class:

    function custom_elements_entity_type_alter(array &$entity_types) {
      // Use the right class depending on layout builder being used.
      $class = \Drupal::moduleHandler()->moduleExists('layout_builder') ? CustomElementsLayoutBuilderEntityViewDisplay::class : CustomElementsEntityViewDisplay::class;
      /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */
      $entity_types['entity_view_display']
        ->setClass($class);
    }
    

    I will trace this and add a custom_elements issue today.

    The error looks bad but it seems not to do anything. I find nothing in the status report, no strange behavior.

  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    Fix in 🐛 Error enabling layout_builder Active . If you approve that issue + want, I can release custom_elements 3.0.2 tomorrow, and add a MR here that depends on that minimum version.

  • Merge request !118auto-enable layout builder → (Merged) created by fago
  • 🇦🇹Austria fago Vienna

    The fix works! Let's also auto-enable layout builder and mere this MR when the CE release is out.

  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    roderik changed the visibility of the branch 3504718- to hidden.

  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    roderik changed the visibility of the branch 3504718- to active.

  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    CE release is out; requirement added to composer.json. Build is green.

    Note this is a new "require" line because previously, we depended on custom_elements only indirectly through lupus_ce_renderer..

    I was tempted for a moment to drop support for CE v2, just because we might introduce some functionality later that depends on CE v3 without realizing it.

    But 1) that's not up to this specific issue; 2) I can't really think of such functionality (yet; let's see about CE v3.1)

    As an aside: the recipes that ship with configuration all require custom_elements v3. But I assume 1) they would error out when trying to install config onCE v2; 2) no new installation will ever install v2 anyway.

  • Pipeline finished with Skipped
    about 2 months ago
    #418397
    • fago committed 76bcabaf on 1.x
      Issue #3504718 by fago, roderik: Fix error when enabling layout_builder...
  • 🇦🇹Austria fago Vienna

    thanks! recipes should be able to require v3.

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

Production build 0.71.5 2024