forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewport-meta.js
71 lines (59 loc) · 2.17 KB
/
viewport-meta.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import Parser from 'metaviewport-parser';
import {makeComputedArtifact} from './computed-artifact.js';
class ViewportMeta {
/**
* @param {LH.GathererArtifacts['MetaElements']} MetaElements
* @return {Promise<ViewportMetaResult>}
*/
static async compute_(MetaElements) {
const viewportMeta = MetaElements.find(meta => meta.name === 'viewport');
if (!viewportMeta) {
return {
hasViewportTag: false,
isMobileOptimized: false,
parserWarnings: [],
rawContentString: undefined,
};
}
const warnings = [];
const rawContentString = viewportMeta.content || '';
const parsedProps = Parser.parseMetaViewPortContent(rawContentString);
if (Object.keys(parsedProps.unknownProperties).length) {
warnings.push(`Invalid properties found: ${JSON.stringify(parsedProps.unknownProperties)}`);
}
if (Object.keys(parsedProps.invalidValues).length) {
warnings.push(`Invalid values found: ${JSON.stringify(parsedProps.invalidValues)}`);
}
const viewportProps = parsedProps.validProperties;
const initialScale = Number(viewportProps['initial-scale']);
if (!isNaN(initialScale) && initialScale < 1) {
return {
hasViewportTag: true,
isMobileOptimized: false,
parserWarnings: warnings,
rawContentString,
};
}
const isMobileOptimized = Boolean(viewportProps.width || initialScale);
return {
hasViewportTag: true,
isMobileOptimized,
parserWarnings: warnings,
rawContentString,
};
}
}
const ViewportMetaComputed = makeComputedArtifact(ViewportMeta, null);
export {ViewportMetaComputed as ViewportMeta};
/**
* @typedef {object} ViewportMetaResult
* @property {boolean} hasViewportTag Whether the page has any viewport tag.
* @property {boolean} isMobileOptimized Whether the viewport tag is optimized for mobile screens.
* @property {Array<string>} parserWarnings Warnings if the parser encountered invalid content in the viewport tag.
* @property {string|undefined} rawContentString The `content` attribute value, if a viewport was defined.
*/