Scrolls to wrong position

Created on 13 February 2023, about 2 years ago

Problem/Motivation

When you open a block form with a media field, clicking "add media" opens the media library. A scroll to position is performed at this stage, causing the dialog to jump to the bottom of the screen.

Steps to reproduce

- Make a block you can add to your layout with a media field.
- Setup media library
- Click "Add media", media browser opens inside the iframe as a modal.
- The iframe now jumps to the bottom of the screen.

Proposed resolution

Fix scroll to position when opening media library.
Expecting iframe to stay at same position.

Remaining tasks

User interface changes

API changes

Data model changes

๐Ÿ› Bug report
Status

Active

Version

1.3

Component

User interface

Created by

๐Ÿ‡ง๐Ÿ‡ชBelgium kriboogh

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

Comments & Activities

  • Issue created by @kriboogh
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium kriboogh

    Seems to be a safari only problem, chrome is ok.

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

    I am seeing a similar issue when adding a new block the screen scrolls the modal out of view.

    You can see the behaviour in the attached video.

    Should I raise a new bug for this or can it be resolved with this bug?

  • ๐Ÿ‡จ๐Ÿ‡ดColombia hduran

    I have the same issue when creating a new section on the Layout Builder on Chrome, Firefox is fine my site is D10.2.6 and I'm also missing the x button

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

    I'm also experiencing this issue on a site after upgrading to Drupal 10.2.6. I am experiencing this in Chrome.

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

    I was hoping a patch from this issue would fix it but didn't have such luck: https://www.drupal.org/project/drupal/issues/3209129#comment-15605759 ๐Ÿ› Scrolling problems when adding a block via layout builder Needs work

    FYI I reverted back to drupal 10.2.4 and the issue still remains. I have updated these modules as well. Unsure which one introduced the issue though.

    Better Exposed Filters 6.0.3 โ†’ 6.0.5
    Ckeditor 5 Paste Filter 1.0.0 โ†’ 1.0.1
    Config Ignore 8.x-3.2 โ†’ 8.x-3.3
    Config Split 2.0.0 โ†’ 2.0.1
    Diff 8.x-1.1 โ†’ 8.x-1.3
    Focal Point 2.0.3 โ†’ 2.1.0
    Gin Login 2.0.3 โ†’ 2.0.4
    Linkit 6.1.3 โ†’ 6.1.4
    Password Policy 4.0.0 โ†’ 4.0.1
    Scheduler 2.0.1 โ†’ 2.0.3
    Simple XML sitemap 4.1.8 โ†’ 4.1.9
    SVG Image Field 2.3.1 โ†’ 2.3.2
    Token 8.x-1.13 โ†’ 8.x-1.14
    WebP 8.x-1.0-rc1 โ†’ 8.x-1.0-rc2
    Gin Admin Theme 8.x-3.0-rc9 โ†’ 8.x-3.0-rc10
    Drupal Core - 10.2.4 โ†’ 10.2.6

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

    Upon further investigation of the module, I've narrowed it down to possibly being this code here as the culprit: https://git.drupalcode.org/project/layout_builder_iframe_modal/-/blob/1....

    // Stores the last scroll position before rebuild happened.
      Drupal.AjaxCommands.prototype.openIframe._scrollPosition = 0
    
      /**
       * Scrolls to the position before the layout rebuild was triggered.
       *
       * The scroll only happens if the delta between then and now is above a
       * certain threshold. This prevents unnecessary scrolling.
       */
      Drupal.AjaxCommands.prototype.scrollToBlock = function () {
        var scrollY = Drupal.AjaxCommands.prototype.openIframe._scrollPosition
        if (scrollY) {
          window.setTimeout(function() {
            if (Math.abs(window.scrollY - scrollY) > 300) {
              window.scrollTo(0, scrollY)
            }
            Drupal.AjaxCommands.prototype.openIframe._scrollPosition = 0
          }, 200)
        }
      };

    I'm running out of time looking into this for this week. I may be able to dig in more next if someone else doesn't find a solution by then.

  • Status changed to Needs review 10 months ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium matthiasm11

    Changed the dialog options to match the same options set in layout_builder_browser_link_alter(). This will prevent the page from scrolling/jumping. The height option was the main issue.

    After the dialog is opened, the size will be recalculated nevertheless, see ๐Ÿ› Modal height(s) are extremely large Active .

  • Status changed to RTBC 9 months ago
  • ๐Ÿ‡จ๐Ÿ‡ฆCanada jigarius Montrรฉal

    I just tested it to be working fine. No jumps. I wonder when the next release will be.

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly kopeboy Milan

    Patch #8 fixed the automatic scrolling to the top, out of the screen, when you were opening an iframe after having closed one, thanks @matthiasm11!

    +2

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium f0ns

    Thanks works great, using the patch in #8 for now.

    Small nitpick: I noticed on mobile the 80% width makes small edits, on a phone for example, a bit hard.

    I'll try to find a solution for this when I can find the time.

    Thanks!

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium svendecabooter Gent

    Patch #8 committed

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

Production build 0.71.5 2024