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

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,199 @@
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, 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
+ trackingSource?: string;
21
+ vouchId?: string;
22
+ templateId?: string;
23
+ };
24
+
25
+ @customElement('vouch-embed')
26
+ class Embed extends LitElement {
27
+ private _mediaPlayerRef: Ref<MediaPlayer> = createRef();
28
+
29
+ @property({ type: Object, attribute: 'data' }) data: EmbedProps['data'];
30
+ @property({ type: String }) vouchId: EmbedProps['vouchId'];
31
+ @property({ type: String }) templateId: EmbedProps['templateId'];
32
+
33
+ @property({ type: String }) env: EmbedProps['env'] = 'prod';
34
+ @property({ type: String }) apiKey: EmbedProps['apiKey'] = '';
35
+ @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'embed';
36
+
37
+ @property({ type: Array }) controls: EmbedProps['controls'];
38
+ @property({ type: String }) preload: EmbedProps['preload'] = 'auto';
39
+ @property({ type: Boolean }) autoplay: EmbedProps['autoplay'] = false;
40
+ @property({ type: Number }) aspectRatio: EmbedProps['aspectRatio'] = 0;
41
+
42
+ private eventController = new EventForwardController(this, [
43
+ 'durationchange',
44
+ 'ended',
45
+ 'error',
46
+ 'loadeddata',
47
+ 'pause',
48
+ 'stalled',
49
+ 'play',
50
+ 'playing',
51
+ 'ratechange',
52
+ 'scenechange',
53
+ 'seeking',
54
+ 'seeked',
55
+ 'timeupdate',
56
+ 'volumechange',
57
+ 'waiting',
58
+
59
+ 'video:loadeddata',
60
+ 'video:seeked',
61
+ 'video:play',
62
+ 'video:playing',
63
+ 'video:pause',
64
+ 'video:stalled',
65
+ 'video:timeupdate',
66
+ 'video:ended',
67
+ 'video:error'
68
+ ]);
69
+ private _fetcherController = new FetcherController(this);
70
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
71
+ // @ts-ignore
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
+ }
80
+
81
+ get waiting() {
82
+ return this._mediaPlayerRef.value?.waiting;
83
+ }
84
+
85
+ get seeking() {
86
+ return this._mediaPlayerRef.value?.seeking;
87
+ }
88
+
89
+ get paused() {
90
+ return this._mediaPlayerRef.value?.paused;
91
+ }
92
+
93
+ get captions() {
94
+ return this._mediaPlayerRef.value?.captions;
95
+ }
96
+
97
+ get fullscreen() {
98
+ return this._mediaPlayerRef.value?.fullscreen;
99
+ }
100
+
101
+ get duration() {
102
+ return this._mediaPlayerRef.value?.duration;
103
+ }
104
+
105
+ set currentTime(value: number) {
106
+ if (this._mediaPlayerRef.value) {
107
+ this._mediaPlayerRef.value.currentTime = value;
108
+ }
109
+ }
110
+ get currentTime() {
111
+ return this._mediaPlayerRef.value?.currentTime ?? 0;
112
+ }
113
+
114
+ set playbackRate(value: number) {
115
+ if (this._mediaPlayerRef.value) {
116
+ this._mediaPlayerRef.value.playbackRate = value;
117
+ }
118
+ }
119
+ get playbackRate() {
120
+ return this._mediaPlayerRef.value?.playbackRate ?? 1;
121
+ }
122
+
123
+ set volume(value: number) {
124
+ if (this._mediaPlayerRef.value) {
125
+ this._mediaPlayerRef.value.volume = value;
126
+ }
127
+ }
128
+ get volume() {
129
+ return this._mediaPlayerRef.value?.volume ?? 1;
130
+ }
131
+
132
+ set muted(value: boolean) {
133
+ if (this._mediaPlayerRef.value) {
134
+ this._mediaPlayerRef.value.muted = value;
135
+ }
136
+ }
137
+ get muted() {
138
+ return this._mediaPlayerRef.value?.muted ?? false;
139
+ }
140
+
141
+ get scene(): Scene | null {
142
+ return this._mediaPlayerRef.value?.scene ?? null;
143
+ }
144
+
145
+ get scenes(): Scene[] {
146
+ return this._mediaPlayerRef.value?.scenes ?? [];
147
+ }
148
+
149
+ get videoState() {
150
+ return this._mediaPlayerRef.value?.videoState;
151
+ }
152
+
153
+ get mediaPlayer() {
154
+ return this._mediaPlayerRef.value;
155
+ }
156
+
157
+ play() {
158
+ this._mediaPlayerRef.value?.play();
159
+ }
160
+
161
+ pause() {
162
+ this._mediaPlayerRef.value?.pause();
163
+ }
164
+
165
+ setScene(index: number) {
166
+ this._mediaPlayerRef.value?.setScene(index);
167
+ }
168
+
169
+ render() {
170
+ return html`
171
+ <vmp-new-media-player
172
+ ${ref(this._mediaPlayerRef)}
173
+ ${this.eventController.register()}
174
+ ?autoplay=${this.autoplay}
175
+ ?loading=${this.fetching}
176
+ .data=${this.vouch}
177
+ .template=${this.template}
178
+ aspectRatio=${ifDefined(this.aspectRatio)}
179
+ preload=${ifDefined(this.preload)}
180
+ .controls=${this.controls}
181
+ ></vmp-new-media-player>
182
+ `;
183
+ }
184
+ }
185
+
186
+ declare global {
187
+ interface HTMLElementTagNameMap {
188
+ 'vouch-embed': Embed;
189
+ }
190
+
191
+ namespace JSX {
192
+ interface IntrinsicElements {
193
+ 'vouch-embed': Embed;
194
+ }
195
+ }
196
+ }
197
+
198
+ export { Embed };
199
+ 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,17 +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
- namespace JSX {
11
- interface IntrinsicElements {
12
- 'vembed-inline': InlineEmbed;
13
- }
14
- }
15
- }
16
- export { InlineEmbed };
17
- export type { InlineEmbedProps };
@@ -1,119 +0,0 @@
1
- import { html } from 'lit';
2
- import { ifDefined } from 'lit/directives/if-defined.js';
3
-
4
- import type { InlineEmbedProps } from './';
5
- import type { Meta, StoryObj } from '@storybook/web-components';
6
-
7
- import './';
8
-
9
- type InlineEmbedArgs = InlineEmbedProps & {
10
- showVouch?: boolean;
11
- };
12
-
13
- const _InlineEmbed = ({
14
- vouchHashId,
15
- preload,
16
- autoplay,
17
- env,
18
- apiKey,
19
- controls,
20
- enableTracking,
21
- trackingSource,
22
-
23
- // Template properties
24
- type,
25
- format,
26
- resolution,
27
- aspectRatio,
28
- headerShortName,
29
- headerSubtitle,
30
- headerBrandLogo
31
- }: InlineEmbedArgs) => {
32
- return html`
33
- <div style="height: 100vh">
34
- <vembed-inline
35
- env=${ifDefined(env)}
36
- apiKey=${ifDefined(apiKey)}
37
- ?autoplay=${autoplay}
38
- ?enableTracking=${enableTracking}
39
- .vouchHashId=${vouchHashId}
40
- resolution=${ifDefined(resolution)}
41
- aspectRatio=${ifDefined(aspectRatio)}
42
- preload=${ifDefined(preload)}
43
- type=${ifDefined(type)}
44
- .controls=${controls}
45
- trackingSource=${ifDefined(trackingSource)}
46
- format=${ifDefined(format)}
47
- ?headerShortName=${headerShortName}
48
- ?headerBrandLogo=${headerBrandLogo}
49
- headerSubtitle=${ifDefined(headerSubtitle)}
50
- ></vembed-inline>
51
- </div>
52
- `;
53
- };
54
-
55
- // More on how to set up stories at: https://storybook.js.org/docs/web-components/writing-stories/introduction
56
- const meta = {
57
- title: 'Embeds/Inline',
58
- tags: ['autodocs'],
59
- render: (args) => _InlineEmbed(args),
60
- component: 'vembed-inline'
61
- } satisfies Meta<InlineEmbedProps>;
62
-
63
- type Story = StoryObj<InlineEmbedArgs>;
64
-
65
- const InlineEmbed: Story = {
66
- args: {
67
- env: 'dev',
68
- apiKey: 'RtW1R7JYej-pymoGNEUCblZz0NTLZzsuC9xKxcsewIYpf3UEIePcGvtkRnd4K',
69
- vouchHashId: 'X526IKhw90',
70
- resolution: 1080,
71
- aspectRatio: 0,
72
- preload: 'none',
73
- autoplay: false,
74
- enableTracking: true,
75
- trackingSource: 'media_player_storybook',
76
-
77
- type: 'BASIC',
78
- format: 'letterbox',
79
- headerShortName: true,
80
- headerSubtitle: 'client',
81
- headerBrandLogo: false,
82
-
83
- showVouch: true
84
- },
85
- argTypes: {
86
- type: {
87
- control: 'radio',
88
- options: ['BARE', 'BASIC', 'INLINE', 'JUMBO', 'FOUNDIT', 'CISCO']
89
- },
90
- headerSubtitle: {
91
- control: 'radio',
92
- options: ['role', 'client']
93
- },
94
- headerShortName: {
95
- control: 'boolean'
96
- },
97
- headerBrandLogo: {
98
- control: 'boolean'
99
- },
100
- preload: {
101
- control: 'radio',
102
- options: ['auto', 'none']
103
- },
104
- format: {
105
- control: 'radio',
106
- options: ['letterbox', 'letterbox-video', 'crop', 'crop-top', 'squarebox']
107
- },
108
- env: {
109
- control: 'radio',
110
- options: ['prod', 'staging', 'dev']
111
- }
112
- },
113
- parameters: {
114
- layout: 'fullscreen'
115
- }
116
- };
117
-
118
- export default meta;
119
- export { InlineEmbed };
@@ -1,24 +0,0 @@
1
- import { MediaPlayer } from '@vouchfor/media-player';
2
- import { customElement } from 'lit/decorators.js';
3
-
4
- import type { MediaPlayerProps } from '@vouchfor/media-player';
5
-
6
- type InlineEmbedProps = MediaPlayerProps;
7
-
8
- @customElement('vembed-inline')
9
- class InlineEmbed extends MediaPlayer {}
10
-
11
- declare global {
12
- interface HTMLElementTagNameMap {
13
- 'vembed-inline': InlineEmbed;
14
- }
15
-
16
- namespace JSX {
17
- interface IntrinsicElements {
18
- 'vembed-inline': InlineEmbed;
19
- }
20
- }
21
- }
22
-
23
- export { InlineEmbed };
24
- export type { InlineEmbedProps };