@vouchfor/embeds 1.2.1 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/es/{browser-47f3e1d6.js → browser-97265c29.js} +2 -2
- package/dist/es/{browser-47f3e1d6.js.map → browser-97265c29.js.map} +1 -1
- package/dist/es/embeds.js +1 -1
- package/dist/es/{index-d6ce78b6.js → index-d15aeb56.js} +704 -710
- package/dist/es/index-d15aeb56.js.map +1 -0
- package/dist/es/src/components/DialogEmbed/index.d.ts +1 -0
- package/dist/es/src/components/PlayerEmbed/index.d.ts +73 -0
- package/dist/iife/dialog-embed/{browser-7ead22f3.js → browser-c8adca59.js} +2 -2
- package/dist/iife/dialog-embed/{browser-7ead22f3.js.map → browser-c8adca59.js.map} +1 -1
- package/dist/iife/dialog-embed/embed.iife.js +71 -70
- package/dist/iife/dialog-embed/embed.iife.js.map +1 -1
- package/dist/iife/dialog-embed/embed.js +1 -1
- package/dist/iife/dialog-embed/{index-0f8b2027.js → index-eb3ec3b3.js} +904 -911
- package/dist/iife/dialog-embed/index-eb3ec3b3.js.map +1 -0
- package/dist/iife/dialog-embed/src/components/DialogEmbed/index.d.ts +1 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/index.d.ts +73 -0
- package/dist/iife/embeds.iife.js +53 -52
- package/dist/iife/embeds.iife.js.map +1 -1
- package/dist/iife/player-embed/{browser-e97870ba.js → browser-7e2003a9.js} +2 -2
- package/dist/iife/player-embed/{browser-e97870ba.js.map → browser-7e2003a9.js.map} +1 -1
- package/dist/iife/player-embed/embed.iife.js +34 -34
- package/dist/iife/player-embed/embed.iife.js.map +1 -1
- package/dist/iife/player-embed/embed.js +1 -1
- package/dist/iife/player-embed/{index-5907ffee.js → index-4541048e.js} +3343 -3351
- package/dist/iife/player-embed/index-4541048e.js.map +1 -0
- package/dist/iife/player-embed/src/components/DialogEmbed/index.d.ts +1 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/index.d.ts +73 -0
- package/package.json +2 -2
- package/src/components/DialogEmbed/Dialog.stories.ts +12 -0
- package/src/components/DialogEmbed/DialogPortal.ts +22 -10
- package/src/components/DialogEmbed/index.ts +5 -1
- package/src/components/PlayerEmbed/index.ts +106 -5
- package/dist/es/index-d6ce78b6.js.map +0 -1
- package/dist/iife/dialog-embed/index-0f8b2027.js.map +0 -1
- package/dist/iife/player-embed/index-5907ffee.js.map +0 -1
- package/src/mixins/media-player-proxy.ts +0 -116
@@ -16,6 +16,7 @@ declare class DialogEmbed extends LitElement {
|
|
16
16
|
preload: DialogEmbedProps['preload'];
|
17
17
|
disableAutoplay: DialogEmbedProps['disableAutoplay'];
|
18
18
|
aspectRatio: DialogEmbedProps['aspectRatio'];
|
19
|
+
private _id;
|
19
20
|
private _handleRootClick;
|
20
21
|
connectedCallback(): void;
|
21
22
|
disconnectedCallback(): void;
|
@@ -0,0 +1,73 @@
|
|
1
|
+
import { LitElement } from 'lit';
|
2
|
+
import type { Scene, Scenes, TemplateInstance } from '@vouchfor/canvas-video';
|
3
|
+
import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
|
4
|
+
import type { Environment } from '../../utils/env';
|
5
|
+
type PlayerEmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
|
6
|
+
env: Environment;
|
7
|
+
apiKey: string;
|
8
|
+
disableTracking?: boolean;
|
9
|
+
trackingSource?: string;
|
10
|
+
vouchId?: string;
|
11
|
+
templateId?: string;
|
12
|
+
questions?: number[];
|
13
|
+
};
|
14
|
+
declare class PlayerEmbed extends LitElement {
|
15
|
+
static styles: import("lit").CSSResult[];
|
16
|
+
data: PlayerEmbedProps['data'];
|
17
|
+
vouchId: PlayerEmbedProps['vouchId'];
|
18
|
+
templateId: PlayerEmbedProps['templateId'];
|
19
|
+
questions: PlayerEmbedProps['questions'];
|
20
|
+
env: PlayerEmbedProps['env'];
|
21
|
+
apiKey: PlayerEmbedProps['apiKey'];
|
22
|
+
disableTracking: PlayerEmbedProps['disableTracking'];
|
23
|
+
trackingSource: PlayerEmbedProps['trackingSource'];
|
24
|
+
controls: PlayerEmbedProps['controls'];
|
25
|
+
preload: PlayerEmbedProps['preload'];
|
26
|
+
autoplay: PlayerEmbedProps['autoplay'];
|
27
|
+
aspectRatio: PlayerEmbedProps['aspectRatio'];
|
28
|
+
private eventController;
|
29
|
+
private _fetcherController;
|
30
|
+
private _trackingController;
|
31
|
+
vouch: PlayerEmbedProps['data'];
|
32
|
+
template: TemplateInstance | undefined;
|
33
|
+
get fetching(): boolean;
|
34
|
+
private _mediaPlayerRef;
|
35
|
+
get waiting(): boolean | undefined;
|
36
|
+
get initialised(): Promise<boolean> | undefined;
|
37
|
+
get seeking(): boolean | undefined;
|
38
|
+
get paused(): boolean | undefined;
|
39
|
+
get captions(): boolean | undefined;
|
40
|
+
get fullscreen(): boolean | undefined;
|
41
|
+
get duration(): number | undefined;
|
42
|
+
set currentTime(value: number);
|
43
|
+
get currentTime(): number;
|
44
|
+
set playbackRate(value: number);
|
45
|
+
get playbackRate(): number;
|
46
|
+
set volume(value: number);
|
47
|
+
get volume(): number;
|
48
|
+
set muted(value: boolean);
|
49
|
+
get muted(): boolean;
|
50
|
+
get scene(): Scene | null;
|
51
|
+
get scenes(): Scene[];
|
52
|
+
get sceneConfig(): Scenes | null;
|
53
|
+
get videoState(): import("@vouchfor/media-player/dist/src/components/MediaPlayer/controllers/scenes").VideoStateMap | undefined;
|
54
|
+
get mediaPlayer(): MediaPlayer | undefined;
|
55
|
+
play(): void;
|
56
|
+
pause(): void;
|
57
|
+
reset(time?: number, play?: boolean): void;
|
58
|
+
setScene(index: number): void;
|
59
|
+
private _renderStyles;
|
60
|
+
render(): import("lit").TemplateResult<1>;
|
61
|
+
}
|
62
|
+
declare global {
|
63
|
+
interface HTMLElementTagNameMap {
|
64
|
+
'vouch-embed-player': PlayerEmbed;
|
65
|
+
}
|
66
|
+
namespace JSX {
|
67
|
+
interface IntrinsicElements {
|
68
|
+
'vouch-embed-player': PlayerEmbed;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
export { PlayerEmbed };
|
73
|
+
export type { PlayerEmbedProps };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vouchfor/embeds",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.3",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "Aaron Williams",
|
6
6
|
"main": "dist/es/embeds.js",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"dependencies": {
|
43
43
|
"@a11y/focus-trap": "^1.0.5",
|
44
44
|
"@lit/task": "^1.0.0",
|
45
|
-
"@vouchfor/media-player": "^2.1.
|
45
|
+
"@vouchfor/media-player": "^2.1.2",
|
46
46
|
"uuid": "^9.0.1"
|
47
47
|
},
|
48
48
|
"peerDependencies": {
|
@@ -35,6 +35,18 @@ const _DialogEmbed = ({
|
|
35
35
|
aspectRatio=${ifDefined(aspectRatio)}
|
36
36
|
@error=${console.log}
|
37
37
|
></vouch-embed-dialog>
|
38
|
+
<vouch-embed-dialog
|
39
|
+
env=${ifDefined(env)}
|
40
|
+
apiKey=${ifDefined(apiKey)}
|
41
|
+
vouchId=${ifDefined(vouchId)}
|
42
|
+
templateId=${ifDefined(templateId)}
|
43
|
+
.questions=${questions}
|
44
|
+
.controls=${controls}
|
45
|
+
?autoplay=${autoplay}
|
46
|
+
preload=${ifDefined(preload)}
|
47
|
+
aspectRatio=${ifDefined(aspectRatio)}
|
48
|
+
@error=${console.log}
|
49
|
+
></vouch-embed-dialog>
|
38
50
|
</div>
|
39
51
|
`;
|
40
52
|
};
|
@@ -29,19 +29,25 @@ class DialogPortal extends LitElement {
|
|
29
29
|
|
30
30
|
@state() open = false;
|
31
31
|
|
32
|
-
private _handleToggle = () => {
|
33
|
-
this
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
32
|
+
private _handleToggle = ({ detail }: CustomEvent<string>) => {
|
33
|
+
// Because we have to attach this listener to the document since this element is portalled outside of the button,
|
34
|
+
// we also have to make sure that this player is actually the one we want to open and play by passing in an ID
|
35
|
+
// from the button wrapper parent and checking against that same ID we pass as the event detail
|
36
|
+
if (this.id === detail) {
|
37
|
+
this.open = !this.open;
|
38
|
+
|
39
|
+
if (this.open) {
|
40
|
+
if (!this.disableAutoplay && this._mediaPlayerRef?.value) {
|
41
|
+
this._mediaPlayerRef.value.muted = false;
|
42
|
+
this._mediaPlayerRef.value.play();
|
43
|
+
}
|
44
|
+
} else {
|
45
|
+
this._mediaPlayerRef?.value?.pause();
|
39
46
|
}
|
40
|
-
} else {
|
41
|
-
this._mediaPlayerRef?.value?.pause();
|
42
47
|
}
|
43
48
|
};
|
44
49
|
|
50
|
+
// We could do the same thing on close and check for the correct ID but it doesn't really matter
|
45
51
|
private _handleClose = () => {
|
46
52
|
this.open = false;
|
47
53
|
this._mediaPlayerRef?.value?.pause();
|
@@ -70,7 +76,13 @@ class DialogPortal extends LitElement {
|
|
70
76
|
}
|
71
77
|
|
72
78
|
protected createRenderRoot(): HTMLElement | DocumentFragment {
|
73
|
-
|
79
|
+
// We must create a new node here because portalling into the same node (document.body) causes the second
|
80
|
+
// element to overwrite the first for some reason (not behaviour really stated in the docs)
|
81
|
+
// I am fairly certain this function is only run once as the default behaviour creates the open shadow root
|
82
|
+
// and returns that shadow root in this function: https://lit.dev/docs/components/shadow-dom/#implementing-createrenderroot
|
83
|
+
const newNode = document.createElement('div');
|
84
|
+
document.body.appendChild(newNode);
|
85
|
+
return newNode;
|
74
86
|
}
|
75
87
|
|
76
88
|
render() {
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { css, html, LitElement } from 'lit';
|
2
2
|
import { customElement, property } from 'lit/decorators.js';
|
3
3
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
4
|
+
import { v4 as uuidv4 } from 'uuid';
|
4
5
|
|
5
6
|
import type { PlayerEmbedProps } from '../PlayerEmbed';
|
6
7
|
|
@@ -41,8 +42,10 @@ class DialogEmbed extends LitElement {
|
|
41
42
|
@property({ type: Boolean }) disableAutoplay: DialogEmbedProps['disableAutoplay'] = false;
|
42
43
|
@property({ type: Number }) aspectRatio: DialogEmbedProps['aspectRatio'] = 0;
|
43
44
|
|
45
|
+
private _id = uuidv4();
|
46
|
+
|
44
47
|
private _handleRootClick = () => {
|
45
|
-
this.dispatchEvent(new CustomEvent('dialogembed:click', { bubbles: true, composed: true }));
|
48
|
+
this.dispatchEvent(new CustomEvent('dialogembed:click', { detail: this._id, bubbles: true, composed: true }));
|
46
49
|
};
|
47
50
|
|
48
51
|
connectedCallback(): void {
|
@@ -61,6 +64,7 @@ class DialogEmbed extends LitElement {
|
|
61
64
|
<vmp-button size="large">Play</vmp-button>
|
62
65
|
</slot>
|
63
66
|
<vouch-embed-dialog-portal
|
67
|
+
id=${this._id}
|
64
68
|
?autoplay=${false}
|
65
69
|
vouchId=${ifDefined(this.vouchId)}
|
66
70
|
templateId=${ifDefined(this.templateId)}
|
@@ -1,16 +1,15 @@
|
|
1
1
|
import { css, html, LitElement } from 'lit';
|
2
2
|
import { customElement, property, state } from 'lit/decorators.js';
|
3
3
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
4
|
-
import { ref } from 'lit/directives/ref.js';
|
4
|
+
import { createRef, ref } from 'lit/directives/ref.js';
|
5
5
|
|
6
|
-
import type { TemplateInstance } from '@vouchfor/canvas-video';
|
7
|
-
import type { MediaPlayerProps } from '@vouchfor/media-player';
|
6
|
+
import type { Scene, Scenes, TemplateInstance } from '@vouchfor/canvas-video';
|
7
|
+
import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
|
8
8
|
import type { Environment } from '~/utils/env';
|
9
9
|
|
10
10
|
import { EventForwardController } from './controllers/event-forwarder';
|
11
11
|
import { FetcherController } from './controllers/fetcher';
|
12
12
|
import { TrackingController } from './controllers/tracking';
|
13
|
-
import { MediaPlayerProxy } from '~/mixins/media-player-proxy';
|
14
13
|
|
15
14
|
import '@vouchfor/media-player';
|
16
15
|
|
@@ -26,7 +25,7 @@ type PlayerEmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload
|
|
26
25
|
};
|
27
26
|
|
28
27
|
@customElement('vouch-embed-player')
|
29
|
-
class PlayerEmbed extends
|
28
|
+
class PlayerEmbed extends LitElement {
|
30
29
|
static styles = [
|
31
30
|
css`
|
32
31
|
:host {
|
@@ -90,6 +89,108 @@ class PlayerEmbed extends MediaPlayerProxy(LitElement) {
|
|
90
89
|
return this._fetcherController.fetching;
|
91
90
|
}
|
92
91
|
|
92
|
+
private _mediaPlayerRef = createRef<MediaPlayer>();
|
93
|
+
|
94
|
+
get waiting() {
|
95
|
+
return this._mediaPlayerRef.value?.waiting;
|
96
|
+
}
|
97
|
+
|
98
|
+
get initialised() {
|
99
|
+
return this._mediaPlayerRef.value?.initialised;
|
100
|
+
}
|
101
|
+
|
102
|
+
get seeking() {
|
103
|
+
return this._mediaPlayerRef.value?.seeking;
|
104
|
+
}
|
105
|
+
|
106
|
+
get paused() {
|
107
|
+
return this._mediaPlayerRef.value?.paused;
|
108
|
+
}
|
109
|
+
|
110
|
+
get captions() {
|
111
|
+
return this._mediaPlayerRef.value?.captions;
|
112
|
+
}
|
113
|
+
|
114
|
+
get fullscreen() {
|
115
|
+
return this._mediaPlayerRef.value?.fullscreen;
|
116
|
+
}
|
117
|
+
|
118
|
+
get duration() {
|
119
|
+
return this._mediaPlayerRef.value?.duration;
|
120
|
+
}
|
121
|
+
|
122
|
+
set currentTime(value: number) {
|
123
|
+
if (this._mediaPlayerRef.value) {
|
124
|
+
this._mediaPlayerRef.value.currentTime = value;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
get currentTime() {
|
128
|
+
return this._mediaPlayerRef.value?.currentTime ?? 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
set playbackRate(value: number) {
|
132
|
+
if (this._mediaPlayerRef.value) {
|
133
|
+
this._mediaPlayerRef.value.playbackRate = value;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
get playbackRate() {
|
137
|
+
return this._mediaPlayerRef.value?.playbackRate ?? 1;
|
138
|
+
}
|
139
|
+
|
140
|
+
set volume(value: number) {
|
141
|
+
if (this._mediaPlayerRef.value) {
|
142
|
+
this._mediaPlayerRef.value.volume = value;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
get volume() {
|
146
|
+
return this._mediaPlayerRef.value?.volume ?? 1;
|
147
|
+
}
|
148
|
+
|
149
|
+
set muted(value: boolean) {
|
150
|
+
if (this._mediaPlayerRef.value) {
|
151
|
+
this._mediaPlayerRef.value.muted = value;
|
152
|
+
}
|
153
|
+
}
|
154
|
+
get muted() {
|
155
|
+
return this._mediaPlayerRef.value?.muted ?? false;
|
156
|
+
}
|
157
|
+
|
158
|
+
get scene(): Scene | null {
|
159
|
+
return this._mediaPlayerRef.value?.scene ?? null;
|
160
|
+
}
|
161
|
+
|
162
|
+
get scenes(): Scene[] {
|
163
|
+
return this._mediaPlayerRef.value?.scenes ?? [];
|
164
|
+
}
|
165
|
+
|
166
|
+
get sceneConfig(): Scenes | null {
|
167
|
+
return this._mediaPlayerRef.value?.sceneConfig ?? null;
|
168
|
+
}
|
169
|
+
|
170
|
+
get videoState() {
|
171
|
+
return this._mediaPlayerRef.value?.videoState;
|
172
|
+
}
|
173
|
+
|
174
|
+
get mediaPlayer() {
|
175
|
+
return this._mediaPlayerRef.value;
|
176
|
+
}
|
177
|
+
|
178
|
+
play() {
|
179
|
+
this._mediaPlayerRef.value?.play();
|
180
|
+
}
|
181
|
+
|
182
|
+
pause() {
|
183
|
+
this._mediaPlayerRef.value?.pause();
|
184
|
+
}
|
185
|
+
|
186
|
+
reset(time = 0, play = false) {
|
187
|
+
this._mediaPlayerRef.value?.reset(time, play);
|
188
|
+
}
|
189
|
+
|
190
|
+
setScene(index: number) {
|
191
|
+
this._mediaPlayerRef.value?.setScene(index);
|
192
|
+
}
|
193
|
+
|
93
194
|
private _renderStyles() {
|
94
195
|
if (!this.aspectRatio) {
|
95
196
|
return html`
|