- 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 12:55pm 14 June 2024 - ๐ง๐ช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 9:06am 24 July 2024 - ๐จ๐ฆ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!
-
svendecabooter โ
committed 80013aaa on 1.0.x
Issue #3341337 by matthiasm11: Scrolls to wrong position
-
svendecabooter โ
committed 80013aaa on 1.0.x
Automatically closed - issue fixed for 2 weeks with no activity.