@vouchfor/embeds 0.0.0-experiment.de04f63 → 0.0.0-experiment.de28f28
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/es/embeds.js +1017 -1080
- package/dist/es/embeds.js.map +1 -1
- package/dist/es/src/components/DialogEmbed/DialogOverlay.d.ts +20 -0
- package/dist/es/src/components/DialogEmbed/DialogPortal.d.ts +36 -0
- package/dist/es/src/components/DialogEmbed/index.d.ts +38 -0
- package/dist/es/{components/Embed → src/components/PlayerEmbed}/controllers/event-forwarder.d.ts +6 -5
- package/dist/es/src/components/PlayerEmbed/controllers/fetcher.d.ts +14 -0
- package/dist/es/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
- package/dist/es/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
- package/dist/es/src/components/PlayerEmbed/index.d.ts +74 -0
- package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +3 -0
- package/dist/es/src/index.d.ts +2 -0
- package/dist/es/src/utils/env.d.ts +12 -0
- package/dist/iife/dialog-embed/embed.iife.js +1750 -0
- package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
- package/dist/iife/embeds.iife.js +703 -434
- package/dist/iife/embeds.iife.js.map +1 -1
- package/dist/iife/player-embed/embed.iife.js +1612 -0
- package/dist/iife/player-embed/embed.iife.js.map +1 -0
- package/package.json +45 -33
- package/src/components/DialogEmbed/Dialog.stories.ts +91 -0
- package/src/components/DialogEmbed/DialogOverlay.ts +131 -0
- package/src/components/DialogEmbed/DialogPortal.ts +126 -0
- package/src/components/DialogEmbed/index.ts +97 -0
- package/src/components/{Embed/Embed.stories.ts → PlayerEmbed/PlayerEmbed.stories.ts} +28 -31
- package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
- package/src/components/PlayerEmbed/controllers/fetcher.ts +152 -0
- package/src/components/PlayerEmbed/controllers/tracking/index.ts +224 -0
- package/src/components/PlayerEmbed/controllers/tracking/utils.ts +95 -0
- package/src/components/{Embed → PlayerEmbed}/index.ts +89 -43
- package/src/components/PlayerEmbed/tests/PlayerEmbed.spec.ts +80 -0
- package/src/components/PlayerEmbed/tests/data.ts +183 -0
- package/src/index.ts +2 -1
- package/src/utils/env.ts +18 -32
- package/dist/es/components/Embed/controllers/fetcher.d.ts +0 -8
- package/dist/es/components/Embed/controllers/tracking.d.ts +0 -28
- package/dist/es/components/Embed/index.d.ts +0 -65
- package/dist/es/index.d.ts +0 -1
- package/dist/es/utils/env.d.ts +0 -18
- package/src/components/Embed/controllers/fetcher.ts +0 -43
- package/src/components/Embed/controllers/tracking.ts +0 -268
- /package/dist/es/{utils → src/utils}/events.d.ts +0 -0
package/dist/es/embeds.js
CHANGED
@@ -1,1038 +1,554 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
import {
|
1
|
+
import { css, LitElement, html } from "lit";
|
2
|
+
import { property, state, customElement } from "lit/decorators.js";
|
3
|
+
import { ifDefined } from "lit/directives/if-defined.js";
|
4
|
+
import { createRef, ref } from "lit/directives/ref.js";
|
5
|
+
import { Task } from "@lit/task";
|
6
|
+
import { v4 } from "uuid";
|
7
|
+
import { TEMPLATE_VERSION } from "@vouchfor/canvas-video";
|
5
8
|
import "@vouchfor/media-player";
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
this.cssText = t, this.t = e;
|
17
|
-
}
|
18
|
-
get styleSheet() {
|
19
|
-
let t = this.o;
|
20
|
-
const e = this.t;
|
21
|
-
if (mt && t === void 0) {
|
22
|
-
const i = e !== void 0 && e.length === 1;
|
23
|
-
i && (t = ft.get(e)), t === void 0 && ((this.o = t = new CSSStyleSheet()).replaceSync(this.cssText), i && ft.set(e, t));
|
24
|
-
}
|
25
|
-
return t;
|
26
|
-
}
|
27
|
-
toString() {
|
28
|
-
return this.cssText;
|
29
|
-
}
|
30
|
-
};
|
31
|
-
const ie = (n) => new ee(typeof n == "string" ? n : n + "", void 0, jt), se = (n, t) => {
|
32
|
-
mt ? n.adoptedStyleSheets = t.map((e) => e instanceof CSSStyleSheet ? e : e.styleSheet) : t.forEach((e) => {
|
33
|
-
const i = document.createElement("style"), s = Z.litNonce;
|
34
|
-
s !== void 0 && i.setAttribute("nonce", s), i.textContent = e.cssText, n.appendChild(i);
|
35
|
-
});
|
36
|
-
}, yt = mt ? (n) => n : (n) => n instanceof CSSStyleSheet ? ((t) => {
|
37
|
-
let e = "";
|
38
|
-
for (const i of t.cssRules)
|
39
|
-
e += i.cssText;
|
40
|
-
return ie(e);
|
41
|
-
})(n) : n;
|
42
|
-
/**
|
43
|
-
* @license
|
44
|
-
* Copyright 2017 Google LLC
|
45
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
46
|
-
*/
|
47
|
-
var et;
|
48
|
-
const F = window, At = F.trustedTypes, ne = At ? At.emptyScript : "", Et = F.reactiveElementPolyfillSupport, dt = { toAttribute(n, t) {
|
49
|
-
switch (t) {
|
50
|
-
case Boolean:
|
51
|
-
n = n ? ne : null;
|
52
|
-
break;
|
53
|
-
case Object:
|
54
|
-
case Array:
|
55
|
-
n = n == null ? n : JSON.stringify(n);
|
56
|
-
}
|
57
|
-
return n;
|
58
|
-
}, fromAttribute(n, t) {
|
59
|
-
let e = n;
|
60
|
-
switch (t) {
|
61
|
-
case Boolean:
|
62
|
-
e = n !== null;
|
63
|
-
break;
|
64
|
-
case Number:
|
65
|
-
e = n === null ? null : Number(n);
|
66
|
-
break;
|
67
|
-
case Object:
|
68
|
-
case Array:
|
69
|
-
try {
|
70
|
-
e = JSON.parse(n);
|
71
|
-
} catch {
|
72
|
-
e = null;
|
73
|
-
}
|
74
|
-
}
|
75
|
-
return e;
|
76
|
-
} }, Bt = (n, t) => t !== n && (t == t || n == n), it = { attribute: !0, type: String, converter: dt, reflect: !1, hasChanged: Bt }, ct = "finalized";
|
77
|
-
let T = class extends HTMLElement {
|
78
|
-
constructor() {
|
79
|
-
super(), this._$Ei = /* @__PURE__ */ new Map(), this.isUpdatePending = !1, this.hasUpdated = !1, this._$El = null, this.u();
|
80
|
-
}
|
81
|
-
static addInitializer(t) {
|
82
|
-
var e;
|
83
|
-
this.finalize(), ((e = this.h) !== null && e !== void 0 ? e : this.h = []).push(t);
|
84
|
-
}
|
85
|
-
static get observedAttributes() {
|
86
|
-
this.finalize();
|
87
|
-
const t = [];
|
88
|
-
return this.elementProperties.forEach((e, i) => {
|
89
|
-
const s = this._$Ep(i, e);
|
90
|
-
s !== void 0 && (this._$Ev.set(s, i), t.push(s));
|
91
|
-
}), t;
|
92
|
-
}
|
93
|
-
static createProperty(t, e = it) {
|
94
|
-
if (e.state && (e.attribute = !1), this.finalize(), this.elementProperties.set(t, e), !e.noAccessor && !this.prototype.hasOwnProperty(t)) {
|
95
|
-
const i = typeof t == "symbol" ? Symbol() : "__" + t, s = this.getPropertyDescriptor(t, i, e);
|
96
|
-
s !== void 0 && Object.defineProperty(this.prototype, t, s);
|
97
|
-
}
|
98
|
-
}
|
99
|
-
static getPropertyDescriptor(t, e, i) {
|
100
|
-
return { get() {
|
101
|
-
return this[e];
|
102
|
-
}, set(s) {
|
103
|
-
const o = this[t];
|
104
|
-
this[e] = s, this.requestUpdate(t, o, i);
|
105
|
-
}, configurable: !0, enumerable: !0 };
|
106
|
-
}
|
107
|
-
static getPropertyOptions(t) {
|
108
|
-
return this.elementProperties.get(t) || it;
|
109
|
-
}
|
110
|
-
static finalize() {
|
111
|
-
if (this.hasOwnProperty(ct))
|
112
|
-
return !1;
|
113
|
-
this[ct] = !0;
|
114
|
-
const t = Object.getPrototypeOf(this);
|
115
|
-
if (t.finalize(), t.h !== void 0 && (this.h = [...t.h]), this.elementProperties = new Map(t.elementProperties), this._$Ev = /* @__PURE__ */ new Map(), this.hasOwnProperty("properties")) {
|
116
|
-
const e = this.properties, i = [...Object.getOwnPropertyNames(e), ...Object.getOwnPropertySymbols(e)];
|
117
|
-
for (const s of i)
|
118
|
-
this.createProperty(s, e[s]);
|
119
|
-
}
|
120
|
-
return this.elementStyles = this.finalizeStyles(this.styles), !0;
|
121
|
-
}
|
122
|
-
static finalizeStyles(t) {
|
123
|
-
const e = [];
|
124
|
-
if (Array.isArray(t)) {
|
125
|
-
const i = new Set(t.flat(1 / 0).reverse());
|
126
|
-
for (const s of i)
|
127
|
-
e.unshift(yt(s));
|
128
|
-
} else
|
129
|
-
t !== void 0 && e.push(yt(t));
|
130
|
-
return e;
|
131
|
-
}
|
132
|
-
static _$Ep(t, e) {
|
133
|
-
const i = e.attribute;
|
134
|
-
return i === !1 ? void 0 : typeof i == "string" ? i : typeof t == "string" ? t.toLowerCase() : void 0;
|
135
|
-
}
|
136
|
-
u() {
|
137
|
-
var t;
|
138
|
-
this._$E_ = new Promise((e) => this.enableUpdating = e), this._$AL = /* @__PURE__ */ new Map(), this._$Eg(), this.requestUpdate(), (t = this.constructor.h) === null || t === void 0 || t.forEach((e) => e(this));
|
139
|
-
}
|
140
|
-
addController(t) {
|
141
|
-
var e, i;
|
142
|
-
((e = this._$ES) !== null && e !== void 0 ? e : this._$ES = []).push(t), this.renderRoot !== void 0 && this.isConnected && ((i = t.hostConnected) === null || i === void 0 || i.call(t));
|
143
|
-
}
|
144
|
-
removeController(t) {
|
145
|
-
var e;
|
146
|
-
(e = this._$ES) === null || e === void 0 || e.splice(this._$ES.indexOf(t) >>> 0, 1);
|
147
|
-
}
|
148
|
-
_$Eg() {
|
149
|
-
this.constructor.elementProperties.forEach((t, e) => {
|
150
|
-
this.hasOwnProperty(e) && (this._$Ei.set(e, this[e]), delete this[e]);
|
151
|
-
});
|
152
|
-
}
|
153
|
-
createRenderRoot() {
|
154
|
-
var t;
|
155
|
-
const e = (t = this.shadowRoot) !== null && t !== void 0 ? t : this.attachShadow(this.constructor.shadowRootOptions);
|
156
|
-
return se(e, this.constructor.elementStyles), e;
|
157
|
-
}
|
158
|
-
connectedCallback() {
|
159
|
-
var t;
|
160
|
-
this.renderRoot === void 0 && (this.renderRoot = this.createRenderRoot()), this.enableUpdating(!0), (t = this._$ES) === null || t === void 0 || t.forEach((e) => {
|
161
|
-
var i;
|
162
|
-
return (i = e.hostConnected) === null || i === void 0 ? void 0 : i.call(e);
|
163
|
-
});
|
164
|
-
}
|
165
|
-
enableUpdating(t) {
|
166
|
-
}
|
167
|
-
disconnectedCallback() {
|
168
|
-
var t;
|
169
|
-
(t = this._$ES) === null || t === void 0 || t.forEach((e) => {
|
170
|
-
var i;
|
171
|
-
return (i = e.hostDisconnected) === null || i === void 0 ? void 0 : i.call(e);
|
172
|
-
});
|
173
|
-
}
|
174
|
-
attributeChangedCallback(t, e, i) {
|
175
|
-
this._$AK(t, i);
|
176
|
-
}
|
177
|
-
_$EO(t, e, i = it) {
|
178
|
-
var s;
|
179
|
-
const o = this.constructor._$Ep(t, i);
|
180
|
-
if (o !== void 0 && i.reflect === !0) {
|
181
|
-
const r = (((s = i.converter) === null || s === void 0 ? void 0 : s.toAttribute) !== void 0 ? i.converter : dt).toAttribute(e, i.type);
|
182
|
-
this._$El = t, r == null ? this.removeAttribute(o) : this.setAttribute(o, r), this._$El = null;
|
183
|
-
}
|
184
|
-
}
|
185
|
-
_$AK(t, e) {
|
186
|
-
var i;
|
187
|
-
const s = this.constructor, o = s._$Ev.get(t);
|
188
|
-
if (o !== void 0 && this._$El !== o) {
|
189
|
-
const r = s.getPropertyOptions(o), d = typeof r.converter == "function" ? { fromAttribute: r.converter } : ((i = r.converter) === null || i === void 0 ? void 0 : i.fromAttribute) !== void 0 ? r.converter : dt;
|
190
|
-
this._$El = o, this[o] = d.fromAttribute(e, r.type), this._$El = null;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
requestUpdate(t, e, i) {
|
194
|
-
let s = !0;
|
195
|
-
t !== void 0 && (((i = i || this.constructor.getPropertyOptions(t)).hasChanged || Bt)(this[t], e) ? (this._$AL.has(t) || this._$AL.set(t, e), i.reflect === !0 && this._$El !== t && (this._$EC === void 0 && (this._$EC = /* @__PURE__ */ new Map()), this._$EC.set(t, i))) : s = !1), !this.isUpdatePending && s && (this._$E_ = this._$Ej());
|
196
|
-
}
|
197
|
-
async _$Ej() {
|
198
|
-
this.isUpdatePending = !0;
|
199
|
-
try {
|
200
|
-
await this._$E_;
|
201
|
-
} catch (e) {
|
202
|
-
Promise.reject(e);
|
203
|
-
}
|
204
|
-
const t = this.scheduleUpdate();
|
205
|
-
return t != null && await t, !this.isUpdatePending;
|
206
|
-
}
|
207
|
-
scheduleUpdate() {
|
208
|
-
return this.performUpdate();
|
209
|
-
}
|
210
|
-
performUpdate() {
|
211
|
-
var t;
|
212
|
-
if (!this.isUpdatePending)
|
213
|
-
return;
|
214
|
-
this.hasUpdated, this._$Ei && (this._$Ei.forEach((s, o) => this[o] = s), this._$Ei = void 0);
|
215
|
-
let e = !1;
|
216
|
-
const i = this._$AL;
|
217
|
-
try {
|
218
|
-
e = this.shouldUpdate(i), e ? (this.willUpdate(i), (t = this._$ES) === null || t === void 0 || t.forEach((s) => {
|
219
|
-
var o;
|
220
|
-
return (o = s.hostUpdate) === null || o === void 0 ? void 0 : o.call(s);
|
221
|
-
}), this.update(i)) : this._$Ek();
|
222
|
-
} catch (s) {
|
223
|
-
throw e = !1, this._$Ek(), s;
|
224
|
-
}
|
225
|
-
e && this._$AE(i);
|
226
|
-
}
|
227
|
-
willUpdate(t) {
|
228
|
-
}
|
229
|
-
_$AE(t) {
|
230
|
-
var e;
|
231
|
-
(e = this._$ES) === null || e === void 0 || e.forEach((i) => {
|
232
|
-
var s;
|
233
|
-
return (s = i.hostUpdated) === null || s === void 0 ? void 0 : s.call(i);
|
234
|
-
}), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(t)), this.updated(t);
|
235
|
-
}
|
236
|
-
_$Ek() {
|
237
|
-
this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = !1;
|
238
|
-
}
|
239
|
-
get updateComplete() {
|
240
|
-
return this.getUpdateComplete();
|
241
|
-
}
|
242
|
-
getUpdateComplete() {
|
243
|
-
return this._$E_;
|
244
|
-
}
|
245
|
-
shouldUpdate(t) {
|
246
|
-
return !0;
|
247
|
-
}
|
248
|
-
update(t) {
|
249
|
-
this._$EC !== void 0 && (this._$EC.forEach((e, i) => this._$EO(i, this[i], e)), this._$EC = void 0), this._$Ek();
|
250
|
-
}
|
251
|
-
updated(t) {
|
252
|
-
}
|
253
|
-
firstUpdated(t) {
|
254
|
-
}
|
255
|
-
};
|
256
|
-
T[ct] = !0, T.elementProperties = /* @__PURE__ */ new Map(), T.elementStyles = [], T.shadowRootOptions = { mode: "open" }, Et == null || Et({ ReactiveElement: T }), ((et = F.reactiveElementVersions) !== null && et !== void 0 ? et : F.reactiveElementVersions = []).push("1.6.2");
|
257
|
-
/**
|
258
|
-
* @license
|
259
|
-
* Copyright 2017 Google LLC
|
260
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
261
|
-
*/
|
262
|
-
var st;
|
263
|
-
const J = window, x = J.trustedTypes, bt = x ? x.createPolicy("lit-html", { createHTML: (n) => n }) : void 0, ut = "$lit$", E = `lit$${(Math.random() + "").slice(9)}$`, zt = "?" + E, re = `<${zt}>`, C = document, G = () => C.createComment(""), D = (n) => n === null || typeof n != "object" && typeof n != "function", Wt = Array.isArray, oe = (n) => Wt(n) || typeof (n == null ? void 0 : n[Symbol.iterator]) == "function", nt = `[
|
264
|
-
\f\r]`, V = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, wt = /-->/g, St = />/g, w = RegExp(`>|${nt}(?:([^\\s"'>=/]+)(${nt}*=${nt}*(?:[^
|
265
|
-
\f\r"'\`<>=]|("|')|))|$)`, "g"), Pt = /'/g, Ut = /"/g, qt = /^(?:script|style|textarea|title)$/i, j = Symbol.for("lit-noChange"), v = Symbol.for("lit-nothing"), Ct = /* @__PURE__ */ new WeakMap(), P = C.createTreeWalker(C, 129, null, !1);
|
266
|
-
function Kt(n, t) {
|
267
|
-
if (!Array.isArray(n) || !n.hasOwnProperty("raw"))
|
268
|
-
throw Error("invalid template strings array");
|
269
|
-
return bt !== void 0 ? bt.createHTML(t) : t;
|
270
|
-
}
|
271
|
-
const le = (n, t) => {
|
272
|
-
const e = n.length - 1, i = [];
|
273
|
-
let s, o = t === 2 ? "<svg>" : "", r = V;
|
274
|
-
for (let d = 0; d < e; d++) {
|
275
|
-
const l = n[d];
|
276
|
-
let a, u, h = -1, c = 0;
|
277
|
-
for (; c < l.length && (r.lastIndex = c, u = r.exec(l), u !== null); )
|
278
|
-
c = r.lastIndex, r === V ? u[1] === "!--" ? r = wt : u[1] !== void 0 ? r = St : u[2] !== void 0 ? (qt.test(u[2]) && (s = RegExp("</" + u[2], "g")), r = w) : u[3] !== void 0 && (r = w) : r === w ? u[0] === ">" ? (r = s ?? V, h = -1) : u[1] === void 0 ? h = -2 : (h = r.lastIndex - u[2].length, a = u[1], r = u[3] === void 0 ? w : u[3] === '"' ? Ut : Pt) : r === Ut || r === Pt ? r = w : r === wt || r === St ? r = V : (r = w, s = void 0);
|
279
|
-
const p = r === w && n[d + 1].startsWith("/>") ? " " : "";
|
280
|
-
o += r === V ? l + re : h >= 0 ? (i.push(a), l.slice(0, h) + ut + l.slice(h) + E + p) : l + E + (h === -2 ? (i.push(void 0), d) : p);
|
281
|
-
}
|
282
|
-
return [Kt(n, o + (n[e] || "<?>") + (t === 2 ? "</svg>" : "")), i];
|
283
|
-
};
|
284
|
-
let pt = class Zt {
|
285
|
-
constructor({ strings: t, _$litType$: e }, i) {
|
286
|
-
let s;
|
287
|
-
this.parts = [];
|
288
|
-
let o = 0, r = 0;
|
289
|
-
const d = t.length - 1, l = this.parts, [a, u] = le(t, e);
|
290
|
-
if (this.el = Zt.createElement(a, i), P.currentNode = this.el.content, e === 2) {
|
291
|
-
const h = this.el.content, c = h.firstChild;
|
292
|
-
c.remove(), h.append(...c.childNodes);
|
293
|
-
}
|
294
|
-
for (; (s = P.nextNode()) !== null && l.length < d; ) {
|
295
|
-
if (s.nodeType === 1) {
|
296
|
-
if (s.hasAttributes()) {
|
297
|
-
const h = [];
|
298
|
-
for (const c of s.getAttributeNames())
|
299
|
-
if (c.endsWith(ut) || c.startsWith(E)) {
|
300
|
-
const p = u[r++];
|
301
|
-
if (h.push(c), p !== void 0) {
|
302
|
-
const A = s.getAttribute(p.toLowerCase() + ut).split(E), f = /([.?@])?(.*)/.exec(p);
|
303
|
-
l.push({ type: 1, index: o, name: f[2], strings: A, ctor: f[1] === "." ? he : f[1] === "?" ? ce : f[1] === "@" ? ue : Y });
|
304
|
-
} else
|
305
|
-
l.push({ type: 6, index: o });
|
306
|
-
}
|
307
|
-
for (const c of h)
|
308
|
-
s.removeAttribute(c);
|
309
|
-
}
|
310
|
-
if (qt.test(s.tagName)) {
|
311
|
-
const h = s.textContent.split(E), c = h.length - 1;
|
312
|
-
if (c > 0) {
|
313
|
-
s.textContent = x ? x.emptyScript : "";
|
314
|
-
for (let p = 0; p < c; p++)
|
315
|
-
s.append(h[p], G()), P.nextNode(), l.push({ type: 2, index: ++o });
|
316
|
-
s.append(h[c], G());
|
317
|
-
}
|
318
|
-
}
|
319
|
-
} else if (s.nodeType === 8)
|
320
|
-
if (s.data === zt)
|
321
|
-
l.push({ type: 2, index: o });
|
322
|
-
else {
|
323
|
-
let h = -1;
|
324
|
-
for (; (h = s.data.indexOf(E, h + 1)) !== -1; )
|
325
|
-
l.push({ type: 7, index: o }), h += E.length - 1;
|
326
|
-
}
|
327
|
-
o++;
|
328
|
-
}
|
329
|
-
}
|
330
|
-
static createElement(t, e) {
|
331
|
-
const i = C.createElement("template");
|
332
|
-
return i.innerHTML = t, i;
|
333
|
-
}
|
334
|
-
};
|
335
|
-
function H(n, t, e = n, i) {
|
336
|
-
var s, o, r, d;
|
337
|
-
if (t === j)
|
338
|
-
return t;
|
339
|
-
let l = i !== void 0 ? (s = e._$Co) === null || s === void 0 ? void 0 : s[i] : e._$Cl;
|
340
|
-
const a = D(t) ? void 0 : t._$litDirective$;
|
341
|
-
return (l == null ? void 0 : l.constructor) !== a && ((o = l == null ? void 0 : l._$AO) === null || o === void 0 || o.call(l, !1), a === void 0 ? l = void 0 : (l = new a(n), l._$AT(n, e, i)), i !== void 0 ? ((r = (d = e)._$Co) !== null && r !== void 0 ? r : d._$Co = [])[i] = l : e._$Cl = l), l !== void 0 && (t = H(n, l._$AS(n, t.values), l, i)), t;
|
342
|
-
}
|
343
|
-
let ae = class {
|
344
|
-
constructor(t, e) {
|
345
|
-
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = e;
|
346
|
-
}
|
347
|
-
get parentNode() {
|
348
|
-
return this._$AM.parentNode;
|
349
|
-
}
|
350
|
-
get _$AU() {
|
351
|
-
return this._$AM._$AU;
|
352
|
-
}
|
353
|
-
u(t) {
|
354
|
-
var e;
|
355
|
-
const { el: { content: i }, parts: s } = this._$AD, o = ((e = t == null ? void 0 : t.creationScope) !== null && e !== void 0 ? e : C).importNode(i, !0);
|
356
|
-
P.currentNode = o;
|
357
|
-
let r = P.nextNode(), d = 0, l = 0, a = s[0];
|
358
|
-
for (; a !== void 0; ) {
|
359
|
-
if (d === a.index) {
|
360
|
-
let u;
|
361
|
-
a.type === 2 ? u = new Ft(r, r.nextSibling, this, t) : a.type === 1 ? u = new a.ctor(r, a.name, a.strings, this, t) : a.type === 6 && (u = new pe(r, this, t)), this._$AV.push(u), a = s[++l];
|
362
|
-
}
|
363
|
-
d !== (a == null ? void 0 : a.index) && (r = P.nextNode(), d++);
|
364
|
-
}
|
365
|
-
return P.currentNode = C, o;
|
366
|
-
}
|
367
|
-
v(t) {
|
368
|
-
let e = 0;
|
369
|
-
for (const i of this._$AV)
|
370
|
-
i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, e), e += i.strings.length - 2) : i._$AI(t[e])), e++;
|
371
|
-
}
|
372
|
-
}, Ft = class Jt {
|
373
|
-
constructor(t, e, i, s) {
|
374
|
-
var o;
|
375
|
-
this.type = 2, this._$AH = v, this._$AN = void 0, this._$AA = t, this._$AB = e, this._$AM = i, this.options = s, this._$Cp = (o = s == null ? void 0 : s.isConnected) === null || o === void 0 || o;
|
376
|
-
}
|
377
|
-
get _$AU() {
|
378
|
-
var t, e;
|
379
|
-
return (e = (t = this._$AM) === null || t === void 0 ? void 0 : t._$AU) !== null && e !== void 0 ? e : this._$Cp;
|
380
|
-
}
|
381
|
-
get parentNode() {
|
382
|
-
let t = this._$AA.parentNode;
|
383
|
-
const e = this._$AM;
|
384
|
-
return e !== void 0 && (t == null ? void 0 : t.nodeType) === 11 && (t = e.parentNode), t;
|
385
|
-
}
|
386
|
-
get startNode() {
|
387
|
-
return this._$AA;
|
388
|
-
}
|
389
|
-
get endNode() {
|
390
|
-
return this._$AB;
|
391
|
-
}
|
392
|
-
_$AI(t, e = this) {
|
393
|
-
t = H(this, t, e), D(t) ? t === v || t == null || t === "" ? (this._$AH !== v && this._$AR(), this._$AH = v) : t !== this._$AH && t !== j && this._(t) : t._$litType$ !== void 0 ? this.g(t) : t.nodeType !== void 0 ? this.$(t) : oe(t) ? this.T(t) : this._(t);
|
394
|
-
}
|
395
|
-
k(t) {
|
396
|
-
return this._$AA.parentNode.insertBefore(t, this._$AB);
|
397
|
-
}
|
398
|
-
$(t) {
|
399
|
-
this._$AH !== t && (this._$AR(), this._$AH = this.k(t));
|
400
|
-
}
|
401
|
-
_(t) {
|
402
|
-
this._$AH !== v && D(this._$AH) ? this._$AA.nextSibling.data = t : this.$(C.createTextNode(t)), this._$AH = t;
|
403
|
-
}
|
404
|
-
g(t) {
|
405
|
-
var e;
|
406
|
-
const { values: i, _$litType$: s } = t, o = typeof s == "number" ? this._$AC(t) : (s.el === void 0 && (s.el = pt.createElement(Kt(s.h, s.h[0]), this.options)), s);
|
407
|
-
if (((e = this._$AH) === null || e === void 0 ? void 0 : e._$AD) === o)
|
408
|
-
this._$AH.v(i);
|
409
|
-
else {
|
410
|
-
const r = new ae(o, this), d = r.u(this.options);
|
411
|
-
r.v(i), this.$(d), this._$AH = r;
|
412
|
-
}
|
413
|
-
}
|
414
|
-
_$AC(t) {
|
415
|
-
let e = Ct.get(t.strings);
|
416
|
-
return e === void 0 && Ct.set(t.strings, e = new pt(t)), e;
|
417
|
-
}
|
418
|
-
T(t) {
|
419
|
-
Wt(this._$AH) || (this._$AH = [], this._$AR());
|
420
|
-
const e = this._$AH;
|
421
|
-
let i, s = 0;
|
422
|
-
for (const o of t)
|
423
|
-
s === e.length ? e.push(i = new Jt(this.k(G()), this.k(G()), this, this.options)) : i = e[s], i._$AI(o), s++;
|
424
|
-
s < e.length && (this._$AR(i && i._$AB.nextSibling, s), e.length = s);
|
425
|
-
}
|
426
|
-
_$AR(t = this._$AA.nextSibling, e) {
|
427
|
-
var i;
|
428
|
-
for ((i = this._$AP) === null || i === void 0 || i.call(this, !1, !0, e); t && t !== this._$AB; ) {
|
429
|
-
const s = t.nextSibling;
|
430
|
-
t.remove(), t = s;
|
431
|
-
}
|
432
|
-
}
|
433
|
-
setConnected(t) {
|
434
|
-
var e;
|
435
|
-
this._$AM === void 0 && (this._$Cp = t, (e = this._$AP) === null || e === void 0 || e.call(this, t));
|
436
|
-
}
|
437
|
-
}, Y = class {
|
438
|
-
constructor(t, e, i, s, o) {
|
439
|
-
this.type = 1, this._$AH = v, this._$AN = void 0, this.element = t, this.name = e, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = v;
|
440
|
-
}
|
441
|
-
get tagName() {
|
442
|
-
return this.element.tagName;
|
443
|
-
}
|
444
|
-
get _$AU() {
|
445
|
-
return this._$AM._$AU;
|
446
|
-
}
|
447
|
-
_$AI(t, e = this, i, s) {
|
448
|
-
const o = this.strings;
|
449
|
-
let r = !1;
|
450
|
-
if (o === void 0)
|
451
|
-
t = H(this, t, e, 0), r = !D(t) || t !== this._$AH && t !== j, r && (this._$AH = t);
|
452
|
-
else {
|
453
|
-
const d = t;
|
454
|
-
let l, a;
|
455
|
-
for (t = o[0], l = 0; l < o.length - 1; l++)
|
456
|
-
a = H(this, d[i + l], e, l), a === j && (a = this._$AH[l]), r || (r = !D(a) || a !== this._$AH[l]), a === v ? t = v : t !== v && (t += (a ?? "") + o[l + 1]), this._$AH[l] = a;
|
457
|
-
}
|
458
|
-
r && !s && this.j(t);
|
459
|
-
}
|
460
|
-
j(t) {
|
461
|
-
t === v ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
|
462
|
-
}
|
463
|
-
}, he = class extends Y {
|
464
|
-
constructor() {
|
465
|
-
super(...arguments), this.type = 3;
|
466
|
-
}
|
467
|
-
j(t) {
|
468
|
-
this.element[this.name] = t === v ? void 0 : t;
|
469
|
-
}
|
470
|
-
};
|
471
|
-
const de = x ? x.emptyScript : "";
|
472
|
-
let ce = class extends Y {
|
473
|
-
constructor() {
|
474
|
-
super(...arguments), this.type = 4;
|
475
|
-
}
|
476
|
-
j(t) {
|
477
|
-
t && t !== v ? this.element.setAttribute(this.name, de) : this.element.removeAttribute(this.name);
|
478
|
-
}
|
479
|
-
}, ue = class extends Y {
|
480
|
-
constructor(t, e, i, s, o) {
|
481
|
-
super(t, e, i, s, o), this.type = 5;
|
482
|
-
}
|
483
|
-
_$AI(t, e = this) {
|
484
|
-
var i;
|
485
|
-
if ((t = (i = H(this, t, e, 0)) !== null && i !== void 0 ? i : v) === j)
|
486
|
-
return;
|
487
|
-
const s = this._$AH, o = t === v && s !== v || t.capture !== s.capture || t.once !== s.once || t.passive !== s.passive, r = t !== v && (s === v || o);
|
488
|
-
o && this.element.removeEventListener(this.name, this, s), r && this.element.addEventListener(this.name, this, t), this._$AH = t;
|
489
|
-
}
|
490
|
-
handleEvent(t) {
|
491
|
-
var e, i;
|
492
|
-
typeof this._$AH == "function" ? this._$AH.call((i = (e = this.options) === null || e === void 0 ? void 0 : e.host) !== null && i !== void 0 ? i : this.element, t) : this._$AH.handleEvent(t);
|
493
|
-
}
|
494
|
-
};
|
495
|
-
class pe {
|
496
|
-
constructor(t, e, i) {
|
497
|
-
this.element = t, this.type = 6, this._$AN = void 0, this._$AM = e, this.options = i;
|
498
|
-
}
|
499
|
-
get _$AU() {
|
500
|
-
return this._$AM._$AU;
|
501
|
-
}
|
502
|
-
_$AI(t) {
|
503
|
-
H(this, t);
|
504
|
-
}
|
505
|
-
}
|
506
|
-
const Rt = J.litHtmlPolyfillSupport;
|
507
|
-
Rt == null || Rt(pt, Ft), ((st = J.litHtmlVersions) !== null && st !== void 0 ? st : J.litHtmlVersions = []).push("2.8.0");
|
508
|
-
/**
|
509
|
-
* @license
|
510
|
-
* Copyright 2017 Google LLC
|
511
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
512
|
-
*/
|
513
|
-
var rt;
|
514
|
-
const X = window, N = X.trustedTypes, Tt = N ? N.createPolicy("lit-html", { createHTML: (n) => n }) : void 0, vt = "$lit$", b = `lit$${(Math.random() + "").slice(9)}$`, Gt = "?" + b, ve = `<${Gt}>`, R = document, B = () => R.createComment(""), z = (n) => n === null || typeof n != "object" && typeof n != "function", Xt = Array.isArray, _e = (n) => Xt(n) || typeof (n == null ? void 0 : n[Symbol.iterator]) == "function", ot = `[
|
515
|
-
\f\r]`, O = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, xt = /-->/g, Ht = />/g, S = RegExp(`>|${ot}(?:([^\\s"'>=/]+)(${ot}*=${ot}*(?:[^
|
516
|
-
\f\r"'\`<>=]|("|')|))|$)`, "g"), Nt = /'/g, It = /"/g, Yt = /^(?:script|style|textarea|title)$/i, $e = (n) => (t, ...e) => ({ _$litType$: n, strings: t, values: e }), me = $e(1), I = Symbol.for("lit-noChange"), _ = Symbol.for("lit-nothing"), kt = /* @__PURE__ */ new WeakMap(), U = R.createTreeWalker(R, 129, null, !1), ge = (n, t) => {
|
517
|
-
const e = n.length - 1, i = [];
|
518
|
-
let s, o = t === 2 ? "<svg>" : "", r = O;
|
519
|
-
for (let l = 0; l < e; l++) {
|
520
|
-
const a = n[l];
|
521
|
-
let u, h, c = -1, p = 0;
|
522
|
-
for (; p < a.length && (r.lastIndex = p, h = r.exec(a), h !== null); )
|
523
|
-
p = r.lastIndex, r === O ? h[1] === "!--" ? r = xt : h[1] !== void 0 ? r = Ht : h[2] !== void 0 ? (Yt.test(h[2]) && (s = RegExp("</" + h[2], "g")), r = S) : h[3] !== void 0 && (r = S) : r === S ? h[0] === ">" ? (r = s ?? O, c = -1) : h[1] === void 0 ? c = -2 : (c = r.lastIndex - h[2].length, u = h[1], r = h[3] === void 0 ? S : h[3] === '"' ? It : Nt) : r === It || r === Nt ? r = S : r === xt || r === Ht ? r = O : (r = S, s = void 0);
|
524
|
-
const A = r === S && n[l + 1].startsWith("/>") ? " " : "";
|
525
|
-
o += r === O ? a + ve : c >= 0 ? (i.push(u), a.slice(0, c) + vt + a.slice(c) + b + A) : a + b + (c === -2 ? (i.push(void 0), l) : A);
|
526
|
-
}
|
527
|
-
const d = o + (n[e] || "<?>") + (t === 2 ? "</svg>" : "");
|
528
|
-
if (!Array.isArray(n) || !n.hasOwnProperty("raw"))
|
529
|
-
throw Error("invalid template strings array");
|
530
|
-
return [Tt !== void 0 ? Tt.createHTML(d) : d, i];
|
531
|
-
};
|
532
|
-
class W {
|
533
|
-
constructor({ strings: t, _$litType$: e }, i) {
|
534
|
-
let s;
|
535
|
-
this.parts = [];
|
536
|
-
let o = 0, r = 0;
|
537
|
-
const d = t.length - 1, l = this.parts, [a, u] = ge(t, e);
|
538
|
-
if (this.el = W.createElement(a, i), U.currentNode = this.el.content, e === 2) {
|
539
|
-
const h = this.el.content, c = h.firstChild;
|
540
|
-
c.remove(), h.append(...c.childNodes);
|
541
|
-
}
|
542
|
-
for (; (s = U.nextNode()) !== null && l.length < d; ) {
|
543
|
-
if (s.nodeType === 1) {
|
544
|
-
if (s.hasAttributes()) {
|
545
|
-
const h = [];
|
546
|
-
for (const c of s.getAttributeNames())
|
547
|
-
if (c.endsWith(vt) || c.startsWith(b)) {
|
548
|
-
const p = u[r++];
|
549
|
-
if (h.push(c), p !== void 0) {
|
550
|
-
const A = s.getAttribute(p.toLowerCase() + vt).split(b), f = /([.?@])?(.*)/.exec(p);
|
551
|
-
l.push({ type: 1, index: o, name: f[2], strings: A, ctor: f[1] === "." ? ye : f[1] === "?" ? Ee : f[1] === "@" ? be : Q });
|
552
|
-
} else
|
553
|
-
l.push({ type: 6, index: o });
|
554
|
-
}
|
555
|
-
for (const c of h)
|
556
|
-
s.removeAttribute(c);
|
557
|
-
}
|
558
|
-
if (Yt.test(s.tagName)) {
|
559
|
-
const h = s.textContent.split(b), c = h.length - 1;
|
560
|
-
if (c > 0) {
|
561
|
-
s.textContent = N ? N.emptyScript : "";
|
562
|
-
for (let p = 0; p < c; p++)
|
563
|
-
s.append(h[p], B()), U.nextNode(), l.push({ type: 2, index: ++o });
|
564
|
-
s.append(h[c], B());
|
565
|
-
}
|
566
|
-
}
|
567
|
-
} else if (s.nodeType === 8)
|
568
|
-
if (s.data === Gt)
|
569
|
-
l.push({ type: 2, index: o });
|
570
|
-
else {
|
571
|
-
let h = -1;
|
572
|
-
for (; (h = s.data.indexOf(b, h + 1)) !== -1; )
|
573
|
-
l.push({ type: 7, index: o }), h += b.length - 1;
|
574
|
-
}
|
575
|
-
o++;
|
576
|
-
}
|
577
|
-
}
|
578
|
-
static createElement(t, e) {
|
579
|
-
const i = R.createElement("template");
|
580
|
-
return i.innerHTML = t, i;
|
581
|
-
}
|
582
|
-
}
|
583
|
-
function k(n, t, e = n, i) {
|
584
|
-
var s, o, r, d;
|
585
|
-
if (t === I)
|
586
|
-
return t;
|
587
|
-
let l = i !== void 0 ? (s = e._$Co) === null || s === void 0 ? void 0 : s[i] : e._$Cl;
|
588
|
-
const a = z(t) ? void 0 : t._$litDirective$;
|
589
|
-
return (l == null ? void 0 : l.constructor) !== a && ((o = l == null ? void 0 : l._$AO) === null || o === void 0 || o.call(l, !1), a === void 0 ? l = void 0 : (l = new a(n), l._$AT(n, e, i)), i !== void 0 ? ((r = (d = e)._$Co) !== null && r !== void 0 ? r : d._$Co = [])[i] = l : e._$Cl = l), l !== void 0 && (t = k(n, l._$AS(n, t.values), l, i)), t;
|
590
|
-
}
|
591
|
-
class fe {
|
592
|
-
constructor(t, e) {
|
593
|
-
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = e;
|
594
|
-
}
|
595
|
-
get parentNode() {
|
596
|
-
return this._$AM.parentNode;
|
597
|
-
}
|
598
|
-
get _$AU() {
|
599
|
-
return this._$AM._$AU;
|
600
|
-
}
|
601
|
-
u(t) {
|
602
|
-
var e;
|
603
|
-
const { el: { content: i }, parts: s } = this._$AD, o = ((e = t == null ? void 0 : t.creationScope) !== null && e !== void 0 ? e : R).importNode(i, !0);
|
604
|
-
U.currentNode = o;
|
605
|
-
let r = U.nextNode(), d = 0, l = 0, a = s[0];
|
606
|
-
for (; a !== void 0; ) {
|
607
|
-
if (d === a.index) {
|
608
|
-
let u;
|
609
|
-
a.type === 2 ? u = new q(r, r.nextSibling, this, t) : a.type === 1 ? u = new a.ctor(r, a.name, a.strings, this, t) : a.type === 6 && (u = new we(r, this, t)), this._$AV.push(u), a = s[++l];
|
610
|
-
}
|
611
|
-
d !== (a == null ? void 0 : a.index) && (r = U.nextNode(), d++);
|
612
|
-
}
|
613
|
-
return U.currentNode = R, o;
|
614
|
-
}
|
615
|
-
v(t) {
|
616
|
-
let e = 0;
|
617
|
-
for (const i of this._$AV)
|
618
|
-
i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, e), e += i.strings.length - 2) : i._$AI(t[e])), e++;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
class q {
|
622
|
-
constructor(t, e, i, s) {
|
623
|
-
var o;
|
624
|
-
this.type = 2, this._$AH = _, this._$AN = void 0, this._$AA = t, this._$AB = e, this._$AM = i, this.options = s, this._$Cp = (o = s == null ? void 0 : s.isConnected) === null || o === void 0 || o;
|
625
|
-
}
|
626
|
-
get _$AU() {
|
627
|
-
var t, e;
|
628
|
-
return (e = (t = this._$AM) === null || t === void 0 ? void 0 : t._$AU) !== null && e !== void 0 ? e : this._$Cp;
|
629
|
-
}
|
630
|
-
get parentNode() {
|
631
|
-
let t = this._$AA.parentNode;
|
632
|
-
const e = this._$AM;
|
633
|
-
return e !== void 0 && (t == null ? void 0 : t.nodeType) === 11 && (t = e.parentNode), t;
|
634
|
-
}
|
635
|
-
get startNode() {
|
636
|
-
return this._$AA;
|
637
|
-
}
|
638
|
-
get endNode() {
|
639
|
-
return this._$AB;
|
640
|
-
}
|
641
|
-
_$AI(t, e = this) {
|
642
|
-
t = k(this, t, e), z(t) ? t === _ || t == null || t === "" ? (this._$AH !== _ && this._$AR(), this._$AH = _) : t !== this._$AH && t !== I && this._(t) : t._$litType$ !== void 0 ? this.g(t) : t.nodeType !== void 0 ? this.$(t) : _e(t) ? this.T(t) : this._(t);
|
643
|
-
}
|
644
|
-
k(t) {
|
645
|
-
return this._$AA.parentNode.insertBefore(t, this._$AB);
|
646
|
-
}
|
647
|
-
$(t) {
|
648
|
-
this._$AH !== t && (this._$AR(), this._$AH = this.k(t));
|
649
|
-
}
|
650
|
-
_(t) {
|
651
|
-
this._$AH !== _ && z(this._$AH) ? this._$AA.nextSibling.data = t : this.$(R.createTextNode(t)), this._$AH = t;
|
652
|
-
}
|
653
|
-
g(t) {
|
654
|
-
var e;
|
655
|
-
const { values: i, _$litType$: s } = t, o = typeof s == "number" ? this._$AC(t) : (s.el === void 0 && (s.el = W.createElement(s.h, this.options)), s);
|
656
|
-
if (((e = this._$AH) === null || e === void 0 ? void 0 : e._$AD) === o)
|
657
|
-
this._$AH.v(i);
|
658
|
-
else {
|
659
|
-
const r = new fe(o, this), d = r.u(this.options);
|
660
|
-
r.v(i), this.$(d), this._$AH = r;
|
661
|
-
}
|
662
|
-
}
|
663
|
-
_$AC(t) {
|
664
|
-
let e = kt.get(t.strings);
|
665
|
-
return e === void 0 && kt.set(t.strings, e = new W(t)), e;
|
666
|
-
}
|
667
|
-
T(t) {
|
668
|
-
Xt(this._$AH) || (this._$AH = [], this._$AR());
|
669
|
-
const e = this._$AH;
|
670
|
-
let i, s = 0;
|
671
|
-
for (const o of t)
|
672
|
-
s === e.length ? e.push(i = new q(this.k(B()), this.k(B()), this, this.options)) : i = e[s], i._$AI(o), s++;
|
673
|
-
s < e.length && (this._$AR(i && i._$AB.nextSibling, s), e.length = s);
|
674
|
-
}
|
675
|
-
_$AR(t = this._$AA.nextSibling, e) {
|
676
|
-
var i;
|
677
|
-
for ((i = this._$AP) === null || i === void 0 || i.call(this, !1, !0, e); t && t !== this._$AB; ) {
|
678
|
-
const s = t.nextSibling;
|
679
|
-
t.remove(), t = s;
|
680
|
-
}
|
681
|
-
}
|
682
|
-
setConnected(t) {
|
683
|
-
var e;
|
684
|
-
this._$AM === void 0 && (this._$Cp = t, (e = this._$AP) === null || e === void 0 || e.call(this, t));
|
685
|
-
}
|
686
|
-
}
|
687
|
-
class Q {
|
688
|
-
constructor(t, e, i, s, o) {
|
689
|
-
this.type = 1, this._$AH = _, this._$AN = void 0, this.element = t, this.name = e, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = _;
|
690
|
-
}
|
691
|
-
get tagName() {
|
692
|
-
return this.element.tagName;
|
693
|
-
}
|
694
|
-
get _$AU() {
|
695
|
-
return this._$AM._$AU;
|
696
|
-
}
|
697
|
-
_$AI(t, e = this, i, s) {
|
698
|
-
const o = this.strings;
|
699
|
-
let r = !1;
|
700
|
-
if (o === void 0)
|
701
|
-
t = k(this, t, e, 0), r = !z(t) || t !== this._$AH && t !== I, r && (this._$AH = t);
|
702
|
-
else {
|
703
|
-
const d = t;
|
704
|
-
let l, a;
|
705
|
-
for (t = o[0], l = 0; l < o.length - 1; l++)
|
706
|
-
a = k(this, d[i + l], e, l), a === I && (a = this._$AH[l]), r || (r = !z(a) || a !== this._$AH[l]), a === _ ? t = _ : t !== _ && (t += (a ?? "") + o[l + 1]), this._$AH[l] = a;
|
707
|
-
}
|
708
|
-
r && !s && this.j(t);
|
709
|
-
}
|
710
|
-
j(t) {
|
711
|
-
t === _ ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
|
712
|
-
}
|
713
|
-
}
|
714
|
-
class ye extends Q {
|
715
|
-
constructor() {
|
716
|
-
super(...arguments), this.type = 3;
|
717
|
-
}
|
718
|
-
j(t) {
|
719
|
-
this.element[this.name] = t === _ ? void 0 : t;
|
720
|
-
}
|
721
|
-
}
|
722
|
-
const Ae = N ? N.emptyScript : "";
|
723
|
-
class Ee extends Q {
|
724
|
-
constructor() {
|
725
|
-
super(...arguments), this.type = 4;
|
726
|
-
}
|
727
|
-
j(t) {
|
728
|
-
t && t !== _ ? this.element.setAttribute(this.name, Ae) : this.element.removeAttribute(this.name);
|
729
|
-
}
|
730
|
-
}
|
731
|
-
class be extends Q {
|
732
|
-
constructor(t, e, i, s, o) {
|
733
|
-
super(t, e, i, s, o), this.type = 5;
|
734
|
-
}
|
735
|
-
_$AI(t, e = this) {
|
736
|
-
var i;
|
737
|
-
if ((t = (i = k(this, t, e, 0)) !== null && i !== void 0 ? i : _) === I)
|
738
|
-
return;
|
739
|
-
const s = this._$AH, o = t === _ && s !== _ || t.capture !== s.capture || t.once !== s.once || t.passive !== s.passive, r = t !== _ && (s === _ || o);
|
740
|
-
o && this.element.removeEventListener(this.name, this, s), r && this.element.addEventListener(this.name, this, t), this._$AH = t;
|
741
|
-
}
|
742
|
-
handleEvent(t) {
|
743
|
-
var e, i;
|
744
|
-
typeof this._$AH == "function" ? this._$AH.call((i = (e = this.options) === null || e === void 0 ? void 0 : e.host) !== null && i !== void 0 ? i : this.element, t) : this._$AH.handleEvent(t);
|
745
|
-
}
|
746
|
-
}
|
747
|
-
class we {
|
748
|
-
constructor(t, e, i) {
|
749
|
-
this.element = t, this.type = 6, this._$AN = void 0, this._$AM = e, this.options = i;
|
750
|
-
}
|
751
|
-
get _$AU() {
|
752
|
-
return this._$AM._$AU;
|
753
|
-
}
|
754
|
-
_$AI(t) {
|
755
|
-
k(this, t);
|
756
|
-
}
|
757
|
-
}
|
758
|
-
const Vt = X.litHtmlPolyfillSupport;
|
759
|
-
Vt == null || Vt(W, q), ((rt = X.litHtmlVersions) !== null && rt !== void 0 ? rt : X.litHtmlVersions = []).push("2.7.4");
|
760
|
-
const Se = (n, t, e) => {
|
761
|
-
var i, s;
|
762
|
-
const o = (i = e == null ? void 0 : e.renderBefore) !== null && i !== void 0 ? i : t;
|
763
|
-
let r = o._$litPart$;
|
764
|
-
if (r === void 0) {
|
765
|
-
const d = (s = e == null ? void 0 : e.renderBefore) !== null && s !== void 0 ? s : null;
|
766
|
-
o._$litPart$ = r = new q(t.insertBefore(B(), d), d, void 0, e ?? {});
|
767
|
-
}
|
768
|
-
return r._$AI(n), r;
|
769
|
-
};
|
770
|
-
/**
|
771
|
-
* @license
|
772
|
-
* Copyright 2017 Google LLC
|
773
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
774
|
-
*/
|
775
|
-
var lt, at;
|
776
|
-
class L extends T {
|
777
|
-
constructor() {
|
778
|
-
super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
|
779
|
-
}
|
780
|
-
createRenderRoot() {
|
781
|
-
var t, e;
|
782
|
-
const i = super.createRenderRoot();
|
783
|
-
return (t = (e = this.renderOptions).renderBefore) !== null && t !== void 0 || (e.renderBefore = i.firstChild), i;
|
784
|
-
}
|
785
|
-
update(t) {
|
786
|
-
const e = this.render();
|
787
|
-
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = Se(e, this.renderRoot, this.renderOptions);
|
788
|
-
}
|
789
|
-
connectedCallback() {
|
790
|
-
var t;
|
791
|
-
super.connectedCallback(), (t = this._$Do) === null || t === void 0 || t.setConnected(!0);
|
792
|
-
}
|
793
|
-
disconnectedCallback() {
|
794
|
-
var t;
|
795
|
-
super.disconnectedCallback(), (t = this._$Do) === null || t === void 0 || t.setConnected(!1);
|
796
|
-
}
|
797
|
-
render() {
|
798
|
-
return I;
|
799
|
-
}
|
800
|
-
}
|
801
|
-
L.finalized = !0, L._$litElement$ = !0, (lt = globalThis.litElementHydrateSupport) === null || lt === void 0 || lt.call(globalThis, { LitElement: L });
|
802
|
-
const Ot = globalThis.litElementPolyfillSupport;
|
803
|
-
Ot == null || Ot({ LitElement: L });
|
804
|
-
((at = globalThis.litElementVersions) !== null && at !== void 0 ? at : globalThis.litElementVersions = []).push("3.3.2");
|
805
|
-
function Pe(n, t, e) {
|
806
|
-
function i(s) {
|
807
|
-
e.dispatchEvent(new CustomEvent(s.type, s));
|
808
|
-
}
|
809
|
-
return t.addEventListener(n, i), () => {
|
810
|
-
t.removeEventListener(n, i);
|
9
|
+
import { styleMap } from "lit/directives/style-map.js";
|
10
|
+
import { classMap } from "lit/directives/class-map.js";
|
11
|
+
import "@a11y/focus-trap";
|
12
|
+
function forwardEvent(type2, fromElement, toElement) {
|
13
|
+
function forwarder(event) {
|
14
|
+
toElement.dispatchEvent(new CustomEvent(event.type, event));
|
15
|
+
}
|
16
|
+
fromElement.addEventListener(type2, forwarder);
|
17
|
+
return () => {
|
18
|
+
fromElement.removeEventListener(type2, forwarder);
|
811
19
|
};
|
812
20
|
}
|
813
|
-
class
|
814
|
-
constructor(
|
815
|
-
this._events = []
|
21
|
+
class EventForwardController {
|
22
|
+
constructor(host, events) {
|
23
|
+
this._events = [];
|
24
|
+
this._cleanup = [];
|
25
|
+
this._forwardElementRef = createRef();
|
26
|
+
this.host = host;
|
27
|
+
this._events = events;
|
28
|
+
host.addController(this);
|
816
29
|
}
|
817
30
|
register() {
|
818
|
-
return
|
31
|
+
return ref(this._forwardElementRef);
|
819
32
|
}
|
820
33
|
hostConnected() {
|
821
34
|
requestAnimationFrame(() => {
|
822
|
-
this._events.forEach((
|
823
|
-
|
35
|
+
this._events.forEach((event) => {
|
36
|
+
if (this._forwardElementRef.value) {
|
37
|
+
this._cleanup.push(forwardEvent(event, this._forwardElementRef.value, this.host));
|
38
|
+
}
|
824
39
|
});
|
825
40
|
});
|
826
41
|
}
|
827
42
|
hostDisconnected() {
|
828
|
-
this._cleanup.forEach((
|
829
|
-
|
830
|
-
})
|
43
|
+
this._cleanup.forEach((fn) => {
|
44
|
+
fn();
|
45
|
+
});
|
46
|
+
this._cleanup = [];
|
831
47
|
}
|
832
48
|
}
|
833
|
-
const
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
49
|
+
const devVideoUrl = "https://d2rxhdlm2q91uk.cloudfront.net";
|
50
|
+
const stagingVideoUrl = "https://d1ix11aj5kfygl.cloudfront.net";
|
51
|
+
const prodVideoUrl = "https://d157jlwnudd93d.cloudfront.net";
|
52
|
+
const devPublicApiUrl = "https://bshyfw4h5a.execute-api.ap-southeast-2.amazonaws.com/dev";
|
53
|
+
const stagingPublicApiUrl = "https://gyzw7rpbq3.execute-api.ap-southeast-2.amazonaws.com/staging";
|
54
|
+
const prodPublicApiUrl = "https://vfcjuim1l3.execute-api.ap-southeast-2.amazonaws.com/prod";
|
55
|
+
const localEmbedApiUrl = "http://localhost:6060/v2";
|
56
|
+
const devEmbedApiUrl = "https://embed-dev.vouchfor.com/v2";
|
57
|
+
const stagingEmbedApiUrl = "https://embed-staging.vouchfor.com/v2";
|
58
|
+
const prodEmbedApiUrl = "https://embed.vouchfor.com/v2";
|
59
|
+
function getEnvUrls(env) {
|
60
|
+
if (!["local", "dev", "staging", "prod"].includes(env)) {
|
61
|
+
throw new Error(`Unknown environment: ${env}`);
|
62
|
+
}
|
63
|
+
if (env === "local") {
|
838
64
|
return {
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
embedApiUrl: Ie,
|
843
|
-
publicRecorderUrl: Oe
|
65
|
+
videoUrl: devVideoUrl,
|
66
|
+
publicApiUrl: devPublicApiUrl,
|
67
|
+
embedApiUrl: localEmbedApiUrl
|
844
68
|
};
|
845
|
-
|
69
|
+
}
|
70
|
+
if (env === "dev") {
|
71
|
+
return {
|
72
|
+
videoUrl: devVideoUrl,
|
73
|
+
publicApiUrl: devPublicApiUrl,
|
74
|
+
embedApiUrl: devEmbedApiUrl
|
75
|
+
};
|
76
|
+
}
|
77
|
+
if (env === "staging") {
|
846
78
|
return {
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
embedApiUrl: ke,
|
851
|
-
publicRecorderUrl: Me
|
79
|
+
videoUrl: stagingVideoUrl,
|
80
|
+
publicApiUrl: stagingPublicApiUrl,
|
81
|
+
embedApiUrl: stagingEmbedApiUrl
|
852
82
|
};
|
853
|
-
|
83
|
+
}
|
84
|
+
if (env === "prod") {
|
854
85
|
return {
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
embedApiUrl: Ve,
|
859
|
-
publicRecorderUrl: Le
|
86
|
+
videoUrl: prodVideoUrl,
|
87
|
+
publicApiUrl: prodPublicApiUrl,
|
88
|
+
embedApiUrl: prodEmbedApiUrl
|
860
89
|
};
|
90
|
+
}
|
861
91
|
}
|
862
|
-
class
|
863
|
-
constructor(
|
864
|
-
this.
|
92
|
+
class FetcherController {
|
93
|
+
constructor(host) {
|
94
|
+
this._fetching = false;
|
95
|
+
this.getVouch = async (env, apiKey, vouchId) => {
|
96
|
+
var _a;
|
97
|
+
const { embedApiUrl } = getEnvUrls(env);
|
98
|
+
const cacheCheck = v4();
|
99
|
+
const res = await fetch(`${embedApiUrl}/vouches/${vouchId}`, {
|
100
|
+
method: "GET",
|
101
|
+
headers: [
|
102
|
+
["X-Api-Key", apiKey],
|
103
|
+
["X-Cache-Check", cacheCheck]
|
104
|
+
]
|
105
|
+
});
|
106
|
+
const vouch = await res.json();
|
107
|
+
this.host.dispatchEvent(new CustomEvent("vouch:loaded", { detail: vouch == null ? void 0 : vouch.id }));
|
108
|
+
const resCacheCheck = (_a = res == null ? void 0 : res.headers) == null ? void 0 : _a.get("X-Cache-Check");
|
109
|
+
if (resCacheCheck !== cacheCheck) {
|
110
|
+
fetch(`${embedApiUrl}/vouches/${vouchId}`, {
|
111
|
+
method: "GET",
|
112
|
+
headers: [
|
113
|
+
["X-Api-Key", apiKey],
|
114
|
+
["Cache-Control", "max-age=0"]
|
115
|
+
]
|
116
|
+
});
|
117
|
+
}
|
118
|
+
return vouch;
|
119
|
+
};
|
120
|
+
this.getTemplate = async (env, apiKey, templateId) => {
|
121
|
+
var _a;
|
122
|
+
const { embedApiUrl } = getEnvUrls(env);
|
123
|
+
const cacheCheck = v4();
|
124
|
+
const res = await fetch(`${embedApiUrl}/templates/${templateId}`, {
|
125
|
+
method: "GET",
|
126
|
+
headers: [
|
127
|
+
["X-Api-Key", apiKey],
|
128
|
+
["X-Cache-Check", cacheCheck]
|
129
|
+
]
|
130
|
+
});
|
131
|
+
const template = await res.json();
|
132
|
+
const resCacheCheck = (_a = res == null ? void 0 : res.headers) == null ? void 0 : _a.get("X-Cache-Check");
|
133
|
+
if (resCacheCheck !== cacheCheck) {
|
134
|
+
fetch(`${embedApiUrl}/templates/${templateId}`, {
|
135
|
+
method: "GET",
|
136
|
+
headers: [
|
137
|
+
["X-Api-Key", apiKey],
|
138
|
+
["Cache-Control", "max-age=0"]
|
139
|
+
]
|
140
|
+
});
|
141
|
+
}
|
142
|
+
return template;
|
143
|
+
};
|
144
|
+
this.host = host;
|
145
|
+
new Task(
|
865
146
|
this.host,
|
866
|
-
async ([
|
867
|
-
var
|
147
|
+
async ([env, apiKey, data, vouchId, templateId]) => {
|
148
|
+
var _a, _b, _c, _d;
|
868
149
|
try {
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
150
|
+
host.vouch = void 0;
|
151
|
+
host.template = void 0;
|
152
|
+
if (data) {
|
153
|
+
let template;
|
154
|
+
if (templateId) {
|
155
|
+
this.fetching = true;
|
156
|
+
template = await this.getTemplate(env, apiKey, templateId);
|
157
|
+
}
|
158
|
+
this._vouch = data;
|
159
|
+
host.template = template ?? ((_b = (_a = data == null ? void 0 : data.settings) == null ? void 0 : _a.template) == null ? void 0 : _b.instance);
|
160
|
+
} else if (vouchId) {
|
161
|
+
this.fetching = true;
|
162
|
+
const [vouch, template] = await Promise.all([
|
163
|
+
this.getVouch(env, apiKey, vouchId),
|
164
|
+
templateId ? this.getTemplate(env, apiKey, templateId) : null
|
165
|
+
]);
|
166
|
+
this._vouch = vouch;
|
167
|
+
host.template = template ?? ((_d = (_c = vouch == null ? void 0 : vouch.settings) == null ? void 0 : _c.template) == null ? void 0 : _d.instance);
|
876
168
|
}
|
877
169
|
} finally {
|
878
|
-
|
170
|
+
this.fetching = false;
|
879
171
|
}
|
880
172
|
},
|
881
|
-
() => [
|
173
|
+
() => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
|
174
|
+
);
|
175
|
+
new Task(
|
176
|
+
this.host,
|
177
|
+
([vouch, questions]) => {
|
178
|
+
host.vouch = vouch ? {
|
179
|
+
...vouch,
|
180
|
+
questions: {
|
181
|
+
items: vouch == null ? void 0 : vouch.questions.items.filter((_, index) => !(questions == null ? void 0 : questions.length) || (questions == null ? void 0 : questions.includes(index + 1)))
|
182
|
+
}
|
183
|
+
} : void 0;
|
184
|
+
},
|
185
|
+
() => [this._vouch, host.questions]
|
882
186
|
);
|
883
187
|
}
|
188
|
+
set fetching(value) {
|
189
|
+
if (this._fetching !== value) {
|
190
|
+
this._fetching = value;
|
191
|
+
this.host.requestUpdate();
|
192
|
+
}
|
193
|
+
}
|
194
|
+
get fetching() {
|
195
|
+
return this._fetching;
|
196
|
+
}
|
884
197
|
}
|
885
|
-
|
886
|
-
const
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
198
|
+
const name = "@vouchfor/embeds";
|
199
|
+
const version = "0.0.0-experiment.de28f28";
|
200
|
+
const license = "MIT";
|
201
|
+
const author = "Aaron Williams";
|
202
|
+
const main = "dist/es/embeds.js";
|
203
|
+
const module = "dist/es/embeds.js";
|
204
|
+
const type = "module";
|
205
|
+
const types = "dist/es/src/index.d.ts";
|
206
|
+
const exports = {
|
207
|
+
".": "./dist/es/embeds.js"
|
208
|
+
};
|
209
|
+
const files = [
|
210
|
+
"dist",
|
211
|
+
"src"
|
212
|
+
];
|
213
|
+
const publishConfig = {
|
214
|
+
tag: "experiment",
|
215
|
+
access: "public"
|
216
|
+
};
|
217
|
+
const engines = {
|
218
|
+
node: ">=18.18.0"
|
219
|
+
};
|
220
|
+
const scripts = {
|
221
|
+
build: "rm -rf dist && tsc && yarn build:self",
|
222
|
+
"build:deps": "yarn --cwd ../media-player build",
|
223
|
+
"build:self": "vite build --mode iife && vite build --mode es && node scripts/build.cjs",
|
224
|
+
"build:package": "yarn build",
|
225
|
+
"build:storybook": "yarn prebuild && storybook build",
|
226
|
+
"generate:manifest": "wca src --outFile custom-elements.json",
|
227
|
+
lint: "eslint . --quiet",
|
228
|
+
"lint:fix": "eslint . --fix",
|
229
|
+
"lint:staged": "lint-staged",
|
230
|
+
prepublishOnly: "yarn build",
|
231
|
+
size: "size-limit",
|
232
|
+
storybook: "yarn prebuild && storybook dev -p 6007",
|
233
|
+
prebuild: "yarn build:deps && yarn generate:manifest",
|
234
|
+
test: "rm -rf test/lib && yarn prebuild && vite build --mode test && web-test-runner",
|
235
|
+
"test:ci": "yarn test --config web-test-runner.ci.config.js"
|
236
|
+
};
|
237
|
+
const dependencies = {
|
238
|
+
"@a11y/focus-trap": "^1.0.5",
|
239
|
+
"@lit/task": "^1.0.0",
|
240
|
+
"@vouchfor/canvas-video": "0.0.0-experiment.de28f28",
|
241
|
+
"@vouchfor/media-player": "0.0.0-experiment.de28f28",
|
242
|
+
uuid: "^9.0.1"
|
243
|
+
};
|
244
|
+
const peerDependencies = {
|
245
|
+
lit: "^3.1.2"
|
246
|
+
};
|
247
|
+
const devDependencies = {
|
248
|
+
"@esm-bundle/chai": "^4.3.4-fix.0",
|
249
|
+
"@open-wc/testing": "^4.0.0",
|
250
|
+
"@storybook/addon-essentials": "^8.0.4",
|
251
|
+
"@storybook/addon-links": "^8.0.4",
|
252
|
+
"@storybook/blocks": "^8.0.4",
|
253
|
+
"@storybook/web-components": "^8.0.4",
|
254
|
+
"@storybook/web-components-vite": "^8.0.4",
|
255
|
+
"@svgr/core": "^8.1.0",
|
256
|
+
"@types/flat": "^5.0.5",
|
257
|
+
"@types/mocha": "^10.0.6",
|
258
|
+
"@vouchfor/eslint-config": "^1.0.1",
|
259
|
+
"@vouchfor/prettier-config": "^1.0.1",
|
260
|
+
"@vouchfor/video-utils": "0.0.0-experiment.de28f28",
|
261
|
+
"@web/dev-server-esbuild": "^1.0.2",
|
262
|
+
"@web/test-runner": "^0.18.1",
|
263
|
+
"@web/test-runner-browserstack": "^0.7.1",
|
264
|
+
"@web/test-runner-mocha": "^0.9.0",
|
265
|
+
"@web/test-runner-playwright": "^0.11.0",
|
266
|
+
glob: "^10.3.10",
|
267
|
+
"lint-staged": "^15.2.2",
|
268
|
+
lit: "^3.1.2",
|
269
|
+
lodash: "^4.17.21",
|
270
|
+
react: "^18.2.0",
|
271
|
+
"react-dom": "^18.2.0",
|
272
|
+
"rollup-plugin-tla": "^0.0.2",
|
273
|
+
sinon: "^17.0.1",
|
274
|
+
storybook: "^8.0.4",
|
275
|
+
svgson: "^5.3.1",
|
276
|
+
typescript: "^5.4.3",
|
277
|
+
vite: "^5.2.2",
|
278
|
+
"vite-plugin-commonjs": "^0.10.1",
|
279
|
+
"vite-plugin-dts": "^3.7.3",
|
280
|
+
"web-component-analyzer": "^2.0.0"
|
281
|
+
};
|
282
|
+
const packageJson = {
|
283
|
+
name,
|
284
|
+
version,
|
285
|
+
license,
|
286
|
+
author,
|
287
|
+
main,
|
288
|
+
module,
|
289
|
+
type,
|
290
|
+
types,
|
291
|
+
exports,
|
292
|
+
files,
|
293
|
+
publishConfig,
|
294
|
+
engines,
|
295
|
+
scripts,
|
296
|
+
"lint-staged": {
|
297
|
+
"**/*.{ts,tsx,js}": "eslint --fix --quiet",
|
298
|
+
"**/*.{md,json,yml}": "prettier --write"
|
299
|
+
},
|
300
|
+
dependencies,
|
301
|
+
peerDependencies,
|
302
|
+
devDependencies
|
303
|
+
};
|
304
|
+
function createVisitor(env) {
|
305
|
+
const { publicApiUrl } = getEnvUrls(env);
|
306
|
+
const visitorId = v4();
|
307
|
+
navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
|
308
|
+
return visitorId;
|
891
309
|
}
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
310
|
+
function getUids(env) {
|
311
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
|
312
|
+
if (typeof window === "undefined") {
|
313
|
+
return {
|
314
|
+
client: null,
|
315
|
+
tab: null,
|
316
|
+
request: v4()
|
317
|
+
};
|
318
|
+
}
|
319
|
+
let visitorId = (_b = (_a = window.localStorage) == null ? void 0 : _a.getItem) == null ? void 0 : _b.call(_a, "vouch-uid-visitor");
|
320
|
+
let clientId = (_d = (_c = window.localStorage) == null ? void 0 : _c.getItem) == null ? void 0 : _d.call(_c, "vouch-uid-client");
|
321
|
+
let tabId = (_f = (_e = window.sessionStorage) == null ? void 0 : _e.getItem) == null ? void 0 : _f.call(_e, "vouch-uid-tab");
|
322
|
+
const requestId = v4();
|
323
|
+
if (!visitorId) {
|
324
|
+
visitorId = createVisitor(env);
|
325
|
+
(_h = (_g = window.localStorage) == null ? void 0 : _g.setItem) == null ? void 0 : _h.call(_g, "vouch-uid-visitor", visitorId);
|
326
|
+
}
|
327
|
+
if (!clientId) {
|
328
|
+
clientId = v4();
|
329
|
+
(_j = (_i = window.localStorage) == null ? void 0 : _i.setItem) == null ? void 0 : _j.call(_i, "vouch-uid-client", clientId);
|
330
|
+
}
|
331
|
+
if (!tabId) {
|
332
|
+
tabId = v4();
|
333
|
+
(_l = (_k = window.sessionStorage) == null ? void 0 : _k.setItem) == null ? void 0 : _l.call(_k, "vouch-uid-tab", tabId);
|
334
|
+
}
|
335
|
+
return {
|
336
|
+
client: clientId,
|
337
|
+
tab: tabId,
|
338
|
+
request: requestId,
|
339
|
+
visitor: visitorId
|
340
|
+
};
|
897
341
|
}
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
function M(n, t, e) {
|
902
|
-
if (Mt.randomUUID && !t && !n)
|
903
|
-
return Mt.randomUUID();
|
904
|
-
n = n || {};
|
905
|
-
const i = n.random || (n.rng || Be)();
|
906
|
-
if (i[6] = i[6] & 15 | 64, i[8] = i[8] & 63 | 128, t) {
|
907
|
-
e = e || 0;
|
908
|
-
for (let s = 0; s < 16; ++s)
|
909
|
-
t[e + s] = i[s];
|
910
|
-
return t;
|
342
|
+
function findVouchId(payload, vouch) {
|
343
|
+
if (payload && "vouchId" in payload) {
|
344
|
+
return payload.vouchId;
|
911
345
|
}
|
912
|
-
return
|
346
|
+
return (vouch == null ? void 0 : vouch.id) ?? null;
|
347
|
+
}
|
348
|
+
function getReportingMetadata(source = "embedded_player") {
|
349
|
+
var _a, _b;
|
350
|
+
const [country, region] = ((_b = (_a = Intl.DateTimeFormat().resolvedOptions().timeZone) == null ? void 0 : _a.split) == null ? void 0 : _b.call(_a, "/")) ?? [];
|
351
|
+
const utmParams = {};
|
352
|
+
[...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
|
353
|
+
if (/utm/.test(key)) {
|
354
|
+
const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
|
355
|
+
utmParams[param] = value;
|
356
|
+
}
|
357
|
+
});
|
358
|
+
return {
|
359
|
+
source,
|
360
|
+
time: /* @__PURE__ */ new Date(),
|
361
|
+
region,
|
362
|
+
country,
|
363
|
+
screenHeight: window.screen.height,
|
364
|
+
screenWidth: window.screen.width,
|
365
|
+
referrer: document.referrer,
|
366
|
+
currentUrl: location.href,
|
367
|
+
embedType: "media-player-embed",
|
368
|
+
embedVersion: packageJson.version,
|
369
|
+
templateVersion: TEMPLATE_VERSION,
|
370
|
+
...utmParams
|
371
|
+
};
|
913
372
|
}
|
914
|
-
const
|
915
|
-
class
|
916
|
-
constructor(
|
917
|
-
this.
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
373
|
+
const MINIMUM_SEND_THRESHOLD = 1;
|
374
|
+
class TrackingController {
|
375
|
+
constructor(host) {
|
376
|
+
this._batchedEvents = [];
|
377
|
+
this._hasPlayed = false;
|
378
|
+
this._hasLoaded = {};
|
379
|
+
this._answersViewed = {};
|
380
|
+
this._streamStartTime = {};
|
381
|
+
this._streamLatestTime = {};
|
382
|
+
this._currentlyPlayingVideo = null;
|
383
|
+
this._createTrackingEvent = (event, payload) => {
|
384
|
+
const vouchId = findVouchId(payload, this.host.vouch);
|
385
|
+
if (!vouchId || this.host.disableTracking) {
|
386
|
+
return;
|
387
|
+
}
|
388
|
+
this._batchedEvents.push({
|
389
|
+
event,
|
390
|
+
payload: {
|
391
|
+
...payload,
|
392
|
+
vouchId,
|
393
|
+
time: (/* @__PURE__ */ new Date()).toISOString()
|
928
394
|
}
|
929
|
-
})
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
...s
|
940
|
-
};
|
941
|
-
}, this._sendTrackingEvent = (e, i) => {
|
942
|
-
const { publicApiUrl: s } = _t(this.host.env), { client: o, tab: r, request: d, visitor: l } = this._getUids();
|
943
|
-
this.host.enableTracking && this.host.trackingSource && navigator.sendBeacon(
|
944
|
-
`${s}/api/events`,
|
395
|
+
});
|
396
|
+
};
|
397
|
+
this._sendTrackingEvent = () => {
|
398
|
+
if (this._batchedEvents.length <= 0) {
|
399
|
+
return;
|
400
|
+
}
|
401
|
+
const { publicApiUrl } = getEnvUrls(this.host.env);
|
402
|
+
const { client, tab, request, visitor } = getUids(this.host.env);
|
403
|
+
navigator.sendBeacon(
|
404
|
+
`${publicApiUrl}/api/batchevents`,
|
945
405
|
JSON.stringify({
|
946
|
-
|
947
|
-
|
406
|
+
payload: {
|
407
|
+
events: this._batchedEvents
|
408
|
+
},
|
948
409
|
context: {
|
949
|
-
"x-uid-client":
|
950
|
-
"x-uid-tab":
|
951
|
-
"x-uid-request":
|
952
|
-
"x-uid-visitor":
|
953
|
-
"x-reporting-metadata": this.
|
410
|
+
"x-uid-client": client,
|
411
|
+
"x-uid-tab": tab,
|
412
|
+
"x-uid-request": request,
|
413
|
+
"x-uid-visitor": visitor,
|
414
|
+
"x-reporting-metadata": getReportingMetadata(this.host.trackingSource)
|
954
415
|
}
|
955
416
|
})
|
956
417
|
);
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
const s = this._findVouchId();
|
976
|
-
if (!s)
|
418
|
+
this._batchedEvents = [];
|
419
|
+
};
|
420
|
+
this._streamEnded = () => {
|
421
|
+
if (this._currentlyPlayingVideo) {
|
422
|
+
const { id, key } = this._currentlyPlayingVideo;
|
423
|
+
if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
|
424
|
+
this._createTrackingEvent("VIDEO_STREAMED", {
|
425
|
+
answerId: id,
|
426
|
+
streamStart: this._streamStartTime[key],
|
427
|
+
streamEnd: this._streamLatestTime[key]
|
428
|
+
});
|
429
|
+
}
|
430
|
+
delete this._streamStartTime[key];
|
431
|
+
delete this._streamLatestTime[key];
|
432
|
+
}
|
433
|
+
};
|
434
|
+
this._handleVouchLoaded = ({ detail: vouchId }) => {
|
435
|
+
if (!vouchId) {
|
977
436
|
return;
|
978
|
-
|
979
|
-
!this.
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
437
|
+
}
|
438
|
+
if (!this._hasLoaded[vouchId]) {
|
439
|
+
this._createTrackingEvent("VOUCH_LOADED", { vouchId });
|
440
|
+
this._hasLoaded[vouchId] = true;
|
441
|
+
}
|
442
|
+
};
|
443
|
+
this._handlePlay = () => {
|
444
|
+
if (!this._hasPlayed) {
|
445
|
+
this._createTrackingEvent("VIDEO_PLAYED", {
|
446
|
+
streamStart: this.host.currentTime
|
447
|
+
});
|
448
|
+
this._hasPlayed = true;
|
449
|
+
}
|
450
|
+
};
|
451
|
+
this._handleVideoPlay = ({ detail: { id, key } }) => {
|
452
|
+
if (!this._answersViewed[key]) {
|
453
|
+
this._createTrackingEvent("VOUCH_RESPONSE_VIEWED", {
|
454
|
+
answerId: id
|
455
|
+
});
|
456
|
+
this._answersViewed[key] = true;
|
457
|
+
}
|
458
|
+
};
|
459
|
+
this._handleVideoTimeUpdate = ({ detail: { id, key, node } }) => {
|
460
|
+
var _a, _b;
|
461
|
+
if (
|
462
|
+
// We only want to count any time that the video is actually playing
|
463
|
+
!this.host.paused && // Only update the latest time if this event fires for the currently active video
|
464
|
+
id === ((_b = (_a = this.host.scene) == null ? void 0 : _a.video) == null ? void 0 : _b.id)
|
465
|
+
) {
|
466
|
+
this._currentlyPlayingVideo = { id, key, node };
|
467
|
+
this._streamLatestTime[key] = node.currentTime;
|
468
|
+
if (!this._streamStartTime[key]) {
|
469
|
+
this._streamStartTime[key] = node.currentTime;
|
470
|
+
this._streamLatestTime[key] = node.currentTime;
|
471
|
+
}
|
472
|
+
}
|
473
|
+
};
|
474
|
+
this._handleVideoPause = ({ detail: { id, key } }) => {
|
475
|
+
if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
|
476
|
+
this._createTrackingEvent("VIDEO_STREAMED", {
|
477
|
+
answerId: id,
|
478
|
+
streamStart: this._streamStartTime[key],
|
479
|
+
streamEnd: this._streamLatestTime[key]
|
480
|
+
});
|
481
|
+
}
|
482
|
+
delete this._streamStartTime[key];
|
483
|
+
delete this._streamLatestTime[key];
|
484
|
+
};
|
485
|
+
this._pageUnloading = () => {
|
486
|
+
this._streamEnded();
|
487
|
+
this._sendTrackingEvent();
|
488
|
+
};
|
489
|
+
this._handleVisibilityChange = () => {
|
490
|
+
if (document.visibilityState === "hidden") {
|
491
|
+
this._pageUnloading();
|
492
|
+
}
|
493
|
+
};
|
494
|
+
this._handlePageHide = () => {
|
495
|
+
this._pageUnloading();
|
1015
496
|
};
|
497
|
+
this.host = host;
|
498
|
+
host.addController(this);
|
1016
499
|
}
|
1017
500
|
hostConnected() {
|
1018
|
-
|
1019
|
-
var
|
1020
|
-
|
501
|
+
requestAnimationFrame(() => {
|
502
|
+
var _a, _b, _c, _d;
|
503
|
+
if ("onvisibilitychange" in document) {
|
504
|
+
document.addEventListener("visibilitychange", this._handleVisibilityChange);
|
505
|
+
} else {
|
506
|
+
window.addEventListener("pagehide", this._handlePageHide);
|
507
|
+
}
|
508
|
+
this.host.addEventListener("vouch:loaded", this._handleVouchLoaded);
|
509
|
+
(_a = this.host.mediaPlayer) == null ? void 0 : _a.addEventListener("play", this._handlePlay);
|
510
|
+
(_b = this.host.mediaPlayer) == null ? void 0 : _b.addEventListener("video:play", this._handleVideoPlay);
|
511
|
+
(_c = this.host.mediaPlayer) == null ? void 0 : _c.addEventListener("video:pause", this._handleVideoPause);
|
512
|
+
(_d = this.host.mediaPlayer) == null ? void 0 : _d.addEventListener("video:timeupdate", this._handleVideoTimeUpdate);
|
1021
513
|
});
|
1022
514
|
}
|
1023
515
|
hostDisconnected() {
|
1024
|
-
var
|
1025
|
-
this.
|
516
|
+
var _a, _b, _c, _d;
|
517
|
+
this._pageUnloading();
|
518
|
+
if ("onvisibilitychange" in document) {
|
519
|
+
document.removeEventListener("visibilitychange", this._handleVisibilityChange);
|
520
|
+
} else {
|
521
|
+
window.removeEventListener("pagehide", this._handlePageHide);
|
522
|
+
}
|
523
|
+
this.host.removeEventListener("vouch:loaded", this._handleVouchLoaded);
|
524
|
+
(_a = this.host.mediaPlayer) == null ? void 0 : _a.removeEventListener("play", this._handlePlay);
|
525
|
+
(_b = this.host.mediaPlayer) == null ? void 0 : _b.removeEventListener("video:play", this._handleVideoPlay);
|
526
|
+
(_c = this.host.mediaPlayer) == null ? void 0 : _c.removeEventListener("video:pause", this._handleVideoPause);
|
527
|
+
(_d = this.host.mediaPlayer) == null ? void 0 : _d.removeEventListener("video:timeupdate", this._handleVideoTimeUpdate);
|
1026
528
|
}
|
1027
529
|
}
|
1028
|
-
var
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
530
|
+
var __defProp$3 = Object.defineProperty;
|
531
|
+
var __getOwnPropDesc$3 = Object.getOwnPropertyDescriptor;
|
532
|
+
var __decorateClass$3 = (decorators, target, key, kind) => {
|
533
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$3(target, key) : target;
|
534
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
535
|
+
if (decorator = decorators[i])
|
536
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
537
|
+
if (kind && result)
|
538
|
+
__defProp$3(target, key, result);
|
539
|
+
return result;
|
1032
540
|
};
|
1033
|
-
let
|
541
|
+
let PlayerEmbed = class extends LitElement {
|
1034
542
|
constructor() {
|
1035
|
-
super(...arguments)
|
543
|
+
super(...arguments);
|
544
|
+
this.env = "prod";
|
545
|
+
this.apiKey = "";
|
546
|
+
this.disableTracking = false;
|
547
|
+
this.trackingSource = "embedded_player";
|
548
|
+
this.preload = "auto";
|
549
|
+
this.autoplay = false;
|
550
|
+
this.aspectRatio = 0;
|
551
|
+
this.eventController = new EventForwardController(this, [
|
1036
552
|
"durationchange",
|
1037
553
|
"ended",
|
1038
554
|
"error",
|
@@ -1049,6 +565,7 @@ let m = class extends L {
|
|
1049
565
|
"volumechange",
|
1050
566
|
"waiting",
|
1051
567
|
"video:loadeddata",
|
568
|
+
"video:seeking",
|
1052
569
|
"video:seeked",
|
1053
570
|
"video:play",
|
1054
571
|
"video:playing",
|
@@ -1057,150 +574,570 @@ let m = class extends L {
|
|
1057
574
|
"video:timeupdate",
|
1058
575
|
"video:ended",
|
1059
576
|
"video:error"
|
1060
|
-
])
|
577
|
+
]);
|
578
|
+
this._fetcherController = new FetcherController(this);
|
579
|
+
this._trackingController = new TrackingController(this);
|
580
|
+
this._mediaPlayerRef = createRef();
|
581
|
+
}
|
582
|
+
get fetching() {
|
583
|
+
return this._fetcherController.fetching;
|
1061
584
|
}
|
1062
585
|
get waiting() {
|
1063
|
-
var
|
1064
|
-
return (
|
586
|
+
var _a;
|
587
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.waiting;
|
588
|
+
}
|
589
|
+
get initialised() {
|
590
|
+
var _a;
|
591
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.initialised;
|
1065
592
|
}
|
1066
593
|
get seeking() {
|
1067
|
-
var
|
1068
|
-
return (
|
594
|
+
var _a;
|
595
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.seeking;
|
1069
596
|
}
|
1070
597
|
get paused() {
|
1071
|
-
var
|
1072
|
-
return (
|
598
|
+
var _a;
|
599
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.paused;
|
1073
600
|
}
|
1074
601
|
get captions() {
|
1075
|
-
var
|
1076
|
-
return (
|
602
|
+
var _a;
|
603
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.captions;
|
1077
604
|
}
|
1078
605
|
get fullscreen() {
|
1079
|
-
var
|
1080
|
-
return (
|
606
|
+
var _a;
|
607
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.fullscreen;
|
1081
608
|
}
|
1082
609
|
get duration() {
|
1083
|
-
var
|
1084
|
-
return (
|
610
|
+
var _a;
|
611
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.duration;
|
1085
612
|
}
|
1086
|
-
set currentTime(
|
1087
|
-
|
613
|
+
set currentTime(value) {
|
614
|
+
if (this._mediaPlayerRef.value) {
|
615
|
+
this._mediaPlayerRef.value.currentTime = value;
|
616
|
+
}
|
1088
617
|
}
|
1089
618
|
get currentTime() {
|
1090
|
-
var
|
1091
|
-
return ((
|
619
|
+
var _a;
|
620
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.currentTime) ?? 0;
|
1092
621
|
}
|
1093
|
-
set playbackRate(
|
1094
|
-
|
622
|
+
set playbackRate(value) {
|
623
|
+
if (this._mediaPlayerRef.value) {
|
624
|
+
this._mediaPlayerRef.value.playbackRate = value;
|
625
|
+
}
|
1095
626
|
}
|
1096
627
|
get playbackRate() {
|
1097
|
-
var
|
1098
|
-
return ((
|
628
|
+
var _a;
|
629
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.playbackRate) ?? 1;
|
1099
630
|
}
|
1100
|
-
set volume(
|
1101
|
-
|
631
|
+
set volume(value) {
|
632
|
+
if (this._mediaPlayerRef.value) {
|
633
|
+
this._mediaPlayerRef.value.volume = value;
|
634
|
+
}
|
1102
635
|
}
|
1103
636
|
get volume() {
|
1104
|
-
var
|
1105
|
-
return ((
|
637
|
+
var _a;
|
638
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.volume) ?? 1;
|
1106
639
|
}
|
1107
|
-
set muted(
|
1108
|
-
|
640
|
+
set muted(value) {
|
641
|
+
if (this._mediaPlayerRef.value) {
|
642
|
+
this._mediaPlayerRef.value.muted = value;
|
643
|
+
}
|
1109
644
|
}
|
1110
645
|
get muted() {
|
1111
|
-
var
|
1112
|
-
return ((
|
646
|
+
var _a;
|
647
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.muted) ?? false;
|
1113
648
|
}
|
1114
649
|
get scene() {
|
1115
|
-
var
|
1116
|
-
return ((
|
650
|
+
var _a;
|
651
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.scene) ?? null;
|
1117
652
|
}
|
1118
653
|
get scenes() {
|
1119
|
-
var
|
1120
|
-
return ((
|
654
|
+
var _a;
|
655
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.scenes) ?? [];
|
656
|
+
}
|
657
|
+
get sceneConfig() {
|
658
|
+
var _a;
|
659
|
+
return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.sceneConfig) ?? null;
|
1121
660
|
}
|
1122
661
|
get videoState() {
|
1123
|
-
var
|
1124
|
-
return (
|
662
|
+
var _a;
|
663
|
+
return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.videoState;
|
1125
664
|
}
|
1126
665
|
get mediaPlayer() {
|
1127
666
|
return this._mediaPlayerRef.value;
|
1128
667
|
}
|
1129
668
|
play() {
|
1130
|
-
var
|
1131
|
-
(
|
669
|
+
var _a;
|
670
|
+
(_a = this._mediaPlayerRef.value) == null ? void 0 : _a.play();
|
1132
671
|
}
|
1133
672
|
pause() {
|
1134
|
-
var
|
1135
|
-
(
|
1136
|
-
}
|
1137
|
-
|
1138
|
-
var
|
1139
|
-
(
|
673
|
+
var _a;
|
674
|
+
(_a = this._mediaPlayerRef.value) == null ? void 0 : _a.pause();
|
675
|
+
}
|
676
|
+
reset(time = 0, play = false) {
|
677
|
+
var _a;
|
678
|
+
(_a = this._mediaPlayerRef.value) == null ? void 0 : _a.reset(time, play);
|
679
|
+
}
|
680
|
+
setScene(index) {
|
681
|
+
var _a;
|
682
|
+
(_a = this._mediaPlayerRef.value) == null ? void 0 : _a.setScene(index);
|
683
|
+
}
|
684
|
+
_renderStyles() {
|
685
|
+
if (!this.aspectRatio) {
|
686
|
+
return html`
|
687
|
+
<style>
|
688
|
+
:host {
|
689
|
+
width: 100%;
|
690
|
+
height: 100%;
|
691
|
+
}
|
692
|
+
</style>
|
693
|
+
`;
|
694
|
+
}
|
695
|
+
if (typeof this.aspectRatio === "number") {
|
696
|
+
return html`
|
697
|
+
<style>
|
698
|
+
:host {
|
699
|
+
aspect-ratio: ${this.aspectRatio};
|
700
|
+
}
|
701
|
+
</style>
|
702
|
+
`;
|
703
|
+
}
|
704
|
+
return null;
|
1140
705
|
}
|
1141
706
|
render() {
|
1142
|
-
return
|
707
|
+
return html`
|
708
|
+
${this._renderStyles()}
|
1143
709
|
<vmp-media-player
|
1144
|
-
${
|
710
|
+
${ref(this._mediaPlayerRef)}
|
1145
711
|
${this.eventController.register()}
|
1146
712
|
?autoplay=${this.autoplay}
|
1147
713
|
?loading=${this.fetching}
|
1148
|
-
.data=${this.
|
1149
|
-
.
|
1150
|
-
|
1151
|
-
|
1152
|
-
preload=${tt(this.preload)}
|
714
|
+
.data=${this.vouch}
|
715
|
+
.template=${this.template}
|
716
|
+
aspectRatio=${ifDefined(this.aspectRatio)}
|
717
|
+
preload=${ifDefined(this.preload)}
|
1153
718
|
.controls=${this.controls}
|
1154
719
|
></vmp-media-player>
|
1155
720
|
`;
|
1156
721
|
}
|
1157
722
|
};
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
723
|
+
PlayerEmbed.styles = [
|
724
|
+
css`
|
725
|
+
:host {
|
726
|
+
display: flex;
|
727
|
+
}
|
728
|
+
`
|
729
|
+
];
|
730
|
+
__decorateClass$3([
|
731
|
+
property({ type: Object })
|
732
|
+
], PlayerEmbed.prototype, "data", 2);
|
733
|
+
__decorateClass$3([
|
734
|
+
property({ type: String })
|
735
|
+
], PlayerEmbed.prototype, "vouchId", 2);
|
736
|
+
__decorateClass$3([
|
737
|
+
property({ type: String })
|
738
|
+
], PlayerEmbed.prototype, "templateId", 2);
|
739
|
+
__decorateClass$3([
|
740
|
+
property({ type: Array })
|
741
|
+
], PlayerEmbed.prototype, "questions", 2);
|
742
|
+
__decorateClass$3([
|
743
|
+
property({ type: String })
|
744
|
+
], PlayerEmbed.prototype, "env", 2);
|
745
|
+
__decorateClass$3([
|
746
|
+
property({ type: String })
|
747
|
+
], PlayerEmbed.prototype, "apiKey", 2);
|
748
|
+
__decorateClass$3([
|
749
|
+
property({ type: Boolean })
|
750
|
+
], PlayerEmbed.prototype, "disableTracking", 2);
|
751
|
+
__decorateClass$3([
|
752
|
+
property({ type: String })
|
753
|
+
], PlayerEmbed.prototype, "trackingSource", 2);
|
754
|
+
__decorateClass$3([
|
755
|
+
property({ type: Array })
|
756
|
+
], PlayerEmbed.prototype, "controls", 2);
|
757
|
+
__decorateClass$3([
|
758
|
+
property({ type: String })
|
759
|
+
], PlayerEmbed.prototype, "preload", 2);
|
760
|
+
__decorateClass$3([
|
761
|
+
property({ type: Boolean })
|
762
|
+
], PlayerEmbed.prototype, "autoplay", 2);
|
763
|
+
__decorateClass$3([
|
764
|
+
property({ type: Number })
|
765
|
+
], PlayerEmbed.prototype, "aspectRatio", 2);
|
766
|
+
__decorateClass$3([
|
767
|
+
state()
|
768
|
+
], PlayerEmbed.prototype, "vouch", 2);
|
769
|
+
__decorateClass$3([
|
770
|
+
state()
|
771
|
+
], PlayerEmbed.prototype, "template", 2);
|
772
|
+
PlayerEmbed = __decorateClass$3([
|
773
|
+
customElement("vouch-embed-player")
|
774
|
+
], PlayerEmbed);
|
775
|
+
var __defProp$2 = Object.defineProperty;
|
776
|
+
var __getOwnPropDesc$2 = Object.getOwnPropertyDescriptor;
|
777
|
+
var __decorateClass$2 = (decorators, target, key, kind) => {
|
778
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$2(target, key) : target;
|
779
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
780
|
+
if (decorator = decorators[i])
|
781
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
782
|
+
if (kind && result)
|
783
|
+
__defProp$2(target, key, result);
|
784
|
+
return result;
|
785
|
+
};
|
786
|
+
let DialogOverlay = class extends LitElement {
|
787
|
+
constructor() {
|
788
|
+
super(...arguments);
|
789
|
+
this.open = false;
|
790
|
+
this.aspectRatio = 0;
|
791
|
+
}
|
792
|
+
render() {
|
793
|
+
return html`
|
794
|
+
<div
|
795
|
+
class=${classMap({
|
796
|
+
container: true,
|
797
|
+
hidden: !this.open
|
798
|
+
})}
|
799
|
+
>
|
800
|
+
<div
|
801
|
+
class="background"
|
802
|
+
@click=${() => this.dispatchEvent(new CustomEvent("overlay:click", { bubbles: true, composed: true }))}
|
803
|
+
></div>
|
804
|
+
<focus-trap>
|
805
|
+
<div
|
806
|
+
class=${classMap({
|
807
|
+
"video-frame": true,
|
808
|
+
grow: this.aspectRatio === 0
|
809
|
+
})}
|
810
|
+
style=${styleMap({
|
811
|
+
aspectRatio: this.aspectRatio
|
812
|
+
})}
|
813
|
+
>
|
814
|
+
<slot></slot>
|
815
|
+
<vmp-icon-button
|
816
|
+
icon="close"
|
817
|
+
rounded="full"
|
818
|
+
weight="heavy"
|
819
|
+
@click=${() => this.dispatchEvent(new CustomEvent("close:click", { bubbles: true, composed: true }))}
|
820
|
+
></vmp-icon-button>
|
821
|
+
</div>
|
822
|
+
</focus-trap>
|
823
|
+
</div>
|
824
|
+
`;
|
825
|
+
}
|
826
|
+
};
|
827
|
+
DialogOverlay.styles = [
|
828
|
+
css`
|
829
|
+
:host {
|
830
|
+
--vouch-media-player-border-radius: var(--vu-media-player-border-radius, 12px);
|
831
|
+
--overlay-background-color: var(--vu-overlay-background-color, black);
|
832
|
+
--overlay-background-opacity: var(--vu-overlay-background-opacity, 0.4);
|
833
|
+
|
834
|
+
--dialog-width: var(--vu-dialog-width, 890px);
|
835
|
+
--dialog-height: var(--vu-dialog-height, 500px);
|
836
|
+
}
|
837
|
+
|
838
|
+
.container {
|
839
|
+
position: fixed;
|
840
|
+
display: flex;
|
841
|
+
inset: 0;
|
842
|
+
opacity: 1;
|
843
|
+
z-index: 2147483647;
|
844
|
+
align-items: center;
|
845
|
+
justify-content: center;
|
846
|
+
transition: opacity 100ms ease-in;
|
847
|
+
}
|
848
|
+
|
849
|
+
.hidden {
|
850
|
+
opacity: 0;
|
851
|
+
pointer-events: none;
|
852
|
+
}
|
853
|
+
|
854
|
+
.background {
|
855
|
+
position: absolute;
|
856
|
+
inset: 0;
|
857
|
+
opacity: var(--overlay-background-opacity);
|
858
|
+
background-color: var(--overlay-background-color);
|
859
|
+
}
|
860
|
+
|
861
|
+
focus-trap {
|
862
|
+
display: flex;
|
863
|
+
align-items: center;
|
864
|
+
justify-content: center;
|
865
|
+
margin: 40px;
|
866
|
+
width: var(--dialog-width);
|
867
|
+
height: var(--dialog-height);
|
868
|
+
max-width: calc(100% - 80px);
|
869
|
+
max-height: calc(100% - 80px);
|
870
|
+
}
|
871
|
+
|
872
|
+
.video-frame {
|
873
|
+
position: relative;
|
874
|
+
display: flex;
|
875
|
+
align-items: center;
|
876
|
+
justify-content: center;
|
877
|
+
max-width: 100%;
|
878
|
+
max-height: 100%;
|
879
|
+
}
|
880
|
+
|
881
|
+
.video-frame.grow {
|
882
|
+
width: 100%;
|
883
|
+
height: 100%;
|
884
|
+
}
|
885
|
+
|
886
|
+
vmp-icon-button {
|
887
|
+
position: absolute;
|
888
|
+
top: 0;
|
889
|
+
right: 0;
|
890
|
+
margin: 10px;
|
891
|
+
}
|
892
|
+
`
|
893
|
+
];
|
894
|
+
__decorateClass$2([
|
895
|
+
property({ type: Boolean })
|
896
|
+
], DialogOverlay.prototype, "open", 2);
|
897
|
+
__decorateClass$2([
|
898
|
+
property({ type: Number })
|
899
|
+
], DialogOverlay.prototype, "aspectRatio", 2);
|
900
|
+
DialogOverlay = __decorateClass$2([
|
901
|
+
customElement("vouch-embed-dialog-overlay")
|
902
|
+
], DialogOverlay);
|
903
|
+
var __defProp$1 = Object.defineProperty;
|
904
|
+
var __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;
|
905
|
+
var __decorateClass$1 = (decorators, target, key, kind) => {
|
906
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$1(target, key) : target;
|
907
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
908
|
+
if (decorator = decorators[i])
|
909
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
910
|
+
if (kind && result)
|
911
|
+
__defProp$1(target, key, result);
|
912
|
+
return result;
|
913
|
+
};
|
914
|
+
let DialogPortal = class extends LitElement {
|
915
|
+
constructor() {
|
916
|
+
super(...arguments);
|
917
|
+
this.env = "prod";
|
918
|
+
this.apiKey = "";
|
919
|
+
this.disableTracking = false;
|
920
|
+
this.trackingSource = "embedded_player";
|
921
|
+
this.preload = "none";
|
922
|
+
this.disableAutoplay = false;
|
923
|
+
this.aspectRatio = 0;
|
924
|
+
this._mediaPlayerRef = createRef();
|
925
|
+
this.open = false;
|
926
|
+
this._handleToggle = ({ detail }) => {
|
927
|
+
var _a, _b, _c;
|
928
|
+
if (this.id === detail) {
|
929
|
+
this.open = !this.open;
|
930
|
+
if (this.open) {
|
931
|
+
if (!this.disableAutoplay && ((_a = this._mediaPlayerRef) == null ? void 0 : _a.value)) {
|
932
|
+
this._mediaPlayerRef.value.muted = false;
|
933
|
+
this._mediaPlayerRef.value.play();
|
934
|
+
}
|
935
|
+
} else {
|
936
|
+
(_c = (_b = this._mediaPlayerRef) == null ? void 0 : _b.value) == null ? void 0 : _c.pause();
|
937
|
+
}
|
938
|
+
}
|
939
|
+
};
|
940
|
+
this._handleClose = () => {
|
941
|
+
var _a, _b;
|
942
|
+
this.open = false;
|
943
|
+
(_b = (_a = this._mediaPlayerRef) == null ? void 0 : _a.value) == null ? void 0 : _b.pause();
|
944
|
+
};
|
945
|
+
this._handleDocumentKeyUp = (e) => {
|
946
|
+
if (e.key === "Escape") {
|
947
|
+
this._handleClose();
|
948
|
+
}
|
949
|
+
};
|
950
|
+
}
|
951
|
+
connectedCallback() {
|
952
|
+
super.connectedCallback();
|
953
|
+
document.addEventListener("dialogembed:click", this._handleToggle);
|
954
|
+
document.addEventListener("keyup", this._handleDocumentKeyUp);
|
955
|
+
document.addEventListener("close:click", this._handleClose);
|
956
|
+
document.addEventListener("overlay:click", this._handleClose);
|
957
|
+
}
|
958
|
+
disconnectedCallback() {
|
959
|
+
super.disconnectedCallback();
|
960
|
+
document.removeEventListener("dialogembed:click", this._handleToggle);
|
961
|
+
document.removeEventListener("keyup", this._handleDocumentKeyUp);
|
962
|
+
document.removeEventListener("close:click", this._handleClose);
|
963
|
+
document.removeEventListener("overlay:click", this._handleClose);
|
964
|
+
}
|
965
|
+
createRenderRoot() {
|
966
|
+
const newNode = document.createElement("div");
|
967
|
+
document.body.appendChild(newNode);
|
968
|
+
return newNode;
|
969
|
+
}
|
970
|
+
render() {
|
971
|
+
return html`
|
972
|
+
<vouch-embed-dialog-overlay ?open=${this.open} aspectRatio=${this.aspectRatio}>
|
973
|
+
<vouch-embed-player
|
974
|
+
${ref(this._mediaPlayerRef)}
|
975
|
+
style=${styleMap({
|
976
|
+
maxWidth: "100%",
|
977
|
+
maxHeight: "100%"
|
978
|
+
})}
|
979
|
+
?autoplay=${false}
|
980
|
+
vouchId=${ifDefined(this.vouchId)}
|
981
|
+
templateId=${ifDefined(this.templateId)}
|
982
|
+
.questions=${this.questions}
|
983
|
+
.controls=${this.controls}
|
984
|
+
env=${ifDefined(this.env)}
|
985
|
+
apiKey=${ifDefined(this.apiKey)}
|
986
|
+
?disableTracking=${this.disableTracking}
|
987
|
+
trackingSource=${ifDefined(this.trackingSource)}
|
988
|
+
preload=${ifDefined(this.preload)}
|
989
|
+
aspectRatio=${this.aspectRatio}
|
990
|
+
></vouch-embed-player>
|
991
|
+
</vouch-embed-dialog-overlay>
|
992
|
+
`;
|
993
|
+
}
|
994
|
+
};
|
995
|
+
__decorateClass$1([
|
996
|
+
property({ type: String })
|
997
|
+
], DialogPortal.prototype, "vouchId", 2);
|
998
|
+
__decorateClass$1([
|
999
|
+
property({ type: String })
|
1000
|
+
], DialogPortal.prototype, "templateId", 2);
|
1001
|
+
__decorateClass$1([
|
1002
|
+
property({ type: Array })
|
1003
|
+
], DialogPortal.prototype, "questions", 2);
|
1004
|
+
__decorateClass$1([
|
1005
|
+
property({ type: String })
|
1006
|
+
], DialogPortal.prototype, "env", 2);
|
1007
|
+
__decorateClass$1([
|
1008
|
+
property({ type: String })
|
1009
|
+
], DialogPortal.prototype, "apiKey", 2);
|
1010
|
+
__decorateClass$1([
|
1011
|
+
property({ type: Boolean })
|
1012
|
+
], DialogPortal.prototype, "disableTracking", 2);
|
1013
|
+
__decorateClass$1([
|
1014
|
+
property({ type: String })
|
1015
|
+
], DialogPortal.prototype, "trackingSource", 2);
|
1016
|
+
__decorateClass$1([
|
1017
|
+
property({ type: Array })
|
1018
|
+
], DialogPortal.prototype, "controls", 2);
|
1019
|
+
__decorateClass$1([
|
1020
|
+
property({ type: String })
|
1021
|
+
], DialogPortal.prototype, "preload", 2);
|
1022
|
+
__decorateClass$1([
|
1023
|
+
property({ type: Boolean })
|
1024
|
+
], DialogPortal.prototype, "disableAutoplay", 2);
|
1025
|
+
__decorateClass$1([
|
1026
|
+
property({ type: Number })
|
1027
|
+
], DialogPortal.prototype, "aspectRatio", 2);
|
1028
|
+
__decorateClass$1([
|
1029
|
+
state()
|
1030
|
+
], DialogPortal.prototype, "open", 2);
|
1031
|
+
DialogPortal = __decorateClass$1([
|
1032
|
+
customElement("vouch-embed-dialog-portal")
|
1033
|
+
], DialogPortal);
|
1034
|
+
var __defProp = Object.defineProperty;
|
1035
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
1036
|
+
var __decorateClass = (decorators, target, key, kind) => {
|
1037
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
1038
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
1039
|
+
if (decorator = decorators[i])
|
1040
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
1041
|
+
if (kind && result)
|
1042
|
+
__defProp(target, key, result);
|
1043
|
+
return result;
|
1044
|
+
};
|
1045
|
+
let DialogEmbed = class extends LitElement {
|
1046
|
+
constructor() {
|
1047
|
+
super(...arguments);
|
1048
|
+
this.env = "prod";
|
1049
|
+
this.apiKey = "";
|
1050
|
+
this.disableTracking = false;
|
1051
|
+
this.trackingSource = "embedded_player";
|
1052
|
+
this.preload = "none";
|
1053
|
+
this.disableAutoplay = false;
|
1054
|
+
this.aspectRatio = 0;
|
1055
|
+
this._id = v4();
|
1056
|
+
this._handleRootClick = () => {
|
1057
|
+
this.dispatchEvent(new CustomEvent("dialogembed:click", { detail: this._id, bubbles: true, composed: true }));
|
1058
|
+
};
|
1059
|
+
}
|
1060
|
+
connectedCallback() {
|
1061
|
+
super.connectedCallback();
|
1062
|
+
this.addEventListener("click", this._handleRootClick);
|
1063
|
+
}
|
1064
|
+
disconnectedCallback() {
|
1065
|
+
super.disconnectedCallback();
|
1066
|
+
this.removeEventListener("click", this._handleRootClick);
|
1067
|
+
}
|
1068
|
+
render() {
|
1069
|
+
return html`
|
1070
|
+
<slot>
|
1071
|
+
<vmp-button size="large">Play</vmp-button>
|
1072
|
+
</slot>
|
1073
|
+
<vouch-embed-dialog-portal
|
1074
|
+
id=${this._id}
|
1075
|
+
?autoplay=${false}
|
1076
|
+
vouchId=${ifDefined(this.vouchId)}
|
1077
|
+
templateId=${ifDefined(this.templateId)}
|
1078
|
+
.questions=${this.questions}
|
1079
|
+
.controls=${this.controls}
|
1080
|
+
env=${ifDefined(this.env)}
|
1081
|
+
apiKey=${ifDefined(this.apiKey)}
|
1082
|
+
?disableTracking=${this.disableTracking}
|
1083
|
+
trackingSource=${ifDefined(this.trackingSource)}
|
1084
|
+
preload=${ifDefined(this.preload)}
|
1085
|
+
aspectRatio=${this.aspectRatio}
|
1086
|
+
></vouch-embed-dialog-portal>
|
1087
|
+
`;
|
1088
|
+
}
|
1089
|
+
};
|
1090
|
+
DialogEmbed.styles = [
|
1091
|
+
css`
|
1092
|
+
:host {
|
1093
|
+
--vu-button-padding: 10px 20px;
|
1094
|
+
--vu-button-background: #287179;
|
1095
|
+
--vu-button-background-hover: #4faab2;
|
1096
|
+
|
1097
|
+
display: flex;
|
1098
|
+
width: fit-content;
|
1099
|
+
height: fit-content;
|
1100
|
+
}
|
1101
|
+
`
|
1102
|
+
];
|
1103
|
+
__decorateClass([
|
1104
|
+
property({ type: String })
|
1105
|
+
], DialogEmbed.prototype, "vouchId", 2);
|
1106
|
+
__decorateClass([
|
1107
|
+
property({ type: String })
|
1108
|
+
], DialogEmbed.prototype, "templateId", 2);
|
1109
|
+
__decorateClass([
|
1110
|
+
property({ type: Array })
|
1111
|
+
], DialogEmbed.prototype, "questions", 2);
|
1112
|
+
__decorateClass([
|
1113
|
+
property({ type: String })
|
1114
|
+
], DialogEmbed.prototype, "env", 2);
|
1115
|
+
__decorateClass([
|
1116
|
+
property({ type: String })
|
1117
|
+
], DialogEmbed.prototype, "apiKey", 2);
|
1118
|
+
__decorateClass([
|
1119
|
+
property({ type: Boolean })
|
1120
|
+
], DialogEmbed.prototype, "disableTracking", 2);
|
1121
|
+
__decorateClass([
|
1122
|
+
property({ type: String })
|
1123
|
+
], DialogEmbed.prototype, "trackingSource", 2);
|
1124
|
+
__decorateClass([
|
1125
|
+
property({ type: Array })
|
1126
|
+
], DialogEmbed.prototype, "controls", 2);
|
1127
|
+
__decorateClass([
|
1128
|
+
property({ type: String })
|
1129
|
+
], DialogEmbed.prototype, "preload", 2);
|
1130
|
+
__decorateClass([
|
1131
|
+
property({ type: Boolean })
|
1132
|
+
], DialogEmbed.prototype, "disableAutoplay", 2);
|
1133
|
+
__decorateClass([
|
1134
|
+
property({ type: Number })
|
1135
|
+
], DialogEmbed.prototype, "aspectRatio", 2);
|
1136
|
+
DialogEmbed = __decorateClass([
|
1137
|
+
customElement("vouch-embed-dialog")
|
1138
|
+
], DialogEmbed);
|
1203
1139
|
export {
|
1204
|
-
|
1140
|
+
DialogEmbed,
|
1141
|
+
PlayerEmbed
|
1205
1142
|
};
|
1206
1143
|
//# sourceMappingURL=embeds.js.map
|