Skip to content

Commit cd921a1

Browse files
committedAug 11, 2023
Add Vimeo Plugin examples
1 parent 6aedd95 commit cd921a1

10 files changed

+215
-66
lines changed
 

‎react/package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@snowplow/browser-plugin-form-tracking": "^3.12.0",
7-
"@snowplow/browser-plugin-media": "^3.12.0",
8-
"@snowplow/browser-plugin-youtube-tracking": "^3.12.0",
9-
"@snowplow/browser-tracker": "^3.12.0",
6+
"@snowplow/browser-plugin-form-tracking": "^3.14.0",
7+
"@snowplow/browser-plugin-media": "^3.14.0",
8+
"@snowplow/browser-plugin-vimeo-tracking": "3.14.0",
9+
"@snowplow/browser-plugin-youtube-tracking": "^3.14.0",
10+
"@snowplow/browser-tracker": "^3.14.0",
1011
"@testing-library/jest-dom": "^5.16.2",
1112
"@testing-library/react": "^12.1.3",
1213
"@testing-library/user-event": "^13.5.0",
14+
"@vimeo/player": "^2.19.0",
15+
"js-base64": "^3.7.5",
1316
"react": "^17.0.2",
1417
"react-dom": "^17.0.2",
1518
"react-router-dom": "^6.2.2",

‎react/src/App.js

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ function App() {
4040
<dt><Link to={getPath("iframe_form")}>Form tracking demo in iframe</Link></dt>
4141
<dt><Link to={getPath("youtube")}>Youtube video tracking from Iframe</Link></dt>
4242
<dt><Link to={getPath("youtube_player")}>Youtube video tracking with YouTube Iframe API Player</Link></dt>
43+
<dt><Link to={getPath("vimeo_iframe")}>Vimeo tracking from Iframe</Link></dt>
44+
<dt><Link to={getPath("vimeo_player")}>Vimeo tracking with Vimeo Player</Link></dt>
4345
<dt><Link to={getPath("media")}>Custom media tracking demo</Link></dt>
4446
</dl>
4547

‎react/src/components/mediaEvents.jsx

+29-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
import { useState, useEffect } from "react";
22
import "./table.css";
3+
import { mediaSchemas } from "../constants";
34

45
let allEvents = [];
56

6-
const handleEvent = (e) => {
7-
const id = e.detail.id;
8-
const event = e.detail.event;
9-
const context = e.detail.context;
10-
11-
if (
12-
event.data.schema.includes("iglu:com.snowplowanalytics.snowplow.media/")
13-
) {
14-
allEvents.push({
15-
id: id,
16-
event: event.data,
17-
context: context.data,
18-
});
19-
}
7+
const createEventHandler = (schemas) => {
8+
return (e) => {
9+
const { id, event, context } = e.detail;
10+
11+
if (schemas.some((s) => event.data.schema.includes(s))) {
12+
allEvents.push({
13+
id: id,
14+
event: event.data,
15+
context: context.data,
16+
});
17+
}
18+
};
2019
};
2120

22-
window.addEventListener("spEvent", handleEvent);
23-
24-
function MediaEvents() {
21+
function MediaEvents({ schemas = mediaSchemas }) {
2522
const [eventList, setEventList] = useState([]);
2623

24+
useEffect(() => {
25+
window.addEventListener("spEvent", createEventHandler(schemas));
26+
}, [schemas]);
27+
2728
useEffect(() => {
2829
let interval = setInterval(() => setEventList([...allEvents]), 1000);
2930

@@ -96,21 +97,22 @@ function MediaEvents() {
9697
}
9798

9899
function EventRow({ event, context }) {
99-
let mediaPlayer = context.find((e) =>
100-
e.schema.includes("/player/")
101-
);
102-
let session = context.find((e) =>
103-
e.schema.includes("/session/")
104-
);
105-
let adBreak = context.find((e) =>
106-
e.schema.includes("/ad_break/")
107-
);
100+
let mediaPlayer = context.find((e) => e.schema.includes("/media_player/"));
101+
let session = context.find((e) => e.schema.includes("/session/"));
102+
let adBreak = context.find((e) => e.schema.includes("/ad_break/"));
108103
let ad = context.find((e) => e.schema.includes("/ad/"));
109104

110105
return (
111106
<tr>
112107
<th>{event.schema.split("/")[1]}</th>
113-
<td>{Object.keys(event.data).map((key) => (<>{key}: {event.data[key]}<br/></>))}</td>
108+
<td>
109+
{Object.keys(event.data).map((key) => (
110+
<>
111+
{key}: {JSON.stringify(event.data[key])}
112+
<br />
113+
</>
114+
))}
115+
</td>
114116

115117
<td>{mediaPlayer.data.label}</td>
116118
<td>{mediaPlayer.data.mediaType}</td>

‎react/src/constants.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export const mediaSchemas = ["iglu:com.snowplowanalytics.snowplow.media/"];
2+
export const vimeoSchemas = [...mediaSchemas, "iglu:com.vimeo/"];

‎react/src/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import Youtube from "./routes/youtube";
1111
import YoutubePlayer from "./routes/youtubePlayer.jsx";
1212
import { getPath } from "./helpers";
1313
import Media from "./routes/media.jsx";
14+
import VimeoIframe from "./routes/vimeoIframe";
15+
import VimeoPlayer from "./routes/vimeoPlayer";
1416

1517
ReactDOM.render(
1618
<React.StrictMode>
@@ -23,6 +25,8 @@ ReactDOM.render(
2325
<Route path={getPath("youtube")} element={<Youtube />} />
2426
<Route path={getPath("youtube_player")} element={<YoutubePlayer />} />
2527
<Route path={getPath("media")} element={<Media />} />
28+
<Route path={getPath("vimeo_iframe")} element={<VimeoIframe />} />
29+
<Route path={getPath("vimeo_player")} element={<VimeoPlayer />} />
2630
</Routes>
2731
</BrowserRouter>
2832
</React.StrictMode>,

‎react/src/plugins/captureTrackedEventsPlugin.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import { decode } from "js-base64";
2+
13
function afterTrack(payload) {
24
console.log(payload);
35
if (payload.ue_px && payload.cx) {
4-
let event = JSON.parse(atob(payload.ue_px));
5-
let context = JSON.parse(atob(payload.cx));
6+
let event = JSON.parse(decode(payload.ue_px));
7+
let context = JSON.parse(decode(payload.cx));
68

79
window.dispatchEvent(
810
new CustomEvent("spEvent", {

‎react/src/routes/vimeoIframe.jsx

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import React, { useEffect, useRef } from "react";
2+
import { v4 as uuidv4 } from "uuid";
3+
4+
import { startVimeoTracking } from "@snowplow/browser-plugin-vimeo-tracking";
5+
import CreateTrackerWrapper from "../createTrackerWrapper";
6+
import MediaEvents from "../components/mediaEvents";
7+
import { vimeoSchemas } from "../constants";
8+
9+
function VimeoIframe() {
10+
const id = uuidv4();
11+
const iframeRef = useRef(null);
12+
13+
useEffect(() => {
14+
startVimeoTracking({
15+
video: iframeRef.current,
16+
id,
17+
boundaries: [50],
18+
});
19+
}, [id]);
20+
21+
return (
22+
<>
23+
<iframe
24+
ref={iframeRef}
25+
id="vimeo"
26+
width={640}
27+
height={360}
28+
src="https://player.vimeo.com/video/808787686?h=3044aad004"
29+
title="Vimeo Example"
30+
allowFullScreen
31+
></iframe>
32+
<MediaEvents schemas={vimeoSchemas} />
33+
</>
34+
);
35+
}
36+
37+
function Wrapped() {
38+
return (
39+
<CreateTrackerWrapper>
40+
<VimeoIframe />
41+
</CreateTrackerWrapper>
42+
);
43+
}
44+
45+
export default Wrapped;

‎react/src/routes/vimeoPlayer.jsx

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import React, { useEffect } from "react";
2+
import Player from "@vimeo/player";
3+
import { v4 as uuidv4 } from "uuid";
4+
import CreateTrackerWrapper from "../createTrackerWrapper";
5+
import MediaEvents from "../components/mediaEvents";
6+
7+
import { startVimeoTracking } from "@snowplow/browser-plugin-vimeo-tracking";
8+
import { vimeoSchemas } from "../constants";
9+
10+
function VimeoPlayer() {
11+
const vimeoPlayer = React.useRef(null);
12+
useEffect(() => {
13+
const player = new Player(vimeoPlayer.current);
14+
const id = uuidv4();
15+
16+
player.addCuePoint(2.5, { helloMatus: "bar" });
17+
18+
startVimeoTracking({
19+
video: player,
20+
id,
21+
boundaries: [50],
22+
});
23+
}, []);
24+
25+
return (
26+
<>
27+
<div
28+
ref={vimeoPlayer}
29+
id="vimeo"
30+
data-vimeo-url="https://player.vimeo.com/video/808787686?h=3044aad004"
31+
></div>
32+
<MediaEvents schemas={vimeoSchemas} />
33+
</>
34+
);
35+
}
36+
37+
function Wrapped() {
38+
return (
39+
<CreateTrackerWrapper>
40+
<VimeoPlayer />
41+
</CreateTrackerWrapper>
42+
);
43+
}
44+
45+
export default Wrapped;

‎react/src/tracker.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import React from "react";
77
import { useLocation } from "react-router-dom";
88
import { FormTrackingPlugin } from "@snowplow/browser-plugin-form-tracking";
99
import { YouTubeTrackingPlugin } from "@snowplow/browser-plugin-youtube-tracking";
10+
import { VimeoTrackingPlugin } from "@snowplow/browser-plugin-vimeo-tracking";
1011
import { SnowplowMediaPlugin } from "@snowplow/browser-plugin-media";
1112
import CaptureTrackedEventsPlugin from "./plugins/captureTrackedEventsPlugin";
1213

@@ -17,6 +18,7 @@ const initializeTracker = (endpoint) => {
1718
plugins: [
1819
FormTrackingPlugin(),
1920
YouTubeTrackingPlugin(),
21+
VimeoTrackingPlugin(),
2022
SnowplowMediaPlugin(),
2123
CaptureTrackedEventsPlugin(),
2224
],

‎react/yarn.lock

+75-33
Original file line numberDiff line numberDiff line change
@@ -1543,57 +1543,68 @@
15431543
dependencies:
15441544
"@sinonjs/commons" "^1.7.0"
15451545

1546-
"@snowplow/browser-plugin-form-tracking@^3.12.0":
1547-
version "3.12.0"
1548-
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-form-tracking/-/browser-plugin-form-tracking-3.12.0.tgz#1a3c4a40fb4e92d2c23a8417a1aa66abbf5731cd"
1549-
integrity sha512-38L29wi7X4+jMD6zu7ajbpnPxUgXvc0AddfBq5Jv0R0MwIIOhAh6kDZe4NM+EWMNsphoWt8zHX2hb6QyM3Sozw==
1546+
"@snowplow/browser-plugin-form-tracking@^3.14.0":
1547+
version "3.14.0"
1548+
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-form-tracking/-/browser-plugin-form-tracking-3.14.0.tgz#49b16b01521801a1a85969eef5b39c1c383f3ef4"
1549+
integrity sha512-MJZeIbdqm84wiqDOQi6sVtuOoygDZrbr5862SMOl4sCjmG0ZfVw3WF2GtCla3onnmPkOnfqbevEwW36RYZsO7w==
15501550
dependencies:
1551-
"@snowplow/browser-tracker-core" "3.12.0"
1552-
"@snowplow/tracker-core" "3.12.0"
1551+
"@snowplow/browser-tracker-core" "3.14.0"
1552+
"@snowplow/tracker-core" "3.14.0"
15531553
tslib "^2.3.1"
15541554

1555-
"@snowplow/browser-plugin-media@^3.12.0":
1556-
version "3.12.0"
1557-
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-media/-/browser-plugin-media-3.12.0.tgz#82ab638a538c360730fe755cf6f4a905417f6b7b"
1558-
integrity sha512-QkcrteIcOhLRPqqX8MFMysEgvX1GEN9eWkoU2K4cL6zWuTnPe+H91Dc6ABbR8EohJB0nvOqA8cLHM4mXeSXxUA==
1555+
"@snowplow/browser-plugin-media@3.14.0", "@snowplow/browser-plugin-media@^3.14.0":
1556+
version "3.14.0"
1557+
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-media/-/browser-plugin-media-3.14.0.tgz#46bc173f3f0f534c99993394216ab10ae4c8c4f6"
1558+
integrity sha512-/FI7J1/E/TN9HE2bbsMEiEqKyz44Mp0Y+9wVsPcvsbCaWomt/EZro+bvV8O4sBIRh2nOqmsFhrEe5EDGNB4A/g==
15591559
dependencies:
1560-
"@snowplow/browser-tracker-core" "3.12.0"
1561-
"@snowplow/tracker-core" "3.12.0"
1560+
"@snowplow/browser-tracker-core" "3.14.0"
1561+
"@snowplow/tracker-core" "3.14.0"
15621562
tslib "^2.3.1"
15631563
uuid "^3.4.0"
15641564

1565-
"@snowplow/browser-plugin-youtube-tracking@^3.12.0":
1566-
version "3.12.0"
1567-
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-youtube-tracking/-/browser-plugin-youtube-tracking-3.12.0.tgz#e1bfef712d6cbae74f73d7cc6daf5448d99fccb2"
1568-
integrity sha512-G2IPIA/fF5T+RxzEsJZEALYbzfzSyeNTFHVuPVO69l4irEGGDeVqMMx9Na6TT2ZzN6y0yKVjBWo02iUz9SnYpA==
1565+
"@snowplow/browser-plugin-vimeo-tracking@3.14.0":
1566+
version "3.14.0"
1567+
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-vimeo-tracking/-/browser-plugin-vimeo-tracking-3.14.0.tgz#0bd92991abdbe91d7544a0ccaf82a71779762bd3"
1568+
integrity sha512-yrru3voAguGbEA/SBJTuFMSNOYrMMvg9+9eCcNXUlwElp2wRHRcfsq6bupbneJir5M0QS3/TTgHIJsGXTHUZmg==
15691569
dependencies:
1570-
"@snowplow/browser-tracker-core" "3.12.0"
1571-
"@snowplow/tracker-core" "3.12.0"
1570+
"@snowplow/browser-plugin-media" "3.14.0"
1571+
"@snowplow/browser-tracker-core" "3.14.0"
1572+
"@snowplow/tracker-core" "3.14.0"
1573+
"@vimeo/player" "2.16.4"
15721574
tslib "^2.3.1"
15731575

1574-
"@snowplow/browser-tracker-core@3.12.0":
1575-
version "3.12.0"
1576-
resolved "https://registry.yarnpkg.com/@snowplow/browser-tracker-core/-/browser-tracker-core-3.12.0.tgz#eb9bce60c6ecd2c51530fda1c893f75a09048e3b"
1577-
integrity sha512-niMi23izU6irxeld9RL4LkFGwDRQ79vpV3cBcN8ip7X43/a7FS7PVmyP5r8Er1jhaYvMWah3bs8ltURJrvbSGw==
1576+
"@snowplow/browser-plugin-youtube-tracking@^3.14.0":
1577+
version "3.14.0"
1578+
resolved "https://registry.yarnpkg.com/@snowplow/browser-plugin-youtube-tracking/-/browser-plugin-youtube-tracking-3.14.0.tgz#1bb69f4670352d2a370396a53eb8324979ec3e0f"
1579+
integrity sha512-t2jSNEn4AAefWKhMPqn/O/XtyKKjIdvP7PBEVzctscyYs7i/Y35zYSENos1akohrgGFp4hd4gYONa+k+i5SdAA==
15781580
dependencies:
1579-
"@snowplow/tracker-core" "3.12.0"
1581+
"@snowplow/browser-tracker-core" "3.14.0"
1582+
"@snowplow/tracker-core" "3.14.0"
1583+
tslib "^2.3.1"
1584+
1585+
"@snowplow/browser-tracker-core@3.14.0":
1586+
version "3.14.0"
1587+
resolved "https://registry.yarnpkg.com/@snowplow/browser-tracker-core/-/browser-tracker-core-3.14.0.tgz#91567fb22ac7f6b3df1bfe2db6c840f6aec5719b"
1588+
integrity sha512-/qYnDYrZNAh2w6GEhdUhQHZU5sz1bqW5rpFW6UGf7g65aDIJOqyw3zDK1xubo5TnAHSk4VRDrUN+WVUo3mF15Q==
1589+
dependencies:
1590+
"@snowplow/tracker-core" "3.14.0"
15801591
sha1 "^1.1.1"
15811592
tslib "^2.3.1"
15821593
uuid "^3.4.0"
15831594

1584-
"@snowplow/browser-tracker@^3.12.0":
1585-
version "3.12.0"
1586-
resolved "https://registry.yarnpkg.com/@snowplow/browser-tracker/-/browser-tracker-3.12.0.tgz#861c091d78e18ca4b08243db108181df90f955e6"
1587-
integrity sha512-CKEAebAZR6TFFEmwOkTdk7Qv4U0liBb6uGPi3ET5+jbmHyAmCOsjlD39vFFUxfV4ySTLtzEUXQHL2FLQbAsiYg==
1595+
"@snowplow/browser-tracker@^3.14.0":
1596+
version "3.14.0"
1597+
resolved "https://registry.yarnpkg.com/@snowplow/browser-tracker/-/browser-tracker-3.14.0.tgz#88e6954de0a351ea517b7c38337fdcedb790b868"
1598+
integrity sha512-Ho5Q40o7N1wPSWUOut24DRbAPo+hOww8kXK1e6qjyFo2HbaAWK9FKZv35JpP8Nkgj+215Zyhe0fhEfmkgk6wow==
15881599
dependencies:
1589-
"@snowplow/browser-tracker-core" "3.12.0"
1590-
"@snowplow/tracker-core" "3.12.0"
1600+
"@snowplow/browser-tracker-core" "3.14.0"
1601+
"@snowplow/tracker-core" "3.14.0"
15911602
tslib "^2.3.1"
15921603

1593-
"@snowplow/tracker-core@3.12.0":
1594-
version "3.12.0"
1595-
resolved "https://registry.yarnpkg.com/@snowplow/tracker-core/-/tracker-core-3.12.0.tgz#31b67dd91a7373aba837ab41317c025f01181249"
1596-
integrity sha512-AzEW0oJeCIA1AVHu1dllkkQPdYMasCFHT5O50V92TnB936B56KJ8XxOHzw1FOU9S1s76M93truUvHpvMZPOlGw==
1604+
"@snowplow/tracker-core@3.14.0":
1605+
version "3.14.0"
1606+
resolved "https://registry.yarnpkg.com/@snowplow/tracker-core/-/tracker-core-3.14.0.tgz#c5d38bd52066977973656150ae14d14417d21270"
1607+
integrity sha512-YRbYJLlkcVVTCOcFSrimXCAdj+NxP/Dw6kdptaDyLFRC4S+SNfnar/BGEGj4Bx5e4aAZPME3nLeRfj9EfJBZhA==
15971608
dependencies:
15981609
tslib "^2.3.1"
15991610
uuid "^3.4.0"
@@ -2168,6 +2179,22 @@
21682179
"@typescript-eslint/types" "5.24.0"
21692180
eslint-visitor-keys "^3.3.0"
21702181

2182+
"@vimeo/player@2.16.4":
2183+
version "2.16.4"
2184+
resolved "https://registry.yarnpkg.com/@vimeo/player/-/player-2.16.4.tgz#40043a55f440b94753461da44dfe94bae077133e"
2185+
integrity sha512-i+ids9ziQuai3mp8XzF9Q5b2hLgRCekRcefdnoy+RkKUR8Xq0cJndnk9jHugEOw8v6PLj7tO3eEAw4lu2/AG2Q==
2186+
dependencies:
2187+
native-promise-only "0.8.1"
2188+
weakmap-polyfill "2.0.4"
2189+
2190+
"@vimeo/player@^2.19.0":
2191+
version "2.20.1"
2192+
resolved "https://registry.yarnpkg.com/@vimeo/player/-/player-2.20.1.tgz#b2db8651cfed71009475528019977bf8e8c3dadf"
2193+
integrity sha512-eoKkqsMY33RQn8lFtlUbb3uo+xDL3V8PTN01SdrJ1E9PI+5pLyqNGh/GO/2EyX9Vr6antLm0/v36ABF2rcwXIQ==
2194+
dependencies:
2195+
native-promise-only "0.8.1"
2196+
weakmap-polyfill "2.0.4"
2197+
21712198
"@webassemblyjs/ast@1.11.1":
21722199
version "1.11.1"
21732200
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7"
@@ -5606,6 +5633,11 @@ jest@^27.4.3:
56065633
import-local "^3.0.2"
56075634
jest-cli "^27.5.1"
56085635

5636+
js-base64@^3.7.5:
5637+
version "3.7.5"
5638+
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca"
5639+
integrity sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==
5640+
56095641
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
56105642
version "4.0.0"
56115643
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
@@ -6062,6 +6094,11 @@ nanoid@^3.3.3:
60626094
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
60636095
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
60646096

6097+
native-promise-only@0.8.1:
6098+
version "0.8.1"
6099+
resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11"
6100+
integrity sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==
6101+
60656102
natural-compare@^1.4.0:
60666103
version "1.4.0"
60676104
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -8498,6 +8535,11 @@ wbuf@^1.1.0, wbuf@^1.7.3:
84988535
dependencies:
84998536
minimalistic-assert "^1.0.0"
85008537

8538+
weakmap-polyfill@2.0.4:
8539+
version "2.0.4"
8540+
resolved "https://registry.yarnpkg.com/weakmap-polyfill/-/weakmap-polyfill-2.0.4.tgz#bcc301e4c8eb4eda3e406f08f1a691093e407884"
8541+
integrity sha512-ZzxBf288iALJseijWelmECm/1x7ZwQn3sMYIkDr2VvZp7r6SEKuT8D0O9Wiq6L9Nl5mazrOMcmiZE/2NCenaxw==
8542+
85018543
web-vitals@^2.1.4:
85028544
version "2.1.4"
85038545
resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-2.1.4.tgz#76563175a475a5e835264d373704f9dde718290c"

0 commit comments

Comments
 (0)
Please sign in to comment.