Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
72 lines
2.9 KiB
Text
72 lines
2.9 KiB
Text
/**
|
||
* @license
|
||
* Copyright 2017 Google LLC
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*/
|
||
|
||
import {ByteEfficiencyAudit} from './byte-efficiency-audit.js';
|
||
import {UnusedCSS} from '../../computed/unused-css.js';
|
||
import * as i18n from '../../lib/i18n/i18n.js';
|
||
|
||
const UIStrings = {
|
||
/** Imperative title of a Lighthouse audit that tells the user to reduce content from their CSS that isn’t needed immediately and instead load that content at a later time. This is displayed in a list of audit titles that Lighthouse generates. */
|
||
title: 'Reduce unused CSS',
|
||
/** Description of a Lighthouse audit that tells the user *why* they should defer loading any content in CSS that isn’t needed at page load. This is displayed after a user expands the section to see more. No word length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
||
description: 'Reduce unused rules from stylesheets and defer CSS not used for ' +
|
||
'above-the-fold content to decrease bytes consumed by network activity. ' +
|
||
'[Learn how to reduce unused CSS](https://developer.chrome.com/docs/lighthouse/performance/unused-css-rules/).',
|
||
};
|
||
|
||
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
||
|
||
// Allow 10KiB of unused CSS to permit `:hover` and other styles not used on a non-interactive load.
|
||
// @see https://github.com/GoogleChrome/lighthouse/issues/9353 for more discussion.
|
||
const IGNORE_THRESHOLD_IN_BYTES = 10 * 1024;
|
||
|
||
class UnusedCSSRules extends ByteEfficiencyAudit {
|
||
/**
|
||
* @return {LH.Audit.Meta}
|
||
*/
|
||
static get meta() {
|
||
return {
|
||
id: 'unused-css-rules',
|
||
title: str_(UIStrings.title),
|
||
description: str_(UIStrings.description),
|
||
scoreDisplayMode: ByteEfficiencyAudit.SCORING_MODES.METRIC_SAVINGS,
|
||
guidanceLevel: 1,
|
||
requiredArtifacts:
|
||
['Stylesheets', 'CSSUsage', 'URL', 'DevtoolsLog', 'Trace', 'GatherContext', 'SourceMaps'],
|
||
};
|
||
}
|
||
|
||
/**
|
||
* @param {LH.Artifacts} artifacts
|
||
* @param {LH.Artifacts.NetworkRequest[]} _
|
||
* @param {LH.Audit.Context} context
|
||
* @return {Promise<import('./byte-efficiency-audit.js').ByteEfficiencyProduct>}
|
||
*/
|
||
static async audit_(artifacts, _, context) {
|
||
const unusedCssItems = await UnusedCSS.request({
|
||
Stylesheets: artifacts.Stylesheets,
|
||
CSSUsage: artifacts.CSSUsage,
|
||
devtoolsLog: artifacts.DevtoolsLog,
|
||
}, context);
|
||
const items = unusedCssItems
|
||
.filter(sheet => sheet && sheet.wastedBytes > IGNORE_THRESHOLD_IN_BYTES);
|
||
|
||
/** @type {LH.Audit.Details.Opportunity['headings']} */
|
||
const headings = [
|
||
{key: 'url', valueType: 'url', label: str_(i18n.UIStrings.columnURL)},
|
||
{key: 'totalBytes', valueType: 'bytes', label: str_(i18n.UIStrings.columnTransferSize)},
|
||
{key: 'wastedBytes', valueType: 'bytes', label: str_(i18n.UIStrings.columnWastedBytes)},
|
||
];
|
||
|
||
return {
|
||
items,
|
||
headings,
|
||
};
|
||
}
|
||
}
|
||
|
||
export default UnusedCSSRules;
|
||
export {UIStrings};
|