@vouchfor/embeds 0.0.0-experiment.29a8d8f → 0.0.0-experiment.29ac67c

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vouchfor/embeds",
3
- "version": "0.0.0-experiment.29a8d8f",
3
+ "version": "0.0.0-experiment.29ac67c",
4
4
  "license": "MIT",
5
5
  "author": "Aaron Williams",
6
6
  "main": "dist/es/embeds.js",
@@ -8,8 +8,7 @@
8
8
  "type": "module",
9
9
  "types": "dist/es/index.d.ts",
10
10
  "exports": {
11
- ".": "./dist/es/embeds.js",
12
- "./embed": "./dist/iife/embeds.iife.js"
11
+ ".": "./dist/es/embeds.js"
13
12
  },
14
13
  "files": ["dist", "src"],
15
14
  "publishConfig": {
@@ -27,7 +26,7 @@
27
26
  "lint:staged": "lint-staged",
28
27
  "prepublishOnly": "yarn build",
29
28
  "size": "size-limit",
30
- "storybook": "yarn prebuild && storybook dev -p 6006",
29
+ "storybook": "yarn prebuild && storybook dev -p 6007",
31
30
  "prebuild": "yarn build:deps && yarn generate:manifest",
32
31
  "test": "true"
33
32
  },
@@ -36,10 +35,12 @@
36
35
  "**/*.{md,json,yml}": "prettier --write"
37
36
  },
38
37
  "dependencies": {
39
- "@vouchfor/media-player": "0.0.0-experiment.29a8d8f"
38
+ "@lit/task": "^1.0.0",
39
+ "@vouchfor/media-player": "0.0.0-experiment.29ac67c",
40
+ "uuid": "^9.0.1"
40
41
  },
41
42
  "peerDependencies": {
42
- "lit": "^2.7.5"
43
+ "lit": "^3.1.0"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@esm-bundle/chai": "^4.3.4-fix.0",
@@ -61,7 +62,7 @@
61
62
  "eslint": "^8.50.0",
62
63
  "eslint-plugin-import": "^2.28.1",
63
64
  "lint-staged": "^14.0.1",
64
- "lit": "^2.8.0",
65
+ "lit": "^3.1.0",
65
66
  "prettier": "^3.0.3",
66
67
  "react": "^18.2.0",
67
68
  "react-dom": "^18.2.0",
@@ -0,0 +1,79 @@
1
+ import { html } from 'lit';
2
+ import { ifDefined } from 'lit/directives/if-defined.js';
3
+
4
+ import type { EmbedProps } from './';
5
+ import type { Meta, StoryObj } from '@storybook/web-components';
6
+
7
+ import './';
8
+
9
+ type EmbedArgs = EmbedProps & {
10
+ showVouch?: boolean;
11
+ };
12
+
13
+ const _Embed = ({
14
+ vouchId,
15
+ templateId,
16
+ questions,
17
+ preload,
18
+ autoplay,
19
+ env,
20
+ apiKey,
21
+ controls,
22
+ aspectRatio
23
+ }: EmbedArgs) => {
24
+ return html`
25
+ <div style="height: 100vh">
26
+ <vouch-embed
27
+ env=${ifDefined(env)}
28
+ apiKey=${ifDefined(apiKey)}
29
+ vouchId=${ifDefined(vouchId)}
30
+ templateId=${ifDefined(templateId)}
31
+ .questions=${questions}
32
+ .controls=${controls}
33
+ ?autoplay=${autoplay}
34
+ preload=${ifDefined(preload)}
35
+ aspectRatio=${ifDefined(aspectRatio)}
36
+ @error=${console.log}
37
+ ></vouch-embed>
38
+ </div>
39
+ `;
40
+ };
41
+
42
+ // More on how to set up stories at: https://storybook.js.org/docs/web-components/writing-stories/introduction
43
+ const meta = {
44
+ title: 'Embed',
45
+ tags: ['autodocs'],
46
+ render: (args) => _Embed(args),
47
+ component: 'vouch-embed'
48
+ } satisfies Meta<EmbedProps>;
49
+
50
+ type Story = StoryObj<EmbedArgs>;
51
+
52
+ const Embed: Story = {
53
+ args: {
54
+ env: 'local',
55
+ apiKey: 'TVik9uTMgE-PD25UTHIS6gyl0hMBWC7AT4dkpdlLBT4VIfDWZJrQiCk6Ak7m1',
56
+ vouchId: '6JQEIPeStt',
57
+ templateId: '357fc118-e179-4171-9446-ff2b8e9d1b29',
58
+ questions: [],
59
+ aspectRatio: 0,
60
+ preload: 'none',
61
+ autoplay: false
62
+ },
63
+ argTypes: {
64
+ env: {
65
+ control: 'radio',
66
+ options: ['local', 'dev', 'staging', 'prod']
67
+ },
68
+ preload: {
69
+ control: 'radio',
70
+ options: ['auto', 'none']
71
+ }
72
+ },
73
+ parameters: {
74
+ layout: 'fullscreen'
75
+ }
76
+ };
77
+
78
+ export default meta;
79
+ export { Embed };
@@ -0,0 +1,47 @@
1
+ import { createRef, ref } from 'lit/directives/ref.js';
2
+
3
+ import type { Embed } from '..';
4
+ import type { ReactiveController, ReactiveControllerHost } from 'lit';
5
+ import type { Ref } from 'lit/directives/ref.js';
6
+
7
+ import { forwardEvent } from '~/utils/events';
8
+
9
+ type EmbedHost = ReactiveControllerHost & Embed;
10
+
11
+ class EventForwardController implements ReactiveController {
12
+ host: EmbedHost;
13
+
14
+ private _events: string[] = [];
15
+ private _cleanup: (() => void)[] = [];
16
+ private _forwardElementRef: Ref<HTMLElement> = createRef();
17
+
18
+ constructor(host: EmbedHost, events: string[]) {
19
+ this.host = host;
20
+ this._events = events;
21
+ host.addController(this);
22
+ }
23
+
24
+ register() {
25
+ return ref(this._forwardElementRef);
26
+ }
27
+
28
+ hostConnected() {
29
+ // Guaranteed to have the element ref in the RAF callback because of how the lit lifecycle works
30
+ requestAnimationFrame(() => {
31
+ this._events.forEach((event) => {
32
+ if (this._forwardElementRef.value) {
33
+ this._cleanup.push(forwardEvent(event, this._forwardElementRef.value, this.host));
34
+ }
35
+ });
36
+ });
37
+ }
38
+
39
+ hostDisconnected() {
40
+ this._cleanup.forEach((fn) => {
41
+ fn();
42
+ });
43
+ this._cleanup = [];
44
+ }
45
+ }
46
+
47
+ export { EventForwardController };
@@ -0,0 +1,152 @@
1
+ import { Task } from '@lit/task';
2
+ import { v4 as uuidv4 } from 'uuid';
3
+
4
+ import type { Embed, EmbedProps } from '..';
5
+ import type { ReactiveControllerHost } from 'lit';
6
+ import type { Environment } from '~/utils/env';
7
+
8
+ import { getEnvUrls } from '~/utils/env';
9
+
10
+ type EmbedHost = ReactiveControllerHost & Embed;
11
+
12
+ type FetchTaskDeps = [
13
+ EmbedProps['env'],
14
+ EmbedProps['apiKey'],
15
+ EmbedProps['data'],
16
+ EmbedProps['vouchId'],
17
+ EmbedProps['templateId']
18
+ ];
19
+
20
+ type FilterTaskDeps = [EmbedProps['data'], EmbedProps['questions']];
21
+
22
+ class FetcherController {
23
+ host: EmbedHost;
24
+
25
+ private _fetching = false;
26
+ private _vouch: EmbedProps['data'];
27
+
28
+ set fetching(value) {
29
+ if (this._fetching !== value) {
30
+ this._fetching = value;
31
+ this.host.requestUpdate();
32
+ }
33
+ }
34
+ get fetching() {
35
+ return this._fetching;
36
+ }
37
+
38
+ private getVouch = async (env: Environment, apiKey: string, vouchId: string) => {
39
+ const { embedApiUrl } = getEnvUrls(env);
40
+
41
+ const cacheCheck = uuidv4();
42
+ const res = await fetch(`${embedApiUrl}/vouches/${vouchId}`, {
43
+ method: 'GET',
44
+ headers: [
45
+ ['X-Api-Key', apiKey],
46
+ ['X-Cache-Check', cacheCheck]
47
+ ]
48
+ });
49
+
50
+ const vouch = await res.json();
51
+ this.host.dispatchEvent(new CustomEvent('vouch:loaded', { detail: vouch?.id }));
52
+
53
+ // HACK: we're currently using API Gateway caching on the embed API without any invalidation logic,
54
+ // so to ensure that the cache stays up to date, whenever we detect a cache hit we trigger another
55
+ // API call with the `Cache-Control` header which will re-fill the cache
56
+ const resCacheCheck = res?.headers?.get('X-Cache-Check');
57
+ if (resCacheCheck !== cacheCheck) {
58
+ fetch(`${embedApiUrl}/vouches/${vouchId}`, {
59
+ method: 'GET',
60
+ headers: [
61
+ ['X-Api-Key', apiKey],
62
+ ['Cache-Control', 'max-age=0']
63
+ ]
64
+ });
65
+ }
66
+
67
+ return vouch;
68
+ };
69
+
70
+ private getTemplate = async (env: Environment, apiKey: string, templateId: string) => {
71
+ const { embedApiUrl } = getEnvUrls(env);
72
+
73
+ const cacheCheck = uuidv4();
74
+ const res = await fetch(`${embedApiUrl}/templates/${templateId}`, {
75
+ method: 'GET',
76
+ headers: [
77
+ ['X-Api-Key', apiKey],
78
+ ['X-Cache-Check', cacheCheck]
79
+ ]
80
+ });
81
+ const template = await res.json();
82
+
83
+ // HACK: we're currently using API Gateway caching on the embed API without any invalidation logic,
84
+ // so to ensure that the cache stays up to date, whenever we detect a cache hit we trigger another
85
+ // API call with the `Cache-Control` header which will re-fill the cache
86
+ const resCacheCheck = res?.headers?.get('X-Cache-Check');
87
+ if (resCacheCheck !== cacheCheck) {
88
+ fetch(`${embedApiUrl}/templates/${templateId}`, {
89
+ method: 'GET',
90
+ headers: [
91
+ ['X-Api-Key', apiKey],
92
+ ['Cache-Control', 'max-age=0']
93
+ ]
94
+ });
95
+ }
96
+
97
+ return template;
98
+ };
99
+
100
+ constructor(host: EmbedHost) {
101
+ this.host = host;
102
+ new Task<FetchTaskDeps, void>(
103
+ this.host,
104
+ async ([env, apiKey, data, vouchId, templateId]: FetchTaskDeps) => {
105
+ try {
106
+ host.vouch = undefined;
107
+ host.template = undefined;
108
+
109
+ if (data) {
110
+ let template;
111
+ if (templateId) {
112
+ this.fetching = true;
113
+ template = await this.getTemplate(env, apiKey, templateId);
114
+ }
115
+ this._vouch = data;
116
+ host.template = template ?? data?.settings?.template?.instance;
117
+ } else if (vouchId) {
118
+ this.fetching = true;
119
+
120
+ const [vouch, template] = await Promise.all([
121
+ this.getVouch(env, apiKey, vouchId),
122
+ templateId ? this.getTemplate(env, apiKey, templateId) : null
123
+ ]);
124
+ this._vouch = vouch;
125
+ host.template = template ?? vouch?.settings?.template?.instance;
126
+ }
127
+ } finally {
128
+ this.fetching = false;
129
+ }
130
+ },
131
+ () => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
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
+ );
149
+ }
150
+ }
151
+
152
+ export { FetcherController };
@@ -0,0 +1,295 @@
1
+ import { TEMPLATE_VERSION } from '@vouchfor/canvas-video';
2
+ import { v4 as uuidv4 } from 'uuid';
3
+
4
+ import type { Embed } from '..';
5
+ import type { VideoEventDetail } from '@vouchfor/media-player';
6
+ import type { ReactiveController, ReactiveControllerHost } from 'lit';
7
+
8
+ import packageJson from '../../../../package.json';
9
+ import { getEnvUrls } from '~/utils/env';
10
+
11
+ const MINIMUM_SEND_THRESHOLD = 1;
12
+
13
+ type EmbedHost = ReactiveControllerHost & Embed;
14
+
15
+ type TrackingEvent = 'VOUCH_LOADED' | 'VOUCH_RESPONSE_VIEWED' | 'VIDEO_PLAYED' | 'VIDEO_STREAMED';
16
+ type TrackingPayload = {
17
+ vouchId?: string;
18
+ answerId?: string;
19
+ streamStart?: number;
20
+ streamEnd?: number;
21
+ };
22
+
23
+ type TimeMap = {
24
+ [key: string]: number;
25
+ };
26
+
27
+ type BooleanMap = {
28
+ [key: string]: boolean;
29
+ };
30
+
31
+ class TrackingController implements ReactiveController {
32
+ host: EmbedHost;
33
+
34
+ private _tabId: string | undefined = undefined;
35
+ private _clientId: string | undefined = undefined;
36
+ private _visitorId: string | undefined = undefined;
37
+
38
+ private _hasPlayed = false;
39
+ private _hasLoaded: BooleanMap = {};
40
+ private _answersViewed: BooleanMap = {};
41
+ private _streamStartTime: TimeMap = {};
42
+ private _streamLatestTime: TimeMap = {};
43
+ private _currentlyPlayingVideo: VideoEventDetail | null = null;
44
+
45
+ constructor(host: EmbedHost) {
46
+ this.host = host;
47
+ host.addController(this);
48
+ }
49
+
50
+ private _findVouchId(payload?: TrackingPayload) {
51
+ if (payload && 'vouchId' in payload) {
52
+ return payload.vouchId;
53
+ }
54
+ if (this.host.vouch) {
55
+ return this.host.vouch.id;
56
+ }
57
+ return null;
58
+ }
59
+
60
+ private _createVisitor = (visitorId: string) => {
61
+ const { publicApiUrl } = getEnvUrls(this.host.env);
62
+ window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
63
+ navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
64
+ return visitorId;
65
+ };
66
+
67
+ private _getUids() {
68
+ if (typeof window === 'undefined') {
69
+ return {
70
+ client: null,
71
+ tab: null,
72
+ request: uuidv4()
73
+ };
74
+ }
75
+
76
+ // Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
77
+ const visitorId =
78
+ this._visitorId || window.localStorage?.getItem?.('vouch-uid-visitor') || this._createVisitor(uuidv4());
79
+ // Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
80
+ const clientId = this._clientId || window.localStorage?.getItem?.('vouch-uid-client') || uuidv4();
81
+ // Persisted in session storage, so we can search for everything the user has done in a specific tab
82
+ const tabId = this._tabId || window.sessionStorage?.getItem?.('vouch-uid-tab') || uuidv4();
83
+ // Not persisted, allows us to search for any logs related to a single FE request
84
+ // E.g. BE should pass this request ID through all other services to be able to group logs
85
+ const requestId = uuidv4();
86
+
87
+ // Cache and persist uids
88
+ if (visitorId !== this._visitorId) {
89
+ this._visitorId = visitorId;
90
+ window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
91
+ }
92
+
93
+ if (clientId !== this._clientId) {
94
+ this._clientId = clientId;
95
+ window.localStorage?.setItem?.('vouch-uid-client', clientId);
96
+ }
97
+
98
+ if (tabId !== this._tabId) {
99
+ this._tabId = tabId;
100
+ window.sessionStorage?.setItem?.('vouch-uid-tab', tabId);
101
+ }
102
+
103
+ return {
104
+ client: clientId,
105
+ tab: tabId,
106
+ request: requestId,
107
+ visitor: visitorId
108
+ };
109
+ }
110
+
111
+ private _getReportingMetadata = () => {
112
+ const [country, region] = Intl.DateTimeFormat().resolvedOptions().timeZone?.split?.('/') ?? [];
113
+
114
+ const utmParams: any = {};
115
+ [...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
116
+ if (/utm/.test(key)) {
117
+ const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
118
+ utmParams[param] = value;
119
+ }
120
+ });
121
+
122
+ return {
123
+ source: this.host.trackingSource,
124
+ time: new Date(),
125
+ region,
126
+ country,
127
+ screenHeight: window.screen.height,
128
+ screenWidth: window.screen.width,
129
+ referrer: document.referrer,
130
+ currentUrl: location.href,
131
+ embedType: 'media-player-embed',
132
+ embedVersion: packageJson.version,
133
+ templateVersion: TEMPLATE_VERSION,
134
+ ...utmParams
135
+ };
136
+ };
137
+
138
+ private _sendTrackingEvent = (event: TrackingEvent, payload?: TrackingPayload) => {
139
+ const vouchId = this._findVouchId(payload);
140
+
141
+ if (!vouchId || this.host.disableTracking) {
142
+ return;
143
+ }
144
+
145
+ const { publicApiUrl } = getEnvUrls(this.host.env);
146
+ const { client, tab, request, visitor } = this._getUids();
147
+
148
+ navigator.sendBeacon(
149
+ `${publicApiUrl}/api/v2/events`,
150
+ JSON.stringify({
151
+ event,
152
+ payload: {
153
+ ...payload,
154
+ vouchId
155
+ },
156
+ context: {
157
+ 'x-uid-client': client,
158
+ 'x-uid-tab': tab,
159
+ 'x-uid-request': request,
160
+ 'x-uid-visitor': visitor,
161
+ 'x-reporting-metadata': this._getReportingMetadata()
162
+ }
163
+ })
164
+ );
165
+ };
166
+
167
+ private _streamEnded = () => {
168
+ if (this._currentlyPlayingVideo) {
169
+ const { id, key } = this._currentlyPlayingVideo;
170
+ // Don't send a tracking event when seeking backwards
171
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
172
+ // Send a video streamed event any time the stream ends to capture the time between starting
173
+ // the video and the video stopping for any reason (pausing, deleting the embed node or closing the browser)
174
+ this._sendTrackingEvent('VIDEO_STREAMED', {
175
+ answerId: id,
176
+ streamStart: this._streamStartTime[key],
177
+ streamEnd: this._streamLatestTime[key]
178
+ });
179
+ }
180
+
181
+ // Make sure these events are only sent once by deleting the start and latest times
182
+ delete this._streamStartTime[key];
183
+ delete this._streamLatestTime[key];
184
+ }
185
+ };
186
+
187
+ private _handleVouchLoaded = ({ detail: vouchId }: CustomEvent<string>) => {
188
+ if (!vouchId) {
189
+ return;
190
+ }
191
+
192
+ // Only send loaded event once per session
193
+ if (!this._hasLoaded[vouchId]) {
194
+ this._sendTrackingEvent('VOUCH_LOADED', { vouchId });
195
+ this._hasLoaded[vouchId] = true;
196
+ }
197
+ };
198
+
199
+ private _handlePlay = () => {
200
+ // Only send the video played event once per session
201
+ if (!this._hasPlayed) {
202
+ this._sendTrackingEvent('VIDEO_PLAYED', {
203
+ streamStart: this.host.currentTime
204
+ });
205
+ this._hasPlayed = true;
206
+ }
207
+ };
208
+
209
+ private _handleVideoPlay = ({ detail: { id, key, node } }: CustomEvent<VideoEventDetail>) => {
210
+ // Only increment play count once per session
211
+ if (!this._answersViewed[key]) {
212
+ this._sendTrackingEvent('VOUCH_RESPONSE_VIEWED', {
213
+ answerId: id
214
+ });
215
+ this._answersViewed[key] = true;
216
+ }
217
+
218
+ if (!this._streamStartTime[key]) {
219
+ this._streamStartTime[key] = node.currentTime;
220
+ this._streamLatestTime[key] = node.currentTime;
221
+ }
222
+ };
223
+
224
+ private _handleVideoTimeUpdate = ({ detail: { id, key, node } }: CustomEvent<VideoEventDetail>) => {
225
+ if (
226
+ // We only want to count any time that the video is actually playing
227
+ !this.host.paused &&
228
+ // Only update the latest time if this event fires for the currently active video
229
+ id === this.host.scene?.video?.id
230
+ ) {
231
+ this._currentlyPlayingVideo = { id, key, node };
232
+ this._streamLatestTime[key] = node.currentTime;
233
+ }
234
+ };
235
+
236
+ private _handleVideoPause = ({ detail: { id, key } }: CustomEvent<VideoEventDetail>) => {
237
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
238
+ this._sendTrackingEvent('VIDEO_STREAMED', {
239
+ answerId: id,
240
+ streamStart: this._streamStartTime[key],
241
+ streamEnd: this._streamLatestTime[key]
242
+ });
243
+ }
244
+ delete this._streamStartTime[key];
245
+ delete this._streamLatestTime[key];
246
+ };
247
+
248
+ private _pageUnloading = () => {
249
+ this._streamEnded();
250
+ // This will try to send the same stream event again so we delete the start and latest
251
+ // time in stream ended so that there is no times to send and the pause event does nothing
252
+ this.host.pause();
253
+ };
254
+
255
+ private _handleVisibilityChange = () => {
256
+ if (document.visibilityState === 'hidden') {
257
+ this._pageUnloading();
258
+ }
259
+ };
260
+
261
+ private _handlePageHide = () => {
262
+ this._pageUnloading();
263
+ };
264
+
265
+ hostConnected() {
266
+ requestAnimationFrame(() => {
267
+ if ('onvisibilitychange' in document) {
268
+ document.addEventListener('visibilitychange', this._handleVisibilityChange);
269
+ } else {
270
+ window.addEventListener('pagehide', this._handlePageHide);
271
+ }
272
+ this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
273
+ this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
274
+ this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
275
+ this.host.mediaPlayer?.addEventListener('video:pause', this._handleVideoPause);
276
+ this.host.mediaPlayer?.addEventListener('video:timeupdate', this._handleVideoTimeUpdate);
277
+ });
278
+ }
279
+
280
+ hostDisconnected() {
281
+ this._streamEnded();
282
+ if ('onvisibilitychange' in document) {
283
+ document.removeEventListener('visibilitychange', this._handleVisibilityChange);
284
+ } else {
285
+ window.removeEventListener('pagehide', this._handlePageHide);
286
+ }
287
+ this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
288
+ this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
289
+ this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
290
+ this.host.mediaPlayer?.removeEventListener('video:pause', this._handleVideoPause);
291
+ this.host.mediaPlayer?.removeEventListener('video:timeupdate', this._handleVideoTimeUpdate);
292
+ }
293
+ }
294
+
295
+ export { TrackingController };