@vouchfor/embeds 0.0.0-experiment.eb79200 → 0.0.0-experiment.f4df018

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.eb79200",
3
+ "version": "0.0.0-experiment.f4df018",
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.eb79200",
38
+ "@lit/task": "^1.0.0",
39
+ "@vouchfor/media-player": "0.0.0-experiment.f4df018",
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,32 +10,18 @@ type EmbedArgs = EmbedProps & {
10
10
  showVouch?: boolean;
11
11
  };
12
12
 
13
- const _Embed = ({
14
- vouchHashId,
15
- preload,
16
- autoplay,
17
- env,
18
- apiKey,
19
- controls,
20
- enableTracking,
21
- trackingSource,
22
-
23
- resolution,
24
- aspectRatio
25
- }: EmbedArgs) => {
13
+ const _Embed = ({ vouchId, templateId, preload, autoplay, env, apiKey, controls, aspectRatio }: EmbedArgs) => {
26
14
  return html`
27
15
  <div style="height: 100vh">
28
16
  <vouch-embed
29
17
  env=${ifDefined(env)}
30
18
  apiKey=${ifDefined(apiKey)}
19
+ vouchId=${ifDefined(vouchId)}
20
+ templateId=${ifDefined(templateId)}
21
+ .controls=${controls}
31
22
  ?autoplay=${autoplay}
32
- ?enableTracking=${enableTracking}
33
- vouchHashId=${ifDefined(vouchHashId)}
34
- resolution=${ifDefined(resolution)}
35
- aspectRatio=${ifDefined(aspectRatio)}
36
23
  preload=${ifDefined(preload)}
37
- .controls=${controls}
38
- trackingSource=${ifDefined(trackingSource)}
24
+ aspectRatio=${ifDefined(aspectRatio)}
39
25
  ></vouch-embed>
40
26
  </div>
41
27
  `;
@@ -53,20 +39,18 @@ type Story = StoryObj<EmbedArgs>;
53
39
 
54
40
  const Embed: Story = {
55
41
  args: {
56
- env: 'dev',
42
+ env: 'local',
57
43
  apiKey: 'TVik9uTMgE-PD25UTHIS6gyl0hMBWC7AT4dkpdlLBT4VIfDWZJrQiCk6Ak7m1',
58
- vouchHashId: '6JQEIPeStt',
59
- resolution: 1080,
44
+ vouchId: '6JQEIPeStt',
45
+ templateId: '357fc118-e179-4171-9446-ff2b8e9d1b29',
60
46
  aspectRatio: 0,
61
47
  preload: 'none',
62
- autoplay: false,
63
- enableTracking: true,
64
- trackingSource: 'media_player_storybook'
48
+ autoplay: false
65
49
  },
66
50
  argTypes: {
67
51
  env: {
68
52
  control: 'radio',
69
- options: ['prod', 'staging', 'dev']
53
+ options: ['local', 'dev', 'staging', 'prod']
70
54
  },
71
55
  preload: {
72
56
  control: 'radio',
@@ -2,40 +2,110 @@ import { Task } from '@lit/task';
2
2
 
3
3
  import type { Embed, EmbedProps } from '..';
4
4
  import type { ReactiveControllerHost } from 'lit';
5
+ import type { Environment } from '~/utils/env';
5
6
 
6
7
  import { getEnvUrls } from '~/utils/env';
7
8
 
8
9
  type EmbedHost = ReactiveControllerHost & Embed;
9
10
 
10
- type TaskDeps = [EmbedProps['env'], EmbedProps['apiKey'], EmbedProps['vouchHashId']];
11
+ type TaskDeps = [
12
+ EmbedProps['env'],
13
+ EmbedProps['apiKey'],
14
+ EmbedProps['data'],
15
+ EmbedProps['vouchId'],
16
+ EmbedProps['templateId']
17
+ ];
11
18
 
12
19
  class FetcherController {
13
20
  host: EmbedHost;
14
21
 
22
+ private _fetching = false;
23
+
24
+ set fetching(value) {
25
+ if (this._fetching !== value) {
26
+ this._fetching = value;
27
+ this.host.requestUpdate();
28
+ }
29
+ }
30
+ get fetching() {
31
+ return this._fetching;
32
+ }
33
+
34
+ private getVouch = async (env: Environment, apiKey: string, vouchId: string) => {
35
+ const { embedApiUrl } = getEnvUrls(env);
36
+
37
+ const vouch = await fetch(`${embedApiUrl}/vouches/${vouchId}`, {
38
+ method: 'GET',
39
+ headers: [['X-Api-Key', apiKey]]
40
+ }).then((response) => {
41
+ this.host.dispatchEvent(new CustomEvent('vouch:loaded', { detail: vouchId }));
42
+ return response.json();
43
+ });
44
+
45
+ // HACK: trigger another fetch after we received the data to update the cache in the background
46
+ fetch(`${embedApiUrl}/vouches/${vouchId}`, {
47
+ method: 'GET',
48
+ headers: [
49
+ ['X-Api-Key', apiKey],
50
+ ['Cache-Control', 'max-age=0']
51
+ ]
52
+ });
53
+
54
+ return vouch;
55
+ };
56
+
57
+ private getTemplate = async (env: Environment, apiKey: string, templateId: string) => {
58
+ const { embedApiUrl } = getEnvUrls(env);
59
+
60
+ const template = await fetch(`${embedApiUrl}/templates/${templateId}`, {
61
+ method: 'GET',
62
+ headers: [['X-Api-Key', apiKey]]
63
+ }).then((response) => response.json());
64
+
65
+ // HACK: trigger another fetch after we received the data to update the cache in the background
66
+ fetch(`${embedApiUrl}/templates/${templateId}`, {
67
+ method: 'GET',
68
+ headers: [
69
+ ['X-Api-Key', apiKey],
70
+ ['Cache-Control', 'max-age=0']
71
+ ]
72
+ });
73
+
74
+ return template;
75
+ };
76
+
15
77
  constructor(host: EmbedHost) {
16
78
  this.host = host;
17
79
  new Task<TaskDeps, void>(
18
80
  this.host,
19
- async ([env, apiKey, vouchHashId]: TaskDeps) => {
81
+ async ([env, apiKey, data, vouchId, templateId]: TaskDeps) => {
20
82
  try {
21
- if (vouchHashId) {
22
- host.fetching = true;
23
-
24
- const { embedApiUrl } = getEnvUrls(env);
83
+ host.vouch = undefined;
84
+ host.template = undefined;
25
85
 
26
- const data = await fetch(`${embedApiUrl}/vouches/${vouchHashId}`, {
27
- method: 'GET',
28
- headers: [['X-Api-Key', apiKey]]
29
- }).then((response) => response.json());
86
+ if (data) {
87
+ let template;
88
+ if (templateId) {
89
+ this.fetching = true;
90
+ template = await this.getTemplate(env, apiKey, templateId);
91
+ }
92
+ host.vouch = data;
93
+ host.template = template ?? data?.settings?.template?.instance;
94
+ } else if (vouchId) {
95
+ this.fetching = true;
30
96
 
31
- host.data = data;
32
- host.instance = data?.settings?.template?.instance;
97
+ const [vouch, template] = await Promise.all([
98
+ this.getVouch(env, apiKey, vouchId),
99
+ templateId ? this.getTemplate(env, apiKey, templateId) : null
100
+ ]);
101
+ host.vouch = vouch;
102
+ host.template = template ?? vouch?.settings?.template?.instance;
33
103
  }
34
104
  } finally {
35
- host.fetching = false;
105
+ this.fetching = false;
36
106
  }
37
107
  },
38
- () => [host.env, host.apiKey, host.vouchHashId]
108
+ () => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
39
109
  );
40
110
  }
41
111
  }
@@ -116,7 +116,6 @@ class TrackingController implements ReactiveController {
116
116
  });
117
117
 
118
118
  return {
119
- // Source might be embeds, could be playlink etc.
120
119
  source: this.host.trackingSource,
121
120
  time: new Date(),
122
121
  region,
@@ -134,22 +133,20 @@ class TrackingController implements ReactiveController {
134
133
  const { client, tab, request, visitor } = this._getUids();
135
134
 
136
135
  // Don't send tracking if we don't have a source
137
- if (this.host.enableTracking && this.host.trackingSource) {
138
- navigator.sendBeacon(
139
- `${publicApiUrl}/api/events`,
140
- JSON.stringify({
141
- event,
142
- payload,
143
- context: {
144
- 'x-uid-client': client,
145
- 'x-uid-tab': tab,
146
- 'x-uid-request': request,
147
- 'x-uid-visitor': visitor,
148
- 'x-reporting-metadata': this._getReportingMetadata()
149
- }
150
- })
151
- );
152
- }
136
+ navigator.sendBeacon(
137
+ `${publicApiUrl}/api/events`,
138
+ JSON.stringify({
139
+ event,
140
+ payload,
141
+ context: {
142
+ 'x-uid-client': client,
143
+ 'x-uid-tab': tab,
144
+ 'x-uid-request': request,
145
+ 'x-uid-visitor': visitor,
146
+ 'x-reporting-metadata': this._getReportingMetadata()
147
+ }
148
+ })
149
+ );
153
150
  };
154
151
 
155
152
  private _handleVouchLoaded = ({ detail: vouchId }: CustomEvent<string>) => {
@@ -243,25 +240,21 @@ class TrackingController implements ReactiveController {
243
240
  };
244
241
 
245
242
  hostConnected() {
246
- if (this.host.enableTracking && this.host.trackingSource) {
247
- requestAnimationFrame(() => {
248
- this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
249
- this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
250
- this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
251
- this.host.mediaPlayer?.addEventListener('video:pause', this._handleVideoPause);
252
- this.host.mediaPlayer?.addEventListener('video:timeupdate', this._handleVideoTimeUpdate);
253
- });
254
- }
243
+ requestAnimationFrame(() => {
244
+ this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
245
+ this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
246
+ this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
247
+ this.host.mediaPlayer?.addEventListener('video:pause', this._handleVideoPause);
248
+ this.host.mediaPlayer?.addEventListener('video:timeupdate', this._handleVideoTimeUpdate);
249
+ });
255
250
  }
256
251
 
257
252
  hostDisconnected() {
258
- if (this.host.enableTracking && this.host.trackingSource) {
259
- this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
260
- this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
261
- this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
262
- this.host.mediaPlayer?.removeEventListener('video:pause', this._handleVideoPause);
263
- this.host.mediaPlayer?.removeEventListener('video:timeupdate', this._handleVideoTimeUpdate);
264
- }
253
+ this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
254
+ this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
255
+ this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
256
+ this.host.mediaPlayer?.removeEventListener('video:pause', this._handleVideoPause);
257
+ this.host.mediaPlayer?.removeEventListener('video:timeupdate', this._handleVideoTimeUpdate);
265
258
  }
266
259
  }
267
260
 
@@ -1,9 +1,9 @@
1
1
  import { html, LitElement } from 'lit';
2
- import { customElement, state, 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 } from '@vouchfor/canvas-video';
6
+ import type { Scene, 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';
@@ -14,39 +14,30 @@ import { TrackingController } from './controllers/tracking';
14
14
 
15
15
  import '@vouchfor/media-player';
16
16
 
17
- type EmbedProps = Pick<
18
- MediaPlayerProps,
19
- 'data' | 'resolution' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'
20
- > & {
17
+ type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
21
18
  env: Environment;
22
19
  apiKey: string;
23
- vouchHashId?: string;
24
- enableTracking?: boolean;
25
20
  trackingSource?: string;
21
+ vouchId?: string;
22
+ templateId?: string;
26
23
  };
27
24
 
28
25
  @customElement('vouch-embed')
29
26
  class Embed extends LitElement {
30
27
  private _mediaPlayerRef: Ref<MediaPlayer> = createRef();
31
28
 
32
- @property({ type: Object, attribute: 'data' }) propData: EmbedProps['data'];
33
- @property({ type: String }) vouchHashId: EmbedProps['vouchHashId'];
29
+ @property({ type: Object, attribute: 'data' }) data: EmbedProps['data'];
30
+ @property({ type: String }) vouchId: EmbedProps['vouchId'];
31
+ @property({ type: String }) templateId: EmbedProps['templateId'];
34
32
 
35
33
  @property({ type: String }) env: EmbedProps['env'] = 'prod';
36
34
  @property({ type: String }) apiKey: EmbedProps['apiKey'] = '';
35
+ @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'embed';
37
36
 
37
+ @property({ type: Array }) controls: EmbedProps['controls'];
38
38
  @property({ type: String }) preload: EmbedProps['preload'] = 'auto';
39
39
  @property({ type: Boolean }) autoplay: EmbedProps['autoplay'] = false;
40
- @property({ type: Boolean }) enableTracking: EmbedProps['enableTracking'] = false;
41
- @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'media_player';
42
-
43
- @property({ type: Number }) resolution: EmbedProps['resolution'] = 1080;
44
40
  @property({ type: Number }) aspectRatio: EmbedProps['aspectRatio'] = 0;
45
- @property({ type: Array }) controls: EmbedProps['controls'];
46
-
47
- @state() data: MediaPlayerProps['data'];
48
- @state() instance: MediaPlayerProps['instance'];
49
- @state() fetching = false;
50
41
 
51
42
  private eventController = new EventForwardController(this, [
52
43
  'durationchange',
@@ -75,12 +66,17 @@ class Embed extends LitElement {
75
66
  'video:ended',
76
67
  'video:error'
77
68
  ]);
69
+ private _fetcherController = new FetcherController(this);
78
70
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
79
71
  // @ts-ignore
80
- private trackingController = new TrackingController(this);
81
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
82
- // @ts-ignore
83
- private fetcherController = new FetcherController(this);
72
+ private _trackingController = new TrackingController(this);
73
+
74
+ @state() vouch: EmbedProps['data'];
75
+ @state() template: TemplateInstance | undefined;
76
+
77
+ get fetching() {
78
+ return this._fetcherController.fetching;
79
+ }
84
80
 
85
81
  get waiting() {
86
82
  return this._mediaPlayerRef.value?.waiting;
@@ -172,18 +168,17 @@ class Embed extends LitElement {
172
168
 
173
169
  render() {
174
170
  return html`
175
- <vmp-media-player
171
+ <vmp-new-media-player
176
172
  ${ref(this._mediaPlayerRef)}
177
173
  ${this.eventController.register()}
178
174
  ?autoplay=${this.autoplay}
179
175
  ?loading=${this.fetching}
180
- .data=${this.data}
181
- .instance=${this.instance}
182
- resolution=${ifDefined(this.resolution)}
176
+ .data=${this.vouch}
177
+ .template=${this.template}
183
178
  aspectRatio=${ifDefined(this.aspectRatio)}
184
179
  preload=${ifDefined(this.preload)}
185
180
  .controls=${this.controls}
186
- ></vmp-media-player>
181
+ ></vmp-new-media-player>
187
182
  `;
188
183
  }
189
184
  }
package/src/utils/env.ts CHANGED
@@ -1,15 +1,11 @@
1
- type Environment = 'dev' | 'staging' | 'prod';
1
+ type Environment = 'local' | 'dev' | 'staging' | 'prod';
2
2
 
3
3
  type GetEnvUrlsReturn = {
4
- marketingUrl: string;
5
4
  videoUrl: string;
6
5
  publicApiUrl: string;
7
6
  embedApiUrl: string;
8
- publicRecorderUrl: string;
9
7
  };
10
8
 
11
- const marketingUrl = 'https://vouchfor.com';
12
-
13
9
  const devVideoUrl = 'https://d2rxhdlm2q91uk.cloudfront.net';
14
10
  const stagingVideoUrl = 'https://d1ix11aj5kfygl.cloudfront.net';
15
11
  const prodVideoUrl = 'https://d157jlwnudd93d.cloudfront.net';
@@ -18,61 +14,51 @@ const devPublicApiUrl = 'https://bshyfw4h5a.execute-api.ap-southeast-2.amazonaws
18
14
  const stagingPublicApiUrl = 'https://gyzw7rpbq3.execute-api.ap-southeast-2.amazonaws.com/staging';
19
15
  const prodPublicApiUrl = 'https://vfcjuim1l3.execute-api.ap-southeast-2.amazonaws.com/prod';
20
16
 
21
- const devEmbedApiUrl = 'http://localhost:6060/v1';
22
- const stagingEmbedApiUrl = 'https://embed-staging.vouchfor.com/v1';
23
- const prodEmbedApiUrl = 'https://embed.vouchfor.com/v1';
24
-
25
- const devPublicRecorderUrl = 'https://dev.vouchfor.com';
26
- const stagingPublicRecorderUrl = 'https://staging.vouchfor.com';
27
- const prodPublicRecorderUrl = 'https://app.vouchfor.com';
17
+ const localEmbedApiUrl = 'http://localhost:6060/v2';
18
+ const devEmbedApiUrl = 'https://embed-dev.vouchfor.com/v2';
19
+ const stagingEmbedApiUrl = 'https://embed-staging.vouchfor.com/v2';
20
+ const prodEmbedApiUrl = 'https://embed.vouchfor.com/v2';
28
21
 
29
22
  // We are handling the case where env is an unknown string so the ts error is a lie
30
23
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
31
24
  // @ts-ignore
32
25
  function getEnvUrls(env: Environment): GetEnvUrlsReturn {
33
- if (!['dev', 'staging', 'prod'].includes(env)) {
26
+ if (!['local', 'dev', 'staging', 'prod'].includes(env)) {
34
27
  throw new Error(`Unknown environment: ${env}`);
35
28
  }
36
29
 
30
+ if (env === 'local') {
31
+ return {
32
+ videoUrl: devVideoUrl,
33
+ publicApiUrl: devPublicApiUrl,
34
+ embedApiUrl: localEmbedApiUrl
35
+ };
36
+ }
37
+
37
38
  if (env === 'dev') {
38
39
  return {
39
- marketingUrl,
40
40
  videoUrl: devVideoUrl,
41
41
  publicApiUrl: devPublicApiUrl,
42
- embedApiUrl: devEmbedApiUrl,
43
- publicRecorderUrl: devPublicRecorderUrl
42
+ embedApiUrl: devEmbedApiUrl
44
43
  };
45
44
  }
46
45
 
47
46
  if (env === 'staging') {
48
47
  return {
49
- marketingUrl,
50
48
  videoUrl: stagingVideoUrl,
51
49
  publicApiUrl: stagingPublicApiUrl,
52
- embedApiUrl: stagingEmbedApiUrl,
53
- publicRecorderUrl: stagingPublicRecorderUrl
50
+ embedApiUrl: stagingEmbedApiUrl
54
51
  };
55
52
  }
56
53
 
57
54
  if (env === 'prod') {
58
55
  return {
59
- marketingUrl,
60
56
  videoUrl: prodVideoUrl,
61
57
  publicApiUrl: prodPublicApiUrl,
62
- embedApiUrl: prodEmbedApiUrl,
63
- publicRecorderUrl: prodPublicRecorderUrl
58
+ embedApiUrl: prodEmbedApiUrl
64
59
  };
65
60
  }
66
61
  }
67
62
 
68
- export {
69
- marketingUrl,
70
- devEmbedApiUrl,
71
- stagingEmbedApiUrl,
72
- prodEmbedApiUrl,
73
- devPublicRecorderUrl,
74
- stagingPublicRecorderUrl,
75
- prodPublicRecorderUrl,
76
- getEnvUrls
77
- };
63
+ export { devEmbedApiUrl, stagingEmbedApiUrl, prodEmbedApiUrl, getEnvUrls };
78
64
  export type { Environment };
@@ -1,14 +0,0 @@
1
- import type { Embed } from '..';
2
- import type { ReactiveController, ReactiveControllerHost } from 'lit';
3
- type EmbedHost = ReactiveControllerHost & Embed;
4
- declare class EventForwardController implements ReactiveController {
5
- host: EmbedHost;
6
- private _events;
7
- private _cleanup;
8
- private _forwardElementRef;
9
- constructor(host: EmbedHost, events: string[]);
10
- register(): import("lit-html/directive.js").DirectiveResult<typeof import("lit-html/directives/ref.js").RefDirective>;
11
- hostConnected(): void;
12
- hostDisconnected(): void;
13
- }
14
- export { EventForwardController };