@vouchfor/embeds 0.0.0-experiment.de7febc → 0.0.0-experiment.df0e970
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/embeds.js +1008 -1377
- 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/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
- package/dist/es/{components/Embed → src/components/PlayerEmbed}/controllers/fetcher.d.ts +5 -4
- 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 +75 -0
- package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +3 -0
- package/dist/es/src/index.d.ts +2 -0
- package/dist/iife/dialog-embed/embed.iife.js +1755 -0
- package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
- package/dist/iife/embeds.iife.js +767 -442
- package/dist/iife/embeds.iife.js.map +1 -1
- package/dist/iife/player-embed/embed.iife.js +1617 -0
- package/dist/iife/player-embed/embed.iife.js.map +1 -0
- package/package.json +43 -31
- 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} +42 -15
- package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
- package/src/components/{Embed → PlayerEmbed}/controllers/fetcher.ts +36 -17
- 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 +83 -29
- 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/dist/es/components/Embed/controllers/tracking.d.ts +0 -28
- package/dist/es/components/Embed/index.d.ts +0 -66
- package/dist/es/index.d.ts +0 -1
- package/src/components/Embed/controllers/tracking.ts +0 -271
- /package/dist/es/{utils → src/utils}/env.d.ts +0 -0
- /package/dist/es/{utils → src/utils}/events.d.ts +0 -0
@@ -1,27 +1,28 @@
|
|
1
1
|
import { createRef, ref } from 'lit/directives/ref.js';
|
2
2
|
|
3
|
-
import type {
|
3
|
+
import type { PlayerEmbed } from '..';
|
4
4
|
import type { ReactiveController, ReactiveControllerHost } from 'lit';
|
5
|
+
import type { DirectiveResult } from 'lit/directive.js';
|
5
6
|
import type { Ref } from 'lit/directives/ref.js';
|
6
7
|
|
7
8
|
import { forwardEvent } from '~/utils/events';
|
8
9
|
|
9
|
-
type
|
10
|
+
type PlayerEmbedHost = ReactiveControllerHost & PlayerEmbed;
|
10
11
|
|
11
12
|
class EventForwardController implements ReactiveController {
|
12
|
-
host:
|
13
|
+
host: PlayerEmbedHost;
|
13
14
|
|
14
15
|
private _events: string[] = [];
|
15
16
|
private _cleanup: (() => void)[] = [];
|
16
17
|
private _forwardElementRef: Ref<HTMLElement> = createRef();
|
17
18
|
|
18
|
-
constructor(host:
|
19
|
+
constructor(host: PlayerEmbedHost, events: string[]) {
|
19
20
|
this.host = host;
|
20
21
|
this._events = events;
|
21
22
|
host.addController(this);
|
22
23
|
}
|
23
24
|
|
24
|
-
register() {
|
25
|
+
register(): DirectiveResult {
|
25
26
|
return ref(this._forwardElementRef);
|
26
27
|
}
|
27
28
|
|
@@ -1,26 +1,29 @@
|
|
1
1
|
import { Task } from '@lit/task';
|
2
2
|
import { v4 as uuidv4 } from 'uuid';
|
3
3
|
|
4
|
-
import type {
|
4
|
+
import type { PlayerEmbed, PlayerEmbedProps } from '..';
|
5
5
|
import type { ReactiveControllerHost } from 'lit';
|
6
6
|
import type { Environment } from '~/utils/env';
|
7
7
|
|
8
8
|
import { getEnvUrls } from '~/utils/env';
|
9
9
|
|
10
|
-
type
|
10
|
+
type PlayerEmbedHost = ReactiveControllerHost & PlayerEmbed;
|
11
11
|
|
12
|
-
type
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
type FetchTaskDeps = [
|
13
|
+
PlayerEmbedProps['env'],
|
14
|
+
PlayerEmbedProps['apiKey'],
|
15
|
+
PlayerEmbedProps['data'],
|
16
|
+
PlayerEmbedProps['vouchId'],
|
17
|
+
PlayerEmbedProps['templateId']
|
18
18
|
];
|
19
19
|
|
20
|
+
type FilterTaskDeps = [PlayerEmbedProps['data'], PlayerEmbedProps['questions']];
|
21
|
+
|
20
22
|
class FetcherController {
|
21
|
-
host:
|
23
|
+
host: PlayerEmbedHost;
|
22
24
|
|
23
25
|
private _fetching = false;
|
26
|
+
private _vouch: PlayerEmbedProps['data'];
|
24
27
|
|
25
28
|
set fetching(value) {
|
26
29
|
if (this._fetching !== value) {
|
@@ -45,13 +48,13 @@ class FetcherController {
|
|
45
48
|
});
|
46
49
|
|
47
50
|
const vouch = await res.json();
|
48
|
-
this.host.dispatchEvent(new CustomEvent('vouch:loaded', { detail:
|
51
|
+
this.host.dispatchEvent(new CustomEvent('vouch:loaded', { detail: vouch?.id }));
|
49
52
|
|
50
53
|
// HACK: we're currently using API Gateway caching on the embed API without any invalidation logic,
|
51
54
|
// so to ensure that the cache stays up to date, whenever we detect a cache hit we trigger another
|
52
55
|
// API call with the `Cache-Control` header which will re-fill the cache
|
53
56
|
const resCacheCheck = res?.headers?.get('X-Cache-Check');
|
54
|
-
if (resCacheCheck
|
57
|
+
if (resCacheCheck !== cacheCheck) {
|
55
58
|
fetch(`${embedApiUrl}/vouches/${vouchId}`, {
|
56
59
|
method: 'GET',
|
57
60
|
headers: [
|
@@ -81,7 +84,7 @@ class FetcherController {
|
|
81
84
|
// so to ensure that the cache stays up to date, whenever we detect a cache hit we trigger another
|
82
85
|
// API call with the `Cache-Control` header which will re-fill the cache
|
83
86
|
const resCacheCheck = res?.headers?.get('X-Cache-Check');
|
84
|
-
if (resCacheCheck
|
87
|
+
if (resCacheCheck !== cacheCheck) {
|
85
88
|
fetch(`${embedApiUrl}/templates/${templateId}`, {
|
86
89
|
method: 'GET',
|
87
90
|
headers: [
|
@@ -94,11 +97,11 @@ class FetcherController {
|
|
94
97
|
return template;
|
95
98
|
};
|
96
99
|
|
97
|
-
constructor(host:
|
100
|
+
constructor(host: PlayerEmbedHost) {
|
98
101
|
this.host = host;
|
99
|
-
new Task<
|
102
|
+
new Task<FetchTaskDeps, void>(
|
100
103
|
this.host,
|
101
|
-
async ([env, apiKey, data, vouchId, templateId]:
|
104
|
+
async ([env, apiKey, data, vouchId, templateId]: FetchTaskDeps) => {
|
102
105
|
try {
|
103
106
|
host.vouch = undefined;
|
104
107
|
host.template = undefined;
|
@@ -109,7 +112,7 @@ class FetcherController {
|
|
109
112
|
this.fetching = true;
|
110
113
|
template = await this.getTemplate(env, apiKey, templateId);
|
111
114
|
}
|
112
|
-
|
115
|
+
this._vouch = data;
|
113
116
|
host.template = template ?? data?.settings?.template?.instance;
|
114
117
|
} else if (vouchId) {
|
115
118
|
this.fetching = true;
|
@@ -118,7 +121,7 @@ class FetcherController {
|
|
118
121
|
this.getVouch(env, apiKey, vouchId),
|
119
122
|
templateId ? this.getTemplate(env, apiKey, templateId) : null
|
120
123
|
]);
|
121
|
-
|
124
|
+
this._vouch = vouch;
|
122
125
|
host.template = template ?? vouch?.settings?.template?.instance;
|
123
126
|
}
|
124
127
|
} finally {
|
@@ -127,6 +130,22 @@ class FetcherController {
|
|
127
130
|
},
|
128
131
|
() => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
|
129
132
|
);
|
133
|
+
|
134
|
+
// This second task is to be able to filter the vouch without fetching it again if only the questions changed
|
135
|
+
new Task<FilterTaskDeps, void>(
|
136
|
+
this.host,
|
137
|
+
([vouch, questions]: FilterTaskDeps) => {
|
138
|
+
host.vouch = vouch
|
139
|
+
? {
|
140
|
+
...vouch,
|
141
|
+
questions: {
|
142
|
+
items: vouch?.questions.items.filter((_, index) => !questions?.length || questions?.includes(index + 1))
|
143
|
+
}
|
144
|
+
}
|
145
|
+
: undefined;
|
146
|
+
},
|
147
|
+
() => [this._vouch, host.questions]
|
148
|
+
);
|
130
149
|
}
|
131
150
|
}
|
132
151
|
|
@@ -0,0 +1,224 @@
|
|
1
|
+
import type { PlayerEmbed } from '../..';
|
2
|
+
import type { VideoEventDetail } from '@vouchfor/media-player';
|
3
|
+
import type { ReactiveController, ReactiveControllerHost } from 'lit';
|
4
|
+
|
5
|
+
import { findVouchId, getReportingMetadata, getUids } from './utils';
|
6
|
+
import { getEnvUrls } from '~/utils/env';
|
7
|
+
|
8
|
+
const MINIMUM_SEND_THRESHOLD = 1;
|
9
|
+
|
10
|
+
type PlayerEmbedHost = ReactiveControllerHost & PlayerEmbed;
|
11
|
+
|
12
|
+
type TrackingEvent = 'VOUCH_LOADED' | 'VOUCH_RESPONSE_VIEWED' | 'VIDEO_PLAYED' | 'VIDEO_STREAMED';
|
13
|
+
type TrackingPayload = {
|
14
|
+
vouchId?: string;
|
15
|
+
answerId?: string;
|
16
|
+
streamStart?: number;
|
17
|
+
streamEnd?: number;
|
18
|
+
};
|
19
|
+
|
20
|
+
type BatchEvent = {
|
21
|
+
event: TrackingEvent;
|
22
|
+
payload: TrackingPayload & {
|
23
|
+
time: string;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
|
27
|
+
type TimeMap = {
|
28
|
+
[key: string]: number;
|
29
|
+
};
|
30
|
+
|
31
|
+
type BooleanMap = {
|
32
|
+
[key: string]: boolean;
|
33
|
+
};
|
34
|
+
|
35
|
+
class TrackingController implements ReactiveController {
|
36
|
+
host: PlayerEmbedHost;
|
37
|
+
|
38
|
+
private _batchedEvents: BatchEvent[] = [];
|
39
|
+
private _hasPlayed = false;
|
40
|
+
private _hasLoaded: BooleanMap = {};
|
41
|
+
private _answersViewed: BooleanMap = {};
|
42
|
+
private _streamStartTime: TimeMap = {};
|
43
|
+
private _streamLatestTime: TimeMap = {};
|
44
|
+
private _currentlyPlayingVideo: VideoEventDetail | null = null;
|
45
|
+
|
46
|
+
constructor(host: PlayerEmbedHost) {
|
47
|
+
this.host = host;
|
48
|
+
host.addController(this);
|
49
|
+
}
|
50
|
+
|
51
|
+
private _createTrackingEvent = (event: TrackingEvent, payload?: TrackingPayload) => {
|
52
|
+
const vouchId = findVouchId(payload, this.host.vouch);
|
53
|
+
|
54
|
+
if (!vouchId || this.host.disableTracking) {
|
55
|
+
return;
|
56
|
+
}
|
57
|
+
|
58
|
+
this._batchedEvents.push({
|
59
|
+
event,
|
60
|
+
payload: {
|
61
|
+
...payload,
|
62
|
+
vouchId,
|
63
|
+
time: new Date().toISOString()
|
64
|
+
}
|
65
|
+
});
|
66
|
+
};
|
67
|
+
|
68
|
+
private _sendTrackingEvent = () => {
|
69
|
+
if (this._batchedEvents.length <= 0) {
|
70
|
+
return;
|
71
|
+
}
|
72
|
+
|
73
|
+
const { publicApiUrl } = getEnvUrls(this.host.env);
|
74
|
+
const { client, tab, request, visitor } = getUids(this.host.env);
|
75
|
+
|
76
|
+
navigator.sendBeacon(
|
77
|
+
`${publicApiUrl}/api/batchevents`,
|
78
|
+
JSON.stringify({
|
79
|
+
payload: {
|
80
|
+
events: this._batchedEvents
|
81
|
+
},
|
82
|
+
context: {
|
83
|
+
'x-uid-client': client,
|
84
|
+
'x-uid-tab': tab,
|
85
|
+
'x-uid-request': request,
|
86
|
+
'x-uid-visitor': visitor,
|
87
|
+
'x-reporting-metadata': getReportingMetadata(this.host.trackingSource)
|
88
|
+
}
|
89
|
+
})
|
90
|
+
);
|
91
|
+
|
92
|
+
this._batchedEvents = [];
|
93
|
+
};
|
94
|
+
|
95
|
+
private _streamEnded = () => {
|
96
|
+
if (this._currentlyPlayingVideo) {
|
97
|
+
const { id, key } = this._currentlyPlayingVideo;
|
98
|
+
// Don't send a tracking event when seeking backwards
|
99
|
+
if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
|
100
|
+
// Send a video streamed event any time the stream ends to capture the time between starting
|
101
|
+
// the video and the video stopping for any reason (pausing, deleting the embed node or closing the browser)
|
102
|
+
this._createTrackingEvent('VIDEO_STREAMED', {
|
103
|
+
answerId: id,
|
104
|
+
streamStart: this._streamStartTime[key],
|
105
|
+
streamEnd: this._streamLatestTime[key]
|
106
|
+
});
|
107
|
+
}
|
108
|
+
|
109
|
+
// Make sure these events are only sent once by deleting the start and latest times
|
110
|
+
delete this._streamStartTime[key];
|
111
|
+
delete this._streamLatestTime[key];
|
112
|
+
}
|
113
|
+
};
|
114
|
+
|
115
|
+
private _handleVouchLoaded = ({ detail: vouchId }: CustomEvent<string>) => {
|
116
|
+
if (!vouchId) {
|
117
|
+
return;
|
118
|
+
}
|
119
|
+
|
120
|
+
// Only send loaded event once per session
|
121
|
+
if (!this._hasLoaded[vouchId]) {
|
122
|
+
this._createTrackingEvent('VOUCH_LOADED', { vouchId });
|
123
|
+
this._hasLoaded[vouchId] = true;
|
124
|
+
}
|
125
|
+
};
|
126
|
+
|
127
|
+
private _handlePlay = () => {
|
128
|
+
// Only send the video played event once per session
|
129
|
+
if (!this._hasPlayed) {
|
130
|
+
this._createTrackingEvent('VIDEO_PLAYED', {
|
131
|
+
streamStart: this.host.currentTime
|
132
|
+
});
|
133
|
+
this._hasPlayed = true;
|
134
|
+
}
|
135
|
+
};
|
136
|
+
|
137
|
+
private _handleVideoPlay = ({ detail: { id, key } }: CustomEvent<VideoEventDetail>) => {
|
138
|
+
// Only increment play count once per session
|
139
|
+
if (!this._answersViewed[key]) {
|
140
|
+
this._createTrackingEvent('VOUCH_RESPONSE_VIEWED', {
|
141
|
+
answerId: id
|
142
|
+
});
|
143
|
+
this._answersViewed[key] = true;
|
144
|
+
}
|
145
|
+
};
|
146
|
+
|
147
|
+
private _handleVideoTimeUpdate = ({ detail: { id, key, node } }: CustomEvent<VideoEventDetail>) => {
|
148
|
+
if (
|
149
|
+
// We only want to count any time that the video is actually playing
|
150
|
+
!this.host.paused &&
|
151
|
+
// Only update the latest time if this event fires for the currently active video
|
152
|
+
id === this.host.scene?.video?.id
|
153
|
+
) {
|
154
|
+
this._currentlyPlayingVideo = { id, key, node };
|
155
|
+
this._streamLatestTime[key] = node.currentTime;
|
156
|
+
|
157
|
+
if (!this._streamStartTime[key]) {
|
158
|
+
this._streamStartTime[key] = node.currentTime;
|
159
|
+
this._streamLatestTime[key] = node.currentTime;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
};
|
163
|
+
|
164
|
+
private _handleVideoPause = ({ detail: { id, key } }: CustomEvent<VideoEventDetail>) => {
|
165
|
+
if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
|
166
|
+
this._createTrackingEvent('VIDEO_STREAMED', {
|
167
|
+
answerId: id,
|
168
|
+
streamStart: this._streamStartTime[key],
|
169
|
+
streamEnd: this._streamLatestTime[key]
|
170
|
+
});
|
171
|
+
}
|
172
|
+
delete this._streamStartTime[key];
|
173
|
+
delete this._streamLatestTime[key];
|
174
|
+
};
|
175
|
+
|
176
|
+
private _pageUnloading = () => {
|
177
|
+
this._streamEnded();
|
178
|
+
this._sendTrackingEvent();
|
179
|
+
};
|
180
|
+
|
181
|
+
private _handleVisibilityChange = () => {
|
182
|
+
if (document.visibilityState === 'hidden') {
|
183
|
+
this._pageUnloading();
|
184
|
+
}
|
185
|
+
};
|
186
|
+
|
187
|
+
private _handlePageHide = () => {
|
188
|
+
this._pageUnloading();
|
189
|
+
};
|
190
|
+
|
191
|
+
hostConnected() {
|
192
|
+
requestAnimationFrame(() => {
|
193
|
+
if ('onvisibilitychange' in document) {
|
194
|
+
document.addEventListener('visibilitychange', this._handleVisibilityChange);
|
195
|
+
} else {
|
196
|
+
window.addEventListener('pagehide', this._handlePageHide);
|
197
|
+
}
|
198
|
+
this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
|
199
|
+
this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
|
200
|
+
this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
|
201
|
+
this.host.mediaPlayer?.addEventListener('video:pause', this._handleVideoPause);
|
202
|
+
this.host.mediaPlayer?.addEventListener('video:timeupdate', this._handleVideoTimeUpdate);
|
203
|
+
});
|
204
|
+
}
|
205
|
+
|
206
|
+
hostDisconnected() {
|
207
|
+
// Send events if DOM node is destroyed
|
208
|
+
this._pageUnloading();
|
209
|
+
|
210
|
+
if ('onvisibilitychange' in document) {
|
211
|
+
document.removeEventListener('visibilitychange', this._handleVisibilityChange);
|
212
|
+
} else {
|
213
|
+
window.removeEventListener('pagehide', this._handlePageHide);
|
214
|
+
}
|
215
|
+
this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
|
216
|
+
this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
|
217
|
+
this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
|
218
|
+
this.host.mediaPlayer?.removeEventListener('video:pause', this._handleVideoPause);
|
219
|
+
this.host.mediaPlayer?.removeEventListener('video:timeupdate', this._handleVideoTimeUpdate);
|
220
|
+
}
|
221
|
+
}
|
222
|
+
|
223
|
+
export { TrackingController };
|
224
|
+
export type { TrackingEvent, TrackingPayload };
|
@@ -0,0 +1,95 @@
|
|
1
|
+
import { TEMPLATE_VERSION } from '@vouchfor/canvas-video';
|
2
|
+
import { v4 as uuidv4 } from 'uuid';
|
3
|
+
|
4
|
+
import type { TrackingPayload } from '.';
|
5
|
+
import type { Vouch } from '@vouchfor/video-utils';
|
6
|
+
import type { Environment } from '~/utils/env';
|
7
|
+
|
8
|
+
import packageJson from '~/../package.json';
|
9
|
+
import { getEnvUrls } from '~/utils/env';
|
10
|
+
|
11
|
+
function createVisitor(env: Environment) {
|
12
|
+
const { publicApiUrl } = getEnvUrls(env);
|
13
|
+
const visitorId = uuidv4();
|
14
|
+
navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
|
15
|
+
return visitorId;
|
16
|
+
}
|
17
|
+
|
18
|
+
function getUids(env: Environment) {
|
19
|
+
if (typeof window === 'undefined') {
|
20
|
+
return {
|
21
|
+
client: null,
|
22
|
+
tab: null,
|
23
|
+
request: uuidv4()
|
24
|
+
};
|
25
|
+
}
|
26
|
+
|
27
|
+
// Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
|
28
|
+
let visitorId = window.localStorage?.getItem?.('vouch-uid-visitor');
|
29
|
+
// Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
|
30
|
+
let clientId = window.localStorage?.getItem?.('vouch-uid-client');
|
31
|
+
// Persisted in session storage, so we can search for everything the user has done in a specific tab
|
32
|
+
let tabId = window.sessionStorage?.getItem?.('vouch-uid-tab');
|
33
|
+
// Not persisted, allows us to search for any logs related to a single FE request
|
34
|
+
// E.g. BE should pass this request ID through all other services to be able to group logs
|
35
|
+
const requestId = uuidv4();
|
36
|
+
|
37
|
+
// Cache uids
|
38
|
+
if (!visitorId) {
|
39
|
+
visitorId = createVisitor(env);
|
40
|
+
window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
|
41
|
+
}
|
42
|
+
|
43
|
+
if (!clientId) {
|
44
|
+
clientId = uuidv4();
|
45
|
+
window.localStorage?.setItem?.('vouch-uid-client', clientId);
|
46
|
+
}
|
47
|
+
|
48
|
+
if (!tabId) {
|
49
|
+
tabId = uuidv4();
|
50
|
+
window.sessionStorage?.setItem?.('vouch-uid-tab', tabId);
|
51
|
+
}
|
52
|
+
|
53
|
+
return {
|
54
|
+
client: clientId,
|
55
|
+
tab: tabId,
|
56
|
+
request: requestId,
|
57
|
+
visitor: visitorId
|
58
|
+
};
|
59
|
+
}
|
60
|
+
|
61
|
+
function findVouchId(payload?: TrackingPayload, vouch?: Vouch) {
|
62
|
+
if (payload && 'vouchId' in payload) {
|
63
|
+
return payload.vouchId;
|
64
|
+
}
|
65
|
+
return vouch?.id ?? null;
|
66
|
+
}
|
67
|
+
|
68
|
+
function getReportingMetadata(source = 'embedded_player') {
|
69
|
+
const [country, region] = Intl.DateTimeFormat().resolvedOptions().timeZone?.split?.('/') ?? [];
|
70
|
+
|
71
|
+
const utmParams: any = {};
|
72
|
+
[...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
|
73
|
+
if (/utm/.test(key)) {
|
74
|
+
const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
|
75
|
+
utmParams[param] = value;
|
76
|
+
}
|
77
|
+
});
|
78
|
+
|
79
|
+
return {
|
80
|
+
source,
|
81
|
+
time: new Date(),
|
82
|
+
region,
|
83
|
+
country,
|
84
|
+
screenHeight: window.screen.height,
|
85
|
+
screenWidth: window.screen.width,
|
86
|
+
referrer: document.referrer,
|
87
|
+
currentUrl: location.href,
|
88
|
+
embedType: 'media-player-embed',
|
89
|
+
embedVersion: packageJson.version,
|
90
|
+
templateVersion: TEMPLATE_VERSION,
|
91
|
+
...utmParams
|
92
|
+
};
|
93
|
+
}
|
94
|
+
|
95
|
+
export { getUids, findVouchId, getReportingMetadata };
|
@@ -1,11 +1,10 @@
|
|
1
|
-
import { html, LitElement } from 'lit';
|
1
|
+
import { css, html, LitElement } from 'lit';
|
2
2
|
import { customElement, property, state } from 'lit/decorators.js';
|
3
3
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
4
4
|
import { createRef, ref } from 'lit/directives/ref.js';
|
5
5
|
|
6
|
-
import type { Scene, TemplateInstance } from '@vouchfor/canvas-video';
|
6
|
+
import type { Scene, Scenes, TemplateInstance } from '@vouchfor/canvas-video';
|
7
7
|
import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
|
8
|
-
import type { Ref } from 'lit/directives/ref.js';
|
9
8
|
import type { Environment } from '~/utils/env';
|
10
9
|
|
11
10
|
import { EventForwardController } from './controllers/event-forwarder';
|
@@ -14,32 +13,45 @@ import { TrackingController } from './controllers/tracking';
|
|
14
13
|
|
15
14
|
import '@vouchfor/media-player';
|
16
15
|
|
17
|
-
type
|
16
|
+
type PlayerEmbedProps = Pick<
|
17
|
+
MediaPlayerProps,
|
18
|
+
'data' | 'aspectRatio' | 'language' | 'preload' | 'autoplay' | 'controls'
|
19
|
+
> & {
|
18
20
|
env: Environment;
|
19
21
|
apiKey: string;
|
20
|
-
|
22
|
+
disableTracking?: boolean;
|
21
23
|
trackingSource?: string;
|
22
24
|
vouchId?: string;
|
23
25
|
templateId?: string;
|
26
|
+
// Index of the questions to include starting from 1
|
27
|
+
questions?: number[];
|
24
28
|
};
|
25
29
|
|
26
|
-
@customElement('vouch-embed')
|
27
|
-
class
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
@property({ type:
|
37
|
-
@property({ type: String })
|
38
|
-
|
39
|
-
@property({ type: Array })
|
40
|
-
|
41
|
-
@property({ type:
|
42
|
-
@property({ type:
|
30
|
+
@customElement('vouch-embed-player')
|
31
|
+
class PlayerEmbed extends LitElement {
|
32
|
+
static styles = [
|
33
|
+
css`
|
34
|
+
:host {
|
35
|
+
display: flex;
|
36
|
+
}
|
37
|
+
`
|
38
|
+
];
|
39
|
+
|
40
|
+
@property({ type: Object }) data: PlayerEmbedProps['data'];
|
41
|
+
@property({ type: String }) vouchId: PlayerEmbedProps['vouchId'];
|
42
|
+
@property({ type: String }) templateId: PlayerEmbedProps['templateId'];
|
43
|
+
@property({ type: Array }) questions: PlayerEmbedProps['questions'];
|
44
|
+
|
45
|
+
@property({ type: String }) env: PlayerEmbedProps['env'] = 'prod';
|
46
|
+
@property({ type: String }) apiKey: PlayerEmbedProps['apiKey'] = '';
|
47
|
+
@property({ type: Boolean }) disableTracking: PlayerEmbedProps['disableTracking'] = false;
|
48
|
+
@property({ type: String }) trackingSource: PlayerEmbedProps['trackingSource'] = 'embedded_player';
|
49
|
+
|
50
|
+
@property({ type: Array }) controls: PlayerEmbedProps['controls'];
|
51
|
+
@property({ type: String }) preload: PlayerEmbedProps['preload'] = 'auto';
|
52
|
+
@property({ type: Boolean }) autoplay: PlayerEmbedProps['autoplay'] = false;
|
53
|
+
@property({ type: Number }) aspectRatio: PlayerEmbedProps['aspectRatio'] = 0;
|
54
|
+
@property({ type: String }) language?: MediaPlayerProps['language'];
|
43
55
|
|
44
56
|
private eventController = new EventForwardController(this, [
|
45
57
|
'durationchange',
|
@@ -59,6 +71,7 @@ class Embed extends LitElement {
|
|
59
71
|
'waiting',
|
60
72
|
|
61
73
|
'video:loadeddata',
|
74
|
+
'video:seeking',
|
62
75
|
'video:seeked',
|
63
76
|
'video:play',
|
64
77
|
'video:playing',
|
@@ -73,17 +86,23 @@ class Embed extends LitElement {
|
|
73
86
|
// @ts-ignore
|
74
87
|
private _trackingController = new TrackingController(this);
|
75
88
|
|
76
|
-
@state() vouch:
|
89
|
+
@state() vouch: PlayerEmbedProps['data'];
|
77
90
|
@state() template: TemplateInstance | undefined;
|
78
91
|
|
79
92
|
get fetching() {
|
80
93
|
return this._fetcherController.fetching;
|
81
94
|
}
|
82
95
|
|
96
|
+
private _mediaPlayerRef = createRef<MediaPlayer>();
|
97
|
+
|
83
98
|
get waiting() {
|
84
99
|
return this._mediaPlayerRef.value?.waiting;
|
85
100
|
}
|
86
101
|
|
102
|
+
get initialised() {
|
103
|
+
return this._mediaPlayerRef.value?.initialised;
|
104
|
+
}
|
105
|
+
|
87
106
|
get seeking() {
|
88
107
|
return this._mediaPlayerRef.value?.seeking;
|
89
108
|
}
|
@@ -148,6 +167,10 @@ class Embed extends LitElement {
|
|
148
167
|
return this._mediaPlayerRef.value?.scenes ?? [];
|
149
168
|
}
|
150
169
|
|
170
|
+
get sceneConfig(): Scenes | null {
|
171
|
+
return this._mediaPlayerRef.value?.sceneConfig ?? null;
|
172
|
+
}
|
173
|
+
|
151
174
|
get videoState() {
|
152
175
|
return this._mediaPlayerRef.value?.videoState;
|
153
176
|
}
|
@@ -164,13 +187,43 @@ class Embed extends LitElement {
|
|
164
187
|
this._mediaPlayerRef.value?.pause();
|
165
188
|
}
|
166
189
|
|
190
|
+
reset(time = 0, play = false) {
|
191
|
+
this._mediaPlayerRef.value?.reset(time, play);
|
192
|
+
}
|
193
|
+
|
167
194
|
setScene(index: number) {
|
168
195
|
this._mediaPlayerRef.value?.setScene(index);
|
169
196
|
}
|
170
197
|
|
198
|
+
private _renderStyles() {
|
199
|
+
if (!this.aspectRatio) {
|
200
|
+
return html`
|
201
|
+
<style>
|
202
|
+
:host {
|
203
|
+
width: 100%;
|
204
|
+
height: 100%;
|
205
|
+
}
|
206
|
+
</style>
|
207
|
+
`;
|
208
|
+
}
|
209
|
+
|
210
|
+
if (typeof this.aspectRatio === 'number') {
|
211
|
+
return html`
|
212
|
+
<style>
|
213
|
+
:host {
|
214
|
+
aspect-ratio: ${this.aspectRatio};
|
215
|
+
}
|
216
|
+
</style>
|
217
|
+
`;
|
218
|
+
}
|
219
|
+
|
220
|
+
return null;
|
221
|
+
}
|
222
|
+
|
171
223
|
render() {
|
172
224
|
return html`
|
173
|
-
|
225
|
+
${this._renderStyles()}
|
226
|
+
<vmp-media-player
|
174
227
|
${ref(this._mediaPlayerRef)}
|
175
228
|
${this.eventController.register()}
|
176
229
|
?autoplay=${this.autoplay}
|
@@ -179,23 +232,24 @@ class Embed extends LitElement {
|
|
179
232
|
.template=${this.template}
|
180
233
|
aspectRatio=${ifDefined(this.aspectRatio)}
|
181
234
|
preload=${ifDefined(this.preload)}
|
235
|
+
language=${ifDefined(this.language)}
|
182
236
|
.controls=${this.controls}
|
183
|
-
></vmp-
|
237
|
+
></vmp-media-player>
|
184
238
|
`;
|
185
239
|
}
|
186
240
|
}
|
187
241
|
|
188
242
|
declare global {
|
189
243
|
interface HTMLElementTagNameMap {
|
190
|
-
'vouch-embed':
|
244
|
+
'vouch-embed-player': PlayerEmbed;
|
191
245
|
}
|
192
246
|
|
193
247
|
namespace JSX {
|
194
248
|
interface IntrinsicElements {
|
195
|
-
'vouch-embed':
|
249
|
+
'vouch-embed-player': PlayerEmbed;
|
196
250
|
}
|
197
251
|
}
|
198
252
|
}
|
199
253
|
|
200
|
-
export {
|
201
|
-
export type {
|
254
|
+
export { PlayerEmbed };
|
255
|
+
export type { PlayerEmbedProps };
|