Investigate drag-and-drop solution that removes the need to drop items into the preview iFrame

Created on 12 March 2025, 24 days ago

Overview

Prove the concept that the drag and drop could, instead of being injected into the iFrame, be done entirely in the overlay of the preview.

The benefits would be

  1. Reduce the need to inject event listeners, code etc into the iFrame
  2. More control over the drag and drop interactions UI
  3. We can build in a way to support horizontal stacked layouts in slots
  4. More control to address issues like adding items at the bottom of slots vs after the slot

Proposed resolution

First step is to attempt to build the drop targets into the overlay rather than hiding the overlay and letting the user drop things into the iFrame

User interface changes

๐Ÿ“Œ Task
Status

Active

Version

0.0

Component

Page builder

Created by

๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jessebaker

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

Merge Requests

Comments & Activities

  • Issue created by @jessebaker
  • Merge request !800#3512455 New drag and drop overlay โ†’ (Open) created by jessebaker
  • Pipeline finished with Failed
    16 days ago
    Total: 182s
    #453289
  • Pipeline finished with Failed
    15 days ago
    Total: 207s
    #453401
  • Pipeline finished with Failed
    15 days ago
    Total: 1486s
    #454013
  • Pipeline finished with Failed
    12 days ago
    Total: 1593s
    #456033
  • Pipeline finished with Failed
    12 days ago
    Total: 2540s
    #456180
  • Pipeline finished with Failed
    11 days ago
    Total: 2900s
    #456284
  • Pipeline finished with Failed
    11 days ago
    Total: 1568s
    #457109
  • Pipeline finished with Failed
    11 days ago
    Total: 2070s
    #457172
  • Pipeline finished with Failed
    10 days ago
    Total: 1551s
    #457233
  • Pipeline finished with Failed
    10 days ago
    Total: 1667s
    #457279
  • Pipeline finished with Failed
    10 days ago
    Total: 2010s
    #457301
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States luke.leber Pennsylvania

    Dropping this in from slack to hopefully get a follow-up at some point (in the project management court now):

    With ~100ish components on a page, here are some browser performance metrics from a high end laptop:

    ~45 second time from page load to rendering the XB UI with dev tooling enabled; ~20 seconds w/o.

    INP with dev tools ~3-4 seconds. 1.2 seconds w/o

    --

    I know that XB is still very early in development, but wanted to raise some awareness about potential scalability problems that will naturally be MUCH harder to tackle later as an after-thought -- even moreso once disruptive changes are harder to justify!

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States luke.leber Pennsylvania
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States luke.leber Pennsylvania

    Ugh related issue != Child issue

  • Pipeline finished with Failed
    8 days ago
    Total: 1596s
    #458872
  • Pipeline finished with Failed
    8 days ago
    Total: 1475s
    #458967
  • Pipeline finished with Failed
    8 days ago
    Total: 1671s
    #459550
  • Pipeline finished with Failed
    8 days ago
    Total: 1541s
    #459645
  • Pipeline finished with Failed
    8 days ago
    Total: 1634s
    #459665
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom f.mazeikis Brighton

    f.mazeikis โ†’ made their first commit to this issueโ€™s fork.

  • Pipeline finished with Failed
    7 days ago
    Total: 1468s
    #459759
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jessebaker

    I think this does a lot more than prove the concept now! For full details of what this MR does and doesn't do, see the nicely formatted description on the MR itself!

  • Pipeline finished with Failed
    5 days ago
    Total: 1664s
    #461465
  • Pipeline finished with Failed
    5 days ago
    Total: 2794s
    #461559
  • Pipeline finished with Failed
    3 days ago
    #463172
  • Pipeline finished with Failed
    3 days ago
    #463435
  • Pipeline finished with Running
    2 days ago
    #463511
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    I enabled all the Olivero regions and the drop zone sizes got kinda weird. This isn't a fresh install so it's possible this is a hiccup that might not be reproducible but I wanted to capture it now just in case. It's a "cutting off" of sorts but different from ๐Ÿ› Preview gets cut off sometimes on a layout change Active

    The content drop region got narrow after enabling the regions

    I added outlines to each region to see how they are laid out, too.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States effulgentsia
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jessebaker

    RE #8 - I don't think this is to do with the overlay (in fact the overlay is correctly drawing on the regions as they are displayed. This seems to be an issue with Olivero - when you enable XB for the sidebar region but don't yet have any component in that region, the CSS grid layout gets confused.

    I ran the following image past @wim leers recently after observing the same thing.

    His response was that because of

    {% if page.sidebar %}
      <div class="sidebar-grid grid-full">
    

    in core/themes/olivero/templates/layout/page.html.twig simply exposing the sidebar is causing the page to render differently and it seems that Olivero was not built to render correctly if the sidebar is enabled but also empty.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States effulgentsia

    enabled but also empty

    I think this might be hitting on a general problem we need to figure out what to do about. It's common for Drupal themes to conditionally render wrapper elements (like the <div class="sidebar-grid grid-full"> example above) only if there's content to put into them, and to omit them if the content is empty, and the theme's CSS then is based on that assumption and might not handle the case of the wrapper elements existing with empty content because the HTML "never" exists in that state.

    Never, that is, until XB puts an HTML comment there, making it no longer empty as far as Twig is concerned, but making it empty as far as the DOM is concerned.

    We can make XB omit the HTML comment identifying the slot in the case where the content is empty, which would then let the Twig conditionals work and the wrapper element not be added, but if we did that, then how would you drag something into that slot?

    So there's a conflict here between wanting the preview to be accurate, but also wanting the ability to drag content into an empty slot. I don't have any ideas at the moment for how to solve for both.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    Just so it's official, based on the discussion I feel that my findings in #8 are very much out of scope and just something I happened to discover while reviewing this.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    @hooroomoo has already codeowner-approved in the domains I would be able to approve.
    tbh it's too darn huge to be able to give it a truly in depth review, but I'm not seeing any red flags and it's really nice overall. I think the best improvements will occur to us once it's actually in the codebase. We still need src and Kernel test signoff, though.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jessebaker

    Re #11 - I think omitting the html comments for empty regions is ok! Our UX does not show/make available empty regions. The only way to add the first component to an empty region is to right click it and choose 'send to global region'.

    So I think not rendering the comments in empty regions is fine. (But does lock us into that UX)

  • ๐Ÿ‡ซ๐Ÿ‡ฎFinland lauriii Finland

    #14: That seems fine for now. At worst case, I could see us wanting to show the empty regions somehow in the layers panel. I don't think we have to think about this too much now but it doesn't seem to be fundamentally limited by the HTML comments, even if they may be connected today.

Production build 0.71.5 2024