forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
report: add Stack Packs and first pack for wordpress (GoogleChrome#7243)
- Loading branch information
1 parent
45d6911
commit b374ea4
Showing
29 changed files
with
368 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* @license Copyright 2019 Google Inc. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
'use strict'; | ||
|
||
const stackPacks = require('@lighthouse/stack-packs'); | ||
|
||
const stackPacksToInclude = [{ | ||
packId: 'wordpress', | ||
requiredStacks: ['js:wordpress'], | ||
}]; | ||
|
||
/** | ||
* @param {LH.Artifacts} artifacts | ||
* @return {Array<LH.Result.StackPack>} | ||
*/ | ||
function getStackPacks(artifacts) { | ||
/** @type {Array<LH.Result.StackPack>} */ | ||
const packs = []; | ||
|
||
if (artifacts.Stacks) { | ||
for (const pageStack of artifacts.Stacks) { | ||
const stackPackToIncl = stackPacksToInclude.find(stackPackToIncl => | ||
stackPackToIncl.requiredStacks.includes(`${pageStack.detector}:${pageStack.id}`)); | ||
if (!stackPackToIncl) { | ||
continue; | ||
} | ||
|
||
// Grab the full pack definition | ||
const matchedPack = stackPacks.find(pack => pack.id === stackPackToIncl.packId); | ||
if (!matchedPack) { | ||
// we couldn't find a pack that's in our inclusion list, this is weird. | ||
continue; | ||
} | ||
|
||
packs.push({ | ||
id: matchedPack.id, | ||
title: matchedPack.title, | ||
iconDataURL: matchedPack.iconDataURL, | ||
descriptions: matchedPack.descriptions, | ||
}); | ||
} | ||
} | ||
|
||
return packs; | ||
} | ||
|
||
module.exports = { | ||
getStackPacks, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.