Hide/Show Caption and Alignment fields in for each entity embed

Created on 25 April 2024, 11 months ago

Problem/Motivation

Feature to have the ability to hide and show alignments and caption fields, when not needed, for every entity embed

Proposed resolution

At the time of entity embed form, giving the devs ability to align items or caption fields, for the use

Remaining tasks

A patch that will hide the caption and align options

Feature request
Status

Active

Version

1.6

Component

Code

Created by

🇮🇳India Aziza Anwari Gujarat

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

Merge Requests

Comments & Activities

  • Issue created by @Aziza Anwari
  • Assigned to gurkawal
  • Status changed to Needs review 11 months ago
  • 🇨🇦Canada ryanrobinson_wlu

    I tried this patch as I was looking for the same thing. The general idea works, but I have a couple suggestions.

    One is the upgrade path if this is added when you already have a button. I had an existing button that was set to only allow the Teaser display mode and was showing the caption and alignment options. After adding the patch, all of those options went to blank, meaning all the display modes showed up as options and caption/alignment did not. I think this should maintain existing settings as the default: whatever I previously had in display mode, and caption/alignment on. Imagining this coming through as a release, some would be surprised to have the behaviour changed.

    The second is that now the second page is unnecessary. The first page I select the entity I want to embed. The second page only shows me that same entity name again. Can that second page be skipped entirely if there are no options on it?

  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    I was looking for a solution for this, and this patch looks like exactly what I was looking for.

    @ryanrobinson_wlu For that to be skipped, we would need a separate patch for embed module itself, or alter the EntityEmbedDialog class from entity_embed, which we might want to avoid. The key is:

        if (!$form_state->get('step')) {
          // If an entity has been selected, then always skip to the embed options.
          if ($form_state->get('entity')) {
            $form_state->set('step', 'embed');
          }
          else {
            $form_state->set('step', 'select');
          }
        }
    

    Where we want to skip the step if the form has no settings.

  • Pipeline finished with Failed
    2 months ago
    Total: 143s
    #408555
  • Pipeline finished with Failed
    2 months ago
    Total: 146s
    #408574
  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    I've added an upgrade path.

    For skipping the second step we would need to replicate the functionality of submitEmbedStep in submitAndShowEmbed in the case there are no settings, but we would miss the hook that is triggered there?

    I'm not implementing this ATM because I don't need that, but just in case we want to do this in this same MR. Could be a follow-up or not implementing at all. I'd suggest a follow-up in any case, as this MR is useful as-is.

  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    Added patch if it helps, but the MR should be the canonical source.

  • Pipeline finished with Failed
    2 months ago
    Total: 190s
    #409085
Production build 0.71.5 2024