Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MWPW-158071: Optimize LCP loading times #2914

Open
wants to merge 4 commits into
base: stage
Choose a base branch
from

Conversation

mokimo
Copy link
Contributor

@mokimo mokimo commented Sep 19, 2024

Description

It's relatively hard to track performance beforehand, however we observed a +500MS (13%) gain on CC pages speeding up loading placeholders. We've also seen good success with preloading

Decorate.js

This PR initially introduced the idea of preloading decorate.js for a performance gain, but introduced too much flexibility. The idea of preloading decorate.js for specifically the two common (hero-)marquees blocks is valuable and worth the added 3 lines of code, as neither is likely to change anytime soon.

Impressions

This should provide good benefits on a wide arrange of blocks, consumers and pages by optimizing the load order and chains, however we will want to observe the CRUM/RUM/CRUX data after merging the changes in this PR.

Given the success we seen with preloading & parallelizing work in general, this harmonizes the timeline and ensures the browser loads everything as fast as it can, without any impact on TBT/CLS.

Before
Screenshot 2024-09-19 at 15 13 16
After
Screenshot 2024-09-19 at 15 13 24

Resolves: MWPW-158071

Test URLs:

Bacom

CC

@@ -731,6 +731,8 @@ function decorateDefaults(el) {
}

function decorateHeader() {
const breadcrumbs = document.querySelector('.breadcrumbs');
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that if a breadcrumbs is authored as first block, we immediately load it. The global-navigation should take care of this and on L752 we move the breadcrumbs into the header if (breadcrumbs) header.append(breadcrumbs);

Copy link
Contributor Author

@mokimo mokimo Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

codecov bot commented Sep 19, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Please upload report for BASE (stage@accd362). Learn more about missing BASE report.
Report is 6 commits behind head on stage.

Additional details and impacted files
@@           Coverage Diff            @@
##             stage    #2914   +/-   ##
========================================
  Coverage         ?   96.24%           
========================================
  Files            ?      236           
  Lines            ?    54265           
  Branches         ?        0           
========================================
  Hits             ?    52228           
  Misses           ?     2037           
  Partials         ?        0           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@mokimo
Copy link
Contributor Author

mokimo commented Sep 19, 2024

nala tests also failing on stage: #2910

Copy link
Contributor

@JasonHowellSlavin JasonHowellSlavin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Are there any unit tests for utils that require updating?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants