@vouchfor/embeds 0.0.0-experiment.bdda3d0 → 0.0.0-experiment.beea728

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vouchfor/embeds",
3
- "version": "0.0.0-experiment.bdda3d0",
3
+ "version": "0.0.0-experiment.beea728",
4
4
  "license": "MIT",
5
5
  "author": "Aaron Williams",
6
6
  "main": "dist/es/embeds.js",
@@ -26,7 +26,7 @@
26
26
  "lint:staged": "lint-staged",
27
27
  "prepublishOnly": "yarn build",
28
28
  "size": "size-limit",
29
- "storybook": "yarn prebuild && storybook dev -p 6006",
29
+ "storybook": "yarn prebuild && storybook dev -p 6007",
30
30
  "prebuild": "yarn build:deps && yarn generate:manifest",
31
31
  "test": "true"
32
32
  },
@@ -35,12 +35,12 @@
35
35
  "**/*.{md,json,yml}": "prettier --write"
36
36
  },
37
37
  "dependencies": {
38
- "@lit/task": "1.0.0",
39
- "@vouchfor/media-player": "0.0.0-experiment.bdda3d0",
38
+ "@lit/task": "^1.0.0",
39
+ "@vouchfor/media-player": "0.0.0-experiment.beea728",
40
40
  "uuid": "^9.0.1"
41
41
  },
42
42
  "peerDependencies": {
43
- "lit": "^3.0.2"
43
+ "lit": "^3.1.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4-fix.0",
@@ -62,7 +62,7 @@
62
62
  "eslint": "^8.50.0",
63
63
  "eslint-plugin-import": "^2.28.1",
64
64
  "lint-staged": "^14.0.1",
65
- "lit": "^2.8.0",
65
+ "lit": "^3.1.0",
66
66
  "prettier": "^3.0.3",
67
67
  "react": "^18.2.0",
68
68
  "react-dom": "^18.2.0",
@@ -10,7 +10,17 @@ type EmbedArgs = EmbedProps & {
10
10
  showVouch?: boolean;
11
11
  };
12
12
 
13
- const _Embed = ({ vouchId, templateId, preload, autoplay, env, apiKey, controls, aspectRatio }: EmbedArgs) => {
13
+ const _Embed = ({
14
+ vouchId,
15
+ templateId,
16
+ questions,
17
+ preload,
18
+ autoplay,
19
+ env,
20
+ apiKey,
21
+ controls,
22
+ aspectRatio
23
+ }: EmbedArgs) => {
14
24
  return html`
15
25
  <div style="height: 100vh">
16
26
  <vouch-embed
@@ -18,10 +28,12 @@ const _Embed = ({ vouchId, templateId, preload, autoplay, env, apiKey, controls,
18
28
  apiKey=${ifDefined(apiKey)}
19
29
  vouchId=${ifDefined(vouchId)}
20
30
  templateId=${ifDefined(templateId)}
31
+ .questions=${questions}
21
32
  .controls=${controls}
22
33
  ?autoplay=${autoplay}
23
34
  preload=${ifDefined(preload)}
24
35
  aspectRatio=${ifDefined(aspectRatio)}
36
+ @error=${console.log}
25
37
  ></vouch-embed>
26
38
  </div>
27
39
  `;
@@ -39,10 +51,11 @@ type Story = StoryObj<EmbedArgs>;
39
51
 
40
52
  const Embed: Story = {
41
53
  args: {
42
- env: 'dev',
54
+ env: 'local',
43
55
  apiKey: 'TVik9uTMgE-PD25UTHIS6gyl0hMBWC7AT4dkpdlLBT4VIfDWZJrQiCk6Ak7m1',
44
56
  vouchId: '6JQEIPeStt',
45
- templateId: '7d0113f7-3f9a-4bdd-97e3-07ee6eec5730',
57
+ templateId: '357fc118-e179-4171-9446-ff2b8e9d1b29',
58
+ questions: [],
46
59
  aspectRatio: 0,
47
60
  preload: 'none',
48
61
  autoplay: false
@@ -50,7 +63,7 @@ const Embed: Story = {
50
63
  argTypes: {
51
64
  env: {
52
65
  control: 'radio',
53
- options: ['prod', 'staging', 'dev']
66
+ options: ['local', 'dev', 'staging', 'prod']
54
67
  },
55
68
  preload: {
56
69
  control: 'radio',
@@ -1,7 +1,7 @@
1
1
  import { Task } from '@lit/task';
2
+ import { v4 as uuidv4 } from 'uuid';
2
3
 
3
4
  import type { Embed, EmbedProps } from '..';
4
- import type { TemplateInstance } from '@vouchfor/canvas-video';
5
5
  import type { ReactiveControllerHost } from 'lit';
6
6
  import type { Environment } from '~/utils/env';
7
7
 
@@ -9,7 +9,7 @@ import { getEnvUrls } from '~/utils/env';
9
9
 
10
10
  type EmbedHost = ReactiveControllerHost & Embed;
11
11
 
12
- type TaskDeps = [
12
+ type FetchTaskDeps = [
13
13
  EmbedProps['env'],
14
14
  EmbedProps['apiKey'],
15
15
  EmbedProps['data'],
@@ -17,12 +17,13 @@ type TaskDeps = [
17
17
  EmbedProps['templateId']
18
18
  ];
19
19
 
20
+ type FilterTaskDeps = [EmbedProps['data'], EmbedProps['questions']];
21
+
20
22
  class FetcherController {
21
23
  host: EmbedHost;
22
24
 
23
25
  private _fetching = false;
24
- private _vouch?: EmbedProps['data'];
25
- private _template?: TemplateInstance;
26
+ private _vouch: EmbedProps['data'];
26
27
 
27
28
  set fetching(value) {
28
29
  if (this._fetching !== value) {
@@ -34,74 +35,94 @@ class FetcherController {
34
35
  return this._fetching;
35
36
  }
36
37
 
37
- set vouch(value) {
38
- if (this._vouch !== value) {
39
- this._vouch = value;
40
- this.host.requestUpdate();
41
- }
42
- }
43
- get vouch() {
44
- return this._vouch;
45
- }
46
-
47
- set template(value) {
48
- if (this._template !== value) {
49
- this._template = value;
50
- this.host.requestUpdate();
51
- }
52
- }
53
- get template() {
54
- return this._template;
55
- }
56
-
57
- private async getVouch(env: Environment, apiKey: string, vouchId?: string) {
38
+ private getVouch = async (env: Environment, apiKey: string, vouchId: string) => {
58
39
  const { embedApiUrl } = getEnvUrls(env);
59
40
 
60
- if (vouchId) {
61
- return fetch(`${embedApiUrl}/vouches/${vouchId}`, {
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}`, {
62
59
  method: 'GET',
63
- headers: [['X-Api-Key', apiKey]]
64
- }).then((response) => response.json());
60
+ headers: [
61
+ ['X-Api-Key', apiKey],
62
+ ['Cache-Control', 'max-age=0']
63
+ ]
64
+ });
65
65
  }
66
66
 
67
- return null;
68
- }
67
+ return vouch;
68
+ };
69
69
 
70
- private async getTemplate(env: Environment, apiKey: string, templateId?: string) {
70
+ private getTemplate = async (env: Environment, apiKey: string, templateId: string) => {
71
71
  const { embedApiUrl } = getEnvUrls(env);
72
72
 
73
- if (templateId) {
74
- return fetch(`${embedApiUrl}/templates/${templateId}`, {
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}`, {
75
89
  method: 'GET',
76
- headers: [['X-Api-Key', apiKey]]
77
- }).then((response) => response.json());
90
+ headers: [
91
+ ['X-Api-Key', apiKey],
92
+ ['Cache-Control', 'max-age=0']
93
+ ]
94
+ });
78
95
  }
79
96
 
80
- return null;
81
- }
97
+ return template;
98
+ };
82
99
 
83
100
  constructor(host: EmbedHost) {
84
101
  this.host = host;
85
- new Task<TaskDeps, void>(
102
+ new Task<FetchTaskDeps, void>(
86
103
  this.host,
87
- async ([env, apiKey, data, vouchId, templateId]: TaskDeps) => {
104
+ async ([env, apiKey, data, vouchId, templateId]: FetchTaskDeps) => {
88
105
  try {
89
- this.vouch = undefined;
90
- this.template = undefined;
106
+ host.vouch = undefined;
107
+ host.template = undefined;
91
108
 
92
109
  if (data) {
93
- const template = await this.getTemplate(env, apiKey, templateId);
94
- this.vouch = data;
95
- this.template = data?.settings?.template?.instance ?? template;
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;
96
117
  } else if (vouchId) {
97
118
  this.fetching = true;
98
119
 
99
120
  const [vouch, template] = await Promise.all([
100
121
  this.getVouch(env, apiKey, vouchId),
101
- this.getTemplate(env, apiKey, templateId)
122
+ templateId ? this.getTemplate(env, apiKey, templateId) : null
102
123
  ]);
103
- this.vouch = vouch;
104
- this.template = vouch?.settings?.template?.instance ?? template;
124
+ this._vouch = vouch;
125
+ host.template = template ?? vouch?.settings?.template?.instance;
105
126
  }
106
127
  } finally {
107
128
  this.fetching = false;
@@ -109,6 +130,22 @@ class FetcherController {
109
130
  },
110
131
  () => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
111
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
+ );
112
149
  }
113
150
  }
114
151
 
@@ -4,15 +4,16 @@ import type { Embed } from '..';
4
4
  import type { VideoEventDetail } from '@vouchfor/media-player';
5
5
  import type { ReactiveController, ReactiveControllerHost } from 'lit';
6
6
 
7
+ import packageJson from '../../../../package.json';
7
8
  import { getEnvUrls } from '~/utils/env';
8
9
 
9
- const STREAMED_THROTTLE = 2000;
10
+ const MINIMUM_SEND_THRESHOLD = 1;
10
11
 
11
12
  type EmbedHost = ReactiveControllerHost & Embed;
12
13
 
13
14
  type TrackingEvent = 'VOUCH_LOADED' | 'VOUCH_RESPONSE_VIEWED' | 'VIDEO_PLAYED' | 'VIDEO_STREAMED';
14
15
  type TrackingPayload = {
15
- vouchId: string;
16
+ vouchId?: string;
16
17
  answerId?: string;
17
18
  streamStart?: number;
18
19
  streamEnd?: number;
@@ -36,21 +37,23 @@ class TrackingController implements ReactiveController {
36
37
  private _hasPlayed = false;
37
38
  private _hasLoaded: BooleanMap = {};
38
39
  private _answersViewed: BooleanMap = {};
39
- private _streamedTime: TimeMap = {};
40
- private _streamedPrevTimestamp: TimeMap = {};
40
+ private _streamStartTime: TimeMap = {};
41
+ private _streamLatestTime: TimeMap = {};
42
+ private _currentlyPlayingVideo: VideoEventDetail | null = null;
41
43
 
42
44
  constructor(host: EmbedHost) {
43
45
  this.host = host;
44
46
  host.addController(this);
45
47
  }
46
48
 
47
- private _findVouchId() {
48
- if (this.host.data) {
49
- if ('uuid' in this.host.data) {
50
- return this.host.data.uuid;
51
- }
52
- return this.host.data.id;
49
+ private _findVouchId(payload?: TrackingPayload) {
50
+ if (payload && 'vouchId' in payload) {
51
+ return payload.vouchId;
52
+ }
53
+ if (this.host.vouch) {
54
+ return this.host.vouch.id;
53
55
  }
56
+ return null;
54
57
  }
55
58
 
56
59
  private _createVisitor = (visitorId: string) => {
@@ -116,7 +119,7 @@ class TrackingController implements ReactiveController {
116
119
  });
117
120
 
118
121
  return {
119
- source: 'media_player',
122
+ source: this.host.trackingSource,
120
123
  time: new Date(),
121
124
  region,
122
125
  country,
@@ -128,27 +131,56 @@ class TrackingController implements ReactiveController {
128
131
  };
129
132
  };
130
133
 
131
- private _sendTrackingEvent = (event: TrackingEvent, payload: TrackingPayload) => {
134
+ private _sendTrackingEvent = (event: TrackingEvent, payload?: TrackingPayload) => {
135
+ const vouchId = this._findVouchId(payload);
136
+
137
+ if (!vouchId || this.host.disableTracking) {
138
+ return;
139
+ }
140
+
132
141
  const { publicApiUrl } = getEnvUrls(this.host.env);
133
142
  const { client, tab, request, visitor } = this._getUids();
134
143
 
135
- // Don't send tracking if we don't have a source
136
144
  navigator.sendBeacon(
137
- `${publicApiUrl}/api/events`,
145
+ `${publicApiUrl}/api/v2/events`,
138
146
  JSON.stringify({
139
147
  event,
140
- payload,
148
+ payload: {
149
+ ...payload,
150
+ vouchId
151
+ },
141
152
  context: {
142
153
  'x-uid-client': client,
143
154
  'x-uid-tab': tab,
144
155
  'x-uid-request': request,
145
156
  'x-uid-visitor': visitor,
146
- 'x-reporting-metadata': this._getReportingMetadata()
157
+ 'x-reporting-metadata': this._getReportingMetadata(),
158
+ 'x-embeds-version': packageJson.version
147
159
  }
148
160
  })
149
161
  );
150
162
  };
151
163
 
164
+ private _streamEnded = () => {
165
+ if (this._currentlyPlayingVideo) {
166
+ const { id, key } = this._currentlyPlayingVideo;
167
+ // Don't send a tracking event when seeking backwards
168
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
169
+ // Send a video streamed event any time the stream ends to capture the time between starting
170
+ // the video and the video stopping for any reason (pausing, deleting the embed node or closing the browser)
171
+ this._sendTrackingEvent('VIDEO_STREAMED', {
172
+ answerId: id,
173
+ streamStart: this._streamStartTime[key],
174
+ streamEnd: this._streamLatestTime[key]
175
+ });
176
+ }
177
+
178
+ // Make sure these events are only sent once by deleting the start and latest times
179
+ delete this._streamStartTime[key];
180
+ delete this._streamLatestTime[key];
181
+ }
182
+ };
183
+
152
184
  private _handleVouchLoaded = ({ detail: vouchId }: CustomEvent<string>) => {
153
185
  if (!vouchId) {
154
186
  return;
@@ -156,91 +188,84 @@ class TrackingController implements ReactiveController {
156
188
 
157
189
  // Only send loaded event once per session
158
190
  if (!this._hasLoaded[vouchId]) {
159
- this._sendTrackingEvent('VOUCH_LOADED', {
160
- vouchId
161
- });
191
+ this._sendTrackingEvent('VOUCH_LOADED', { vouchId });
162
192
  this._hasLoaded[vouchId] = true;
163
193
  }
164
194
  };
165
195
 
166
196
  private _handlePlay = () => {
167
- const vouchId = this._findVouchId();
168
-
169
- if (!vouchId) {
170
- return;
171
- }
172
-
173
197
  // Only send the video played event once per session
174
198
  if (!this._hasPlayed) {
175
199
  this._sendTrackingEvent('VIDEO_PLAYED', {
176
- vouchId,
177
200
  streamStart: this.host.currentTime
178
201
  });
179
202
  this._hasPlayed = true;
180
203
  }
181
204
  };
182
205
 
183
- private _handleVideoPlay = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
184
- const vouchId = this._findVouchId();
185
- if (!vouchId) {
186
- return;
187
- }
206
+ private _handleVideoPlay = ({ detail: { id, key, node } }: CustomEvent<VideoEventDetail>) => {
188
207
  // Only increment play count once per session
189
- if (!this._answersViewed[id]) {
208
+ if (!this._answersViewed[key]) {
190
209
  this._sendTrackingEvent('VOUCH_RESPONSE_VIEWED', {
191
- vouchId,
192
210
  answerId: id
193
211
  });
194
- this._answersViewed[id] = true;
212
+ this._answersViewed[key] = true;
195
213
  }
196
- this._streamedTime[id] = node.currentTime;
197
- this._streamedPrevTimestamp[id] = Date.now();
198
- };
199
214
 
200
- private _handleVideoTimeUpdate = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
201
- const vouchId = this._findVouchId();
202
- if (!vouchId) {
203
- return;
215
+ if (!this._streamStartTime[key]) {
216
+ this._streamStartTime[key] = node.currentTime;
217
+ this._streamLatestTime[key] = node.currentTime;
204
218
  }
205
- const currentTimestamp = Date.now();
219
+ };
220
+
221
+ private _handleVideoTimeUpdate = ({ detail: { id, key, node } }: CustomEvent<VideoEventDetail>) => {
206
222
  if (
223
+ // We only want to count any time that the video is actually playing
207
224
  !this.host.paused &&
208
- // Only fire the video seeked event when this video is the active one
209
- id === this.host.scene?.video?.id &&
210
- // Throttle the frequency that we send streamed events while playing
211
- currentTimestamp - this._streamedPrevTimestamp[id] > STREAMED_THROTTLE
225
+ // Only update the latest time if this event fires for the currently active video
226
+ id === this.host.scene?.video?.id
212
227
  ) {
228
+ this._currentlyPlayingVideo = { id, key, node };
229
+ this._streamLatestTime[key] = node.currentTime;
230
+ }
231
+ };
232
+
233
+ private _handleVideoPause = ({ detail: { id, key } }: CustomEvent<VideoEventDetail>) => {
234
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
213
235
  this._sendTrackingEvent('VIDEO_STREAMED', {
214
- vouchId,
215
236
  answerId: id,
216
- streamStart: this._streamedTime[id],
217
- streamEnd: node.currentTime
237
+ streamStart: this._streamStartTime[key],
238
+ streamEnd: this._streamLatestTime[key]
218
239
  });
219
- this._streamedTime[id] = node.currentTime;
220
- this._streamedPrevTimestamp[id] = currentTimestamp;
221
240
  }
241
+ delete this._streamStartTime[key];
242
+ delete this._streamLatestTime[key];
222
243
  };
223
244
 
224
- private _handleVideoPause = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
225
- const vouchId = this._findVouchId();
226
- if (!vouchId) {
227
- return;
245
+ private _pageUnloading = () => {
246
+ this._streamEnded();
247
+ // This will try to send the same stream event again so we delete the start and latest
248
+ // time in stream ended so that there is no times to send and the pause event does nothing
249
+ this.host.pause();
250
+ };
251
+
252
+ private _handleVisibilityChange = () => {
253
+ if (document.visibilityState === 'hidden') {
254
+ this._pageUnloading();
228
255
  }
229
- // Send a video streamed event any time the video pauses then reset the streamed state
230
- // We do this to capture the last bit of time that the video was played between the previous
231
- // stream event and the video being paused manually or stopping because it ended
232
- this._sendTrackingEvent('VIDEO_STREAMED', {
233
- vouchId,
234
- answerId: id,
235
- streamStart: this._streamedTime[id],
236
- streamEnd: node.currentTime
237
- });
238
- delete this._streamedTime[id];
239
- delete this._streamedPrevTimestamp[id];
256
+ };
257
+
258
+ private _handlePageHide = () => {
259
+ this._pageUnloading();
240
260
  };
241
261
 
242
262
  hostConnected() {
243
263
  requestAnimationFrame(() => {
264
+ if ('onvisibilitychange' in document) {
265
+ document.addEventListener('visibilitychange', this._handleVisibilityChange);
266
+ } else {
267
+ window.addEventListener('pagehide', this._handlePageHide);
268
+ }
244
269
  this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
245
270
  this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
246
271
  this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
@@ -250,6 +275,12 @@ class TrackingController implements ReactiveController {
250
275
  }
251
276
 
252
277
  hostDisconnected() {
278
+ this._streamEnded();
279
+ if ('onvisibilitychange' in document) {
280
+ document.removeEventListener('visibilitychange', this._handleVisibilityChange);
281
+ } else {
282
+ window.removeEventListener('pagehide', this._handlePageHide);
283
+ }
253
284
  this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
254
285
  this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
255
286
  this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
@@ -1,9 +1,9 @@
1
1
  import { html, LitElement } from 'lit';
2
- import { customElement, property } from 'lit/decorators.js';
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
8
  import type { Ref } from 'lit/directives/ref.js';
9
9
  import type { Environment } from '~/utils/env';
@@ -17,20 +17,27 @@ import '@vouchfor/media-player';
17
17
  type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
18
18
  env: Environment;
19
19
  apiKey: string;
20
+ disableTracking?: boolean;
21
+ trackingSource?: string;
20
22
  vouchId?: string;
21
23
  templateId?: string;
24
+ // Index of the questions to include starting from 1
25
+ questions?: number[];
22
26
  };
23
27
 
24
28
  @customElement('vouch-embed')
25
29
  class Embed extends LitElement {
26
30
  private _mediaPlayerRef: Ref<MediaPlayer> = createRef();
27
31
 
28
- @property({ type: Object, attribute: 'data' }) data: EmbedProps['data'];
32
+ @property({ type: Object }) data: EmbedProps['data'];
29
33
  @property({ type: String }) vouchId: EmbedProps['vouchId'];
30
34
  @property({ type: String }) templateId: EmbedProps['templateId'];
35
+ @property({ type: Array }) questions: EmbedProps['questions'];
31
36
 
32
37
  @property({ type: String }) env: EmbedProps['env'] = 'prod';
33
38
  @property({ type: String }) apiKey: EmbedProps['apiKey'] = '';
39
+ @property({ type: Boolean }) disableTracking: EmbedProps['disableTracking'] = false;
40
+ @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'embed';
34
41
 
35
42
  @property({ type: Array }) controls: EmbedProps['controls'];
36
43
  @property({ type: String }) preload: EmbedProps['preload'] = 'auto';
@@ -55,6 +62,7 @@ class Embed extends LitElement {
55
62
  'waiting',
56
63
 
57
64
  'video:loadeddata',
65
+ 'video:seeking',
58
66
  'video:seeked',
59
67
  'video:play',
60
68
  'video:playing',
@@ -69,13 +77,8 @@ class Embed extends LitElement {
69
77
  // @ts-ignore
70
78
  private _trackingController = new TrackingController(this);
71
79
 
72
- get vouch() {
73
- return this._fetcherController.vouch;
74
- }
75
-
76
- get template(): TemplateInstance | undefined {
77
- return this._fetcherController.template;
78
- }
80
+ @state() vouch: EmbedProps['data'];
81
+ @state() template: TemplateInstance | undefined;
79
82
 
80
83
  get fetching() {
81
84
  return this._fetcherController.fetching;
@@ -149,6 +152,10 @@ class Embed extends LitElement {
149
152
  return this._mediaPlayerRef.value?.scenes ?? [];
150
153
  }
151
154
 
155
+ get sceneConfig(): Scenes | null {
156
+ return this._mediaPlayerRef.value?.sceneConfig ?? null;
157
+ }
158
+
152
159
  get videoState() {
153
160
  return this._mediaPlayerRef.value?.videoState;
154
161
  }