forked from GoogleChrome/web-vitals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcp.njk
55 lines (45 loc) · 1.65 KB
/
lcp.njk
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
<!--
Copyright 2020 Google LLC
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
https://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.
-->
{% extends 'layout.njk' %}
{% block content %}
<h1>LCP Test</h1>
<p>
{% if not imgDelay %}
{% set imgDelay = 500 %}
{% endif %}
<img {% if imgHidden %}hidden{% endif %} src="/test/img/square.png?delay={{ imgDelay }}">
</p>
<p>Text below the image</p>
<p><a id="navigate-away" href="https://example.com">Navigate away</a></p>
<!-- Include a tall element to ensure scrolling is possible. -->
<div style="height: 100vh"></div>
<footer>Text below the full-height element.</footer>
<script type="module">
import {getLCP} from '{{ modulePath }}';
getLCP((lcp) => {
// Log for easier manual testing.
console.log(lcp);
// Elements can't be serialized, so we convert first.
lcp = {
...lcp,
entries: lcp.entries.map((e) => ({
element: e.element.nodeName.toLowerCase(),
size: e.size,
startTime: e.startTime,
})),
};
// Test sending the metric to an analytics endpoint.
navigator.sendBeacon(`/collect`, JSON.stringify(lcp));
}, self.__reportAllChanges);
</script>
{% endblock %}