Render assets from placeholders separately

Created on 10 January 2025, 3 months ago

Problem/Motivation

Spin-off from Allow CSS to be added at end of page by rendering assets with placeholders Active .

Big pipe renders css and js added via placeholders separately (via the AJAX asset API) to those from the rest of the page. This is to handle css/js being rendered later, but it also has the positive side-effect of making it less likely for asset aggregate contents to be duplicated across pages (because it's more likely for placeholdered content to be page/role specific).

I think we could get the same effect from non-big-pipe placeholders if we collect the assets, put them through assetresolver, then replace the original ones with the processed ones. They would all then appear in the header/footer as usual, but in their own aggregate groups then.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

📌 Task
Status

Active

Version

11.0 🔥

Component

asset library system

Created by

🇬🇧United Kingdom catch

Live updates comments and jobs are added and updated live.
  • Performance

    It affects performance. It is often combined with the Needs profiling tag.

Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @catch
  • 🇬🇧United Kingdom catch

    What we might be able to do is:

    In HtmlResponseAttachmentsProcessor::processAttachments() - first of all get the attachments before placeholders are processed, and run the logic from those. Then render placeholders, then get a diff of the libraries, then if there are remaining libraries to render, process those attachments together in a second pass. Then render the header js / css + footer js based on everything we get back. $settings would need to be merged from the two passes into one array.

  • 🇬🇧United Kingdom catch

    Put up an initial MR, only did very basic manual testing locally.

  • Pipeline finished with Failed
    2 months ago
    Total: 683s
    #414030
  • Pipeline finished with Failed
    2 months ago
    Total: 86s
    #414056
  • 🇬🇧United Kingdom catch

    Once this works a follow-up can try to run the assetresolver on each individual placeholder and replace #attached there, but one thing at a time.

  • Pipeline finished with Failed
    2 months ago
    Total: 324s
    #414058
  • 🇬🇧United Kingdom catch

    A few failing tests but views UI and other places tested manually work, so it is mostly test assumptions probably and enough to see what things look like.

    However, don't really like the result here. It adds a fair bit of complexity to HtmlResponseAttachmentsProcessor and unless we're able split the aggregates by placeholder (instead of only before/after placeholder rendering) we won't necessarily see much benefit in cache hit rates.

    So I think rather than this, we need to look into some way of adding 'hints' to the collection groupers that x libraries should be grouped together. Something like a new asset group 'library_group' that takes an array of libraries, then divide up asset groups by those. Or some kind of virtual/fake library identifying a break between groups of libraries.

  • 🇫🇷France andypost

    Maybe start with real goal and minimize amount of assets? Support inlining critical CSS for faster core web vitals Active

    Then it will be more clear how "to decouple" into placeholders

Production build 0.71.5 2024