- Issue created by @lauriii
- First commit to issue fork.
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
The fix in ๐ Cannot upload new image in media library Active should fix this, but even if it doesn't it should be committed before any work proceeds on this as it addresses an underlying issue that causes all sorts of flakiness.
That issue has a fix and tests already. The final thing needed is to set up Gitlab CI so a built version of the UI app is available to FunctionalJavascript tests.
- Status changed to Postponed
about 1 month ago 8:11pm 28 February 2025 - ๐บ๐ธUnited States Kristen Pol Santa Cruz, CA, USA
I'm running into this where I click the "add media" button and it briefly says "opening media library" but nothing happens and there are no console or dblog messages.
- ๐ซ๐ฎFinland lauriii Finland
It seems that this is consistently reproducible with https://github.com/phenaproxima/xb-demo.
- ๐บ๐ธUnited States Kristen Pol Santa Cruz, CA, USA
Yeah... I didn't have the problem with latest XB and SDDS on vanilla D11.
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
I installed the Drupal CMS demo and reproduced the issue has well
I also confirmed that disabling JS aggregation makes the issue go away, which helpfully narrows down what the underlying cause might be. Will investigate further. - ๐บ๐ธUnited States Kristen Pol Santa Cruz, CA, USA
Interesting. We had to leave aggregation off in the early days pre-Barcelona
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
Interesting. We had to leave aggregation off in the early days pre-Barcelona
With that being mentioned I think it's important to share I've already found the underlying cause and it's a very different set of factors than what is mentioned above. MR on the way.
- Merge request !747#3491047 ML not opening in props form on Drupal CMS โ (Merged) created by bnjmnm
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
Note that with Drupal CMS, the dialog buttons might not appear visible due to not having certain styles. This is unrelated to anything discussed here and requires patching Gin with this โ .
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
The Cause
Fairly recently, Experience Builder added several custom libraries that are largely identical to core libraries but with small differences to address things like CSS leakage or applying Admin theme overrides despite the XB UI not using the admin theme. We need to make them distinct libraries instead of instead of
alter()
ing them as the alters should only apply in XB contexts, something the library cache isn't easily aware of.This approach works well, but it also results in multiple libraries potentially having the same assets. Drupal's AJAX system does an excellent job of preventing libraries from being added multiple times, but nothing to prevent assets from being re-added if they belong to a not-yet-added library. The specific problem reported was occurring because
misc/ajax.js
was being re-loaded.There was already logic in Experience builder to prevent core libraries with existing XB equivalents from being directly added, but this was not being prevented if the library was a dependency. In this case,
core/drupal.ajax
was being re-added as a dependency ofmedia_library/ui
The Solution
There might be something cleaner... but for now:
drupalSettings
now keeps track of all JS assets added by XB-specific libraries that load by default with the XB UI.processResponseAssets
checks the list indrupalSettings
and skips loading any JS already listed there - regardless of which library requested it.To Review
This is hard to reproduce with a plain XB install, but the issue is immediately apparent in Drupal CMS when attempting to change the image in the card component.
Note that with Drupal CMS, the dialog buttons might not appear visible due to not having certain styles. This is unrelated to anything within the scope of this issue... it just happens to be in Media Library. Getting the buttons visible requires patching Gin with this โ , so it properly includes all the stylesheets necessary to display dialogs.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
I think a simpler/more elegant solution is possible, but it's still fundamentally the same solution, just solved on the server side instead.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Wow, so much simpler!
A few questions on the MR, but this feels much closer to ready! ๐คฉ
- ๐ฆ๐บAustralia pameeela
With this patch, I'm able to open the media library in the Drupal CMS XB demo! But now I'm hitting the original issue in ๐ Cannot upload new image in media library Active where nothing happens when I upload. Is this unexpected?
- ๐ญ๐บHungary Gรกbor Hojtsy Hungary
Adding the related Gin issue at ๐ Dialog styles are not loading correctly in Experience Builder Active so they are easier to find.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
One last thing that @jessebaker should approve: https://git.drupalcode.org/project/experience_builder/-/merge_requests/7....
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
Current solution is able to prevent the duplicate loading of assets by AJAX requests made by the UI app, but does not prevent the duplicate loading of assets if the duplication prone library requests comes from elsewhere, which is what I'm running into manually atm.
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
Remove the test skipping stuff so anyone can review now.
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
Assigning to Wim since they provided the initial RTBC, so it should only require looking at the changes since then.
-
bnjmnm โ
committed c672b2fe on 0.x
Issue #3491047 by bnjmnm, wim leers, sea2709: "Add media" button doesn't...
-
bnjmnm โ
committed c672b2fe on 0.x
- ๐บ๐ธUnited States bnjmnm Ann Arbor, MI
I was the un-rtbc'r and since then a few approvals happened. Given that this is also soft blocking some other issues I'm gonna bring it in.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Really good call on https://git.drupalcode.org/project/experience_builder/-/merge_requests/7...! ๐ Much clearer ๐
Can you create a novice follow-up for:
- https://git.drupalcode.org/project/experience_builder/-/merge_requests/7...
- https://git.drupalcode.org/project/experience_builder/-/merge_requests/7...
- https://git.drupalcode.org/project/experience_builder/-/merge_requests/7...
?
๐