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

misc(viewer): load *.json if no *.lighthouse.report.json #5343

Merged
merged 2 commits into from
May 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions lighthouse-viewer/app/src/github-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,13 @@ class GithubApi {

const etag = resp.headers.get('ETag');
return resp.json().then(json => {
const gistFiles = Object.keys(json.files);
// Attempt to use first file in gist with report extension.
const filename = Object.keys(json.files)
.find(filename => filename.endsWith(GithubApi.LH_JSON_EXT));
let filename = gistFiles.find(filename => filename.endsWith(GithubApi.LH_JSON_EXT));
// Otherwise, fall back to first json file in gist
if (!filename) {
filename = gistFiles.find(filename => filename.endsWith('.json'));
}
if (!filename) {
throw new Error(
`Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`
Expand Down