Skip to content

Commit

Permalink
core(largest-contentful-paint-element): add LCP savings (#15178)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Aug 15, 2023
1 parent 9cd0686 commit 729afdc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
25 changes: 21 additions & 4 deletions core/audits/largest-contentful-paint-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import log from 'lighthouse-logger';

import {Audit} from './audit.js';
import * as i18n from '../lib/i18n/i18n.js';
import {LargestContentfulPaint} from '../computed/metrics/largest-contentful-paint.js';
import {LargestContentfulPaint as LargestContentfulPaintComputed} from '../computed/metrics/largest-contentful-paint.js';
import LargestContentfulPaint from './metrics/largest-contentful-paint.js';
import {LCPBreakdown} from '../computed/metrics/lcp-breakdown.js';
import {Sentry} from '../lib/sentry.js';

Expand Down Expand Up @@ -124,14 +125,22 @@ class LargestContentfulPaintElement extends Audit {
settings: context.settings, URL: artifacts.URL};

const elementTable = this.makeElementTable(artifacts);
if (!elementTable) return {score: null, notApplicable: true};
if (!elementTable) {
return {
score: null,
notApplicable: true,
metricSavings: {LCP: 0},
};
}

const items = [elementTable];
let displayValue;
let metricLcp = 0;

try {
const {timing: metricLcp} =
await LargestContentfulPaint.request(metricComputationData, context);
const lcpResult =
await LargestContentfulPaintComputed.request(metricComputationData, context);
metricLcp = lcpResult.timing;
displayValue = str_(i18n.UIStrings.ms, {timeInMs: metricLcp});

const phaseTable = await this.makePhaseTable(metricLcp, metricComputationData, context);
Expand All @@ -146,10 +155,18 @@ class LargestContentfulPaintElement extends Audit {

const details = Audit.makeListDetails(items);

// Conceptually, this doesn't make much sense as "savings" for this audit since there isn't anything to "fix".
// However, this audit will always be useful when improving LCP and that should be reflected in our impact calculations.
const idealLcp = LargestContentfulPaint.defaultOptions[context.settings.formFactor].scoring.p10;
const lcpSavings = Math.max(0, metricLcp - idealLcp);

return {
score: 1,
displayValue,
details,
metricSavings: {
LCP: lcpSavings,
},
};
}
}
Expand Down
2 changes: 2 additions & 0 deletions core/test/audits/largest-contentful-paint-element-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ describe('Performance: largest-contentful-paint-element audit', () => {
expect(auditResult.score).toEqual(1);
expect(auditResult.notApplicable).toBeUndefined();
expect(auditResult.displayValue).toBeDisplayString('5,800\xa0ms');
expect(auditResult.metricSavings).toEqual({LCP: 3304}); // 5804 - 2500 (p10 mobile)
expect(auditResult.details.items).toHaveLength(2);
expect(auditResult.details.items[0].items).toHaveLength(1);
expect(auditResult.details.items[0].items[0].node.path).toEqual('1,HTML,3,BODY,5,DIV,0,HEADER');
Expand Down Expand Up @@ -148,6 +149,7 @@ describe('Performance: largest-contentful-paint-element audit', () => {
expect(auditResult.score).toEqual(null);
expect(auditResult.notApplicable).toEqual(true);
expect(auditResult.displayValue).toBeUndefined();
expect(auditResult.metricSavings).toEqual({LCP: 0});
expect(auditResult.details).toBeUndefined();
});

Expand Down

0 comments on commit 729afdc

Please sign in to comment.