@vouchfor/embeds 0.0.0-experiment.79ff9cf → 0.0.0-experiment.7ccd27e

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.
@@ -0,0 +1,209 @@
1
+ import { html, LitElement } from 'lit';
2
+ import { customElement, property, state } from 'lit/decorators.js';
3
+ import { ifDefined } from 'lit/directives/if-defined.js';
4
+ import { createRef, ref } from 'lit/directives/ref.js';
5
+
6
+ import type { Scene, Scenes, TemplateInstance } from '@vouchfor/canvas-video';
7
+ import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
8
+ import type { Ref } from 'lit/directives/ref.js';
9
+ import type { Environment } from '~/utils/env';
10
+
11
+ import { EventForwardController } from './controllers/event-forwarder';
12
+ import { FetcherController } from './controllers/fetcher';
13
+ import { TrackingController } from './controllers/tracking';
14
+
15
+ import '@vouchfor/media-player';
16
+
17
+ type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
18
+ env: Environment;
19
+ apiKey: string;
20
+ disableTracking?: boolean;
21
+ trackingSource?: string;
22
+ vouchId?: string;
23
+ templateId?: string;
24
+ // Index of the questions to include starting from 1
25
+ questions?: number[];
26
+ };
27
+
28
+ @customElement('vouch-embed')
29
+ class Embed extends LitElement {
30
+ private _mediaPlayerRef: Ref<MediaPlayer> = createRef();
31
+
32
+ @property({ type: Object }) data: EmbedProps['data'];
33
+ @property({ type: String }) vouchId: EmbedProps['vouchId'];
34
+ @property({ type: String }) templateId: EmbedProps['templateId'];
35
+ @property({ type: Array }) questions: EmbedProps['questions'];
36
+
37
+ @property({ type: String }) env: EmbedProps['env'] = 'prod';
38
+ @property({ type: String }) apiKey: EmbedProps['apiKey'] = '';
39
+ @property({ type: Boolean }) disableTracking: EmbedProps['disableTracking'] = false;
40
+ @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'embed';
41
+
42
+ @property({ type: Array }) controls: EmbedProps['controls'];
43
+ @property({ type: String }) preload: EmbedProps['preload'] = 'auto';
44
+ @property({ type: Boolean }) autoplay: EmbedProps['autoplay'] = false;
45
+ @property({ type: Number }) aspectRatio: EmbedProps['aspectRatio'] = 0;
46
+
47
+ private eventController = new EventForwardController(this, [
48
+ 'durationchange',
49
+ 'ended',
50
+ 'error',
51
+ 'loadeddata',
52
+ 'pause',
53
+ 'stalled',
54
+ 'play',
55
+ 'playing',
56
+ 'ratechange',
57
+ 'scenechange',
58
+ 'seeking',
59
+ 'seeked',
60
+ 'timeupdate',
61
+ 'volumechange',
62
+ 'waiting',
63
+
64
+ 'video:loadeddata',
65
+ 'video:seeking',
66
+ 'video:seeked',
67
+ 'video:play',
68
+ 'video:playing',
69
+ 'video:pause',
70
+ 'video:stalled',
71
+ 'video:timeupdate',
72
+ 'video:ended',
73
+ 'video:error'
74
+ ]);
75
+ private _fetcherController = new FetcherController(this);
76
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
77
+ // @ts-ignore
78
+ private _trackingController = new TrackingController(this);
79
+
80
+ @state() vouch: EmbedProps['data'];
81
+ @state() template: TemplateInstance | undefined;
82
+
83
+ get fetching() {
84
+ return this._fetcherController.fetching;
85
+ }
86
+
87
+ get waiting() {
88
+ return this._mediaPlayerRef.value?.waiting;
89
+ }
90
+
91
+ get seeking() {
92
+ return this._mediaPlayerRef.value?.seeking;
93
+ }
94
+
95
+ get paused() {
96
+ return this._mediaPlayerRef.value?.paused;
97
+ }
98
+
99
+ get captions() {
100
+ return this._mediaPlayerRef.value?.captions;
101
+ }
102
+
103
+ get fullscreen() {
104
+ return this._mediaPlayerRef.value?.fullscreen;
105
+ }
106
+
107
+ get duration() {
108
+ return this._mediaPlayerRef.value?.duration;
109
+ }
110
+
111
+ set currentTime(value: number) {
112
+ if (this._mediaPlayerRef.value) {
113
+ this._mediaPlayerRef.value.currentTime = value;
114
+ }
115
+ }
116
+ get currentTime() {
117
+ return this._mediaPlayerRef.value?.currentTime ?? 0;
118
+ }
119
+
120
+ set playbackRate(value: number) {
121
+ if (this._mediaPlayerRef.value) {
122
+ this._mediaPlayerRef.value.playbackRate = value;
123
+ }
124
+ }
125
+ get playbackRate() {
126
+ return this._mediaPlayerRef.value?.playbackRate ?? 1;
127
+ }
128
+
129
+ set volume(value: number) {
130
+ if (this._mediaPlayerRef.value) {
131
+ this._mediaPlayerRef.value.volume = value;
132
+ }
133
+ }
134
+ get volume() {
135
+ return this._mediaPlayerRef.value?.volume ?? 1;
136
+ }
137
+
138
+ set muted(value: boolean) {
139
+ if (this._mediaPlayerRef.value) {
140
+ this._mediaPlayerRef.value.muted = value;
141
+ }
142
+ }
143
+ get muted() {
144
+ return this._mediaPlayerRef.value?.muted ?? false;
145
+ }
146
+
147
+ get scene(): Scene | null {
148
+ return this._mediaPlayerRef.value?.scene ?? null;
149
+ }
150
+
151
+ get scenes(): Scene[] {
152
+ return this._mediaPlayerRef.value?.scenes ?? [];
153
+ }
154
+
155
+ get sceneConfig(): Scenes | null {
156
+ return this._mediaPlayerRef.value?.sceneConfig ?? null;
157
+ }
158
+
159
+ get videoState() {
160
+ return this._mediaPlayerRef.value?.videoState;
161
+ }
162
+
163
+ get mediaPlayer() {
164
+ return this._mediaPlayerRef.value;
165
+ }
166
+
167
+ play() {
168
+ this._mediaPlayerRef.value?.play();
169
+ }
170
+
171
+ pause() {
172
+ this._mediaPlayerRef.value?.pause();
173
+ }
174
+
175
+ setScene(index: number) {
176
+ this._mediaPlayerRef.value?.setScene(index);
177
+ }
178
+
179
+ render() {
180
+ return html`
181
+ <vmp-media-player
182
+ ${ref(this._mediaPlayerRef)}
183
+ ${this.eventController.register()}
184
+ ?autoplay=${this.autoplay}
185
+ ?loading=${this.fetching}
186
+ .data=${this.vouch}
187
+ .template=${this.template}
188
+ aspectRatio=${ifDefined(this.aspectRatio)}
189
+ preload=${ifDefined(this.preload)}
190
+ .controls=${this.controls}
191
+ ></vmp-media-player>
192
+ `;
193
+ }
194
+ }
195
+
196
+ declare global {
197
+ interface HTMLElementTagNameMap {
198
+ 'vouch-embed': Embed;
199
+ }
200
+
201
+ namespace JSX {
202
+ interface IntrinsicElements {
203
+ 'vouch-embed': Embed;
204
+ }
205
+ }
206
+ }
207
+
208
+ export { Embed };
209
+ export type { EmbedProps };
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export { InlineEmbed } from '~/components/InlineEmbed';
1
+ export { Embed } from '~/components/Embed';
@@ -0,0 +1,64 @@
1
+ type Environment = 'local' | 'dev' | 'staging' | 'prod';
2
+
3
+ type GetEnvUrlsReturn = {
4
+ videoUrl: string;
5
+ publicApiUrl: string;
6
+ embedApiUrl: string;
7
+ };
8
+
9
+ const devVideoUrl = 'https://d2rxhdlm2q91uk.cloudfront.net';
10
+ const stagingVideoUrl = 'https://d1ix11aj5kfygl.cloudfront.net';
11
+ const prodVideoUrl = 'https://d157jlwnudd93d.cloudfront.net';
12
+
13
+ const devPublicApiUrl = 'https://bshyfw4h5a.execute-api.ap-southeast-2.amazonaws.com/dev';
14
+ const stagingPublicApiUrl = 'https://gyzw7rpbq3.execute-api.ap-southeast-2.amazonaws.com/staging';
15
+ const prodPublicApiUrl = 'https://vfcjuim1l3.execute-api.ap-southeast-2.amazonaws.com/prod';
16
+
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';
21
+
22
+ // We are handling the case where env is an unknown string so the ts error is a lie
23
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
24
+ // @ts-ignore
25
+ function getEnvUrls(env: Environment): GetEnvUrlsReturn {
26
+ if (!['local', 'dev', 'staging', 'prod'].includes(env)) {
27
+ throw new Error(`Unknown environment: ${env}`);
28
+ }
29
+
30
+ if (env === 'local') {
31
+ return {
32
+ videoUrl: devVideoUrl,
33
+ publicApiUrl: devPublicApiUrl,
34
+ embedApiUrl: localEmbedApiUrl
35
+ };
36
+ }
37
+
38
+ if (env === 'dev') {
39
+ return {
40
+ videoUrl: devVideoUrl,
41
+ publicApiUrl: devPublicApiUrl,
42
+ embedApiUrl: devEmbedApiUrl
43
+ };
44
+ }
45
+
46
+ if (env === 'staging') {
47
+ return {
48
+ videoUrl: stagingVideoUrl,
49
+ publicApiUrl: stagingPublicApiUrl,
50
+ embedApiUrl: stagingEmbedApiUrl
51
+ };
52
+ }
53
+
54
+ if (env === 'prod') {
55
+ return {
56
+ videoUrl: prodVideoUrl,
57
+ publicApiUrl: prodPublicApiUrl,
58
+ embedApiUrl: prodEmbedApiUrl
59
+ };
60
+ }
61
+ }
62
+
63
+ export { devEmbedApiUrl, stagingEmbedApiUrl, prodEmbedApiUrl, getEnvUrls };
64
+ export type { Environment };
@@ -0,0 +1,13 @@
1
+ function forwardEvent(type: string, fromElement: HTMLElement, toElement: HTMLElement) {
2
+ function forwarder(event: Event) {
3
+ toElement.dispatchEvent(new CustomEvent(event.type, event));
4
+ }
5
+
6
+ fromElement.addEventListener(type, forwarder);
7
+
8
+ return () => {
9
+ fromElement.removeEventListener(type, forwarder);
10
+ };
11
+ }
12
+
13
+ export { forwardEvent };
@@ -1,12 +0,0 @@
1
- import { MediaPlayer } from '@vouchfor/media-player';
2
- import type { MediaPlayerProps } from '@vouchfor/media-player';
3
- type InlineEmbedProps = MediaPlayerProps;
4
- declare class InlineEmbed extends MediaPlayer {
5
- }
6
- declare global {
7
- interface HTMLElementTagNameMap {
8
- 'vembed-inline': InlineEmbed;
9
- }
10
- }
11
- export { InlineEmbed };
12
- export type { InlineEmbedProps };
@@ -1,2 +0,0 @@
1
- export { InlineEmbed } from './InlineEmbed';
2
- export type { InlineEmbedProps } from './InlineEmbed';
@@ -1 +0,0 @@
1
- export { InlineEmbed } from './components/InlineEmbed';