forked from GoogleChrome/web-vitals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttfb.njk
72 lines (59 loc) · 2.23 KB
/
ttfb.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!--
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>TTFB Test</h1>
<p>
<img src="/test/img/square.png{% if imgDelay %}?delay={{imgDelay}}{% endif %}">
</p>
<p>Text below the image</p>
<p><a id="navigate-away" href="https://example.com">Navigate away</a></p>
<script>
// Set the blocking values based on query params if present.
const params = new URLSearchParams(location.search);
if (params.has('responseStart')) {
const navEntry = performance.getEntriesByType('navigation')[0];
Object.defineProperty(navEntry, 'responseStart', {
value: Number(params.get('responseStart')),
});
}
</script>
<script type="module">
import {onTTFB} from '{{ modulePath }}';
function jsonifyEntry(entry) {
const newObj = {};
for (const k in entry) {
if (typeof entry[k] !== 'function') {
newObj[k] = entry[k];
}
}
return newObj;
}
(async function() {
{% if awaitLoad %}
await new Promise((resolve) => addEventListener('load', resolve));
{% endif %}
onTTFB((ttfb) => {
// Log for easier manual testing.
console.log(ttfb);
// The stubbed `activationStart` is lost when stringified, so we convert first.
ttfb.entries = ttfb.entries.map(jsonifyEntry);
if (ttfb.attribution && ttfb.attribution.navigationEntry) {
ttfb.attribution.navigationEntry = jsonifyEntry(ttfb.attribution.navigationEntry);
}
// Test sending the metric to an analytics endpoint.
navigator.sendBeacon(`/collect`, JSON.stringify(ttfb));
}, {reportAllChanges: self.__reportAllChanges});
}());
</script>
{% endblock %}