Paragraphs are Lost on Save when using Layout Paragraphs Builder (Experimental) β€” Frontend Editing

Created on 8 January 2025, 3 months ago

Problem/Motivation

When adding complex nesting paragraphs via the frontend editor, hitting save results in all paragraphs added since the last time the page was saved being lost. There are no console errors or errors in Drupal's log.

This does not seem to occur with basic paragraphs that have simple fields that do not reference other paragraphs.

Steps to reproduce

  1. Configure a field to display as Layout Paragraphs Builder (Experimental)
  2. Edit a page and add one or more paragraphs that contain fields that reference other paragraphs
  3. Save, paragraphs will be removed

I suspect that this is related to nested paragraphs. It seems that this is the only way I can reproduce this.

Screen recording of this behavior is attached.

πŸ› Bug report
Status

Active

Version

2.1

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States jpieper

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

Comments & Activities

  • Issue created by @jpieper
  • πŸ‡ΊπŸ‡ΈUnited States jpieper

    Update on this one. I believe this is related to my team's use of twig includes.

    For instance, this paragraph is lost on save. You can add it via the frontend editor, customize it, and it'll appear just fine up until the point you click the save button. Then it just disappears without any error or log message:

    {%
      set classes = [
      'paragraph',
      'paragraph--type--' ~ paragraph.bundle|clean_class,
      view_mode ? 'paragraph--view-mode--' ~ view_mode|clean_class,
      ]
    %}
    
    <div{{ attributes.addClass(classes) }}>
        {% include "@organisms/cta-bar/full-width-cta.twig" with {
            title: content.field_title.0,
            ...
        } %}
    </div>

    If I remove the `include` and switch to `{{ content }}` it works just fine. From what I can tell it's adhering to the requirements in the " Note for Themers" section on this page β†’ .

  • πŸ‡ΊπŸ‡ΈUnited States jpieper

    I'm closing this as everything works as it should.

    In case anyone else using includes in their Twig templates runs into this this issue was solved by including `only` in your include statements to prevent attributes from being available to all sub-templates.

    {%
      set classes = [
      'paragraph',
      'paragraph--type--' ~ paragraph.bundle|clean_class,
      view_mode ? 'paragraph--view-mode--' ~ view_mode|clean_class,
      ]
    %}
    
    <div{{ attributes.addClass(classes) }}>
        {% include "@organisms/cta-bar/full-width-cta.twig" with {
            title: content.field_title.0,
            ...
        } only %}
    </div>
Production build 0.71.5 2024