@vouchfor/embeds 0.0.0-experiment.df12bef → 0.0.0-experiment.e075b1c
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.
- package/dist/es/embeds.js +981 -1426
- package/dist/es/embeds.js.map +1 -1
- package/dist/es/src/components/DialogEmbed/DialogOverlay.d.ts +20 -0
- package/dist/es/src/components/DialogEmbed/DialogPortal.d.ts +36 -0
- package/dist/es/src/components/DialogEmbed/index.d.ts +38 -0
- package/dist/es/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
- package/dist/es/src/components/{Embed → PlayerEmbed}/controllers/fetcher.d.ts +5 -4
- package/dist/es/src/components/{Embed/controllers/tracking.d.ts → PlayerEmbed/controllers/tracking/index.d.ts} +14 -11
- package/dist/es/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
- package/dist/es/src/components/PlayerEmbed/index.d.ts +77 -0
- package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +4 -0
- package/dist/es/src/components/PlayerEmbed/tests/media-data.d.ts +19 -0
- package/dist/es/src/index.d.ts +2 -1
- package/dist/iife/dialog-embed/embed.iife.js +1759 -0
- package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
- package/dist/iife/embeds.iife.js +671 -457
- package/dist/iife/embeds.iife.js.map +1 -1
- package/dist/iife/player-embed/embed.iife.js +1621 -0
- package/dist/iife/player-embed/embed.iife.js.map +1 -0
- package/package.json +44 -31
- package/src/components/DialogEmbed/Dialog.stories.ts +91 -0
- package/src/components/DialogEmbed/DialogOverlay.ts +131 -0
- package/src/components/DialogEmbed/DialogPortal.ts +126 -0
- package/src/components/DialogEmbed/index.ts +97 -0
- package/src/components/PlayerEmbed/MultiEmbed.stories.ts +135 -0
- package/src/components/{Embed/Embed.stories.ts → PlayerEmbed/PlayerEmbed.stories.ts} +41 -15
- package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
- package/src/components/{Embed → PlayerEmbed}/controllers/fetcher.ts +33 -14
- package/src/components/{Embed/controllers/tracking.ts → PlayerEmbed/controllers/tracking/index.ts} +47 -115
- package/src/components/PlayerEmbed/controllers/tracking/utils.ts +95 -0
- package/src/components/{Embed → PlayerEmbed}/index.ts +86 -27
- package/src/components/PlayerEmbed/tests/PlayerEmbed.spec.ts +87 -0
- package/src/components/PlayerEmbed/tests/data.ts +224 -0
- package/src/components/PlayerEmbed/tests/media-data.ts +22 -0
- package/src/index.ts +2 -1
- package/dist/es/src/components/Embed/index.d.ts +0 -67
@@ -0,0 +1,95 @@
|
|
1
|
+
import { TEMPLATE_VERSION } from '@vouchfor/canvas-video';
|
2
|
+
import { v4 as uuidv4 } from 'uuid';
|
3
|
+
|
4
|
+
import type { TrackingPayload } from '.';
|
5
|
+
import type { Vouch } from '@vouchfor/video-utils';
|
6
|
+
import type { Environment } from '~/utils/env';
|
7
|
+
|
8
|
+
import packageJson from '~/../package.json';
|
9
|
+
import { getEnvUrls } from '~/utils/env';
|
10
|
+
|
11
|
+
function createVisitor(env: Environment) {
|
12
|
+
const { publicApiUrl } = getEnvUrls(env);
|
13
|
+
const visitorId = uuidv4();
|
14
|
+
navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
|
15
|
+
return visitorId;
|
16
|
+
}
|
17
|
+
|
18
|
+
function getUids(env: Environment) {
|
19
|
+
if (typeof window === 'undefined') {
|
20
|
+
return {
|
21
|
+
client: null,
|
22
|
+
tab: null,
|
23
|
+
request: uuidv4()
|
24
|
+
};
|
25
|
+
}
|
26
|
+
|
27
|
+
// Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
|
28
|
+
let visitorId = window.localStorage?.getItem?.('vouch-uid-visitor');
|
29
|
+
// Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
|
30
|
+
let clientId = window.localStorage?.getItem?.('vouch-uid-client');
|
31
|
+
// Persisted in session storage, so we can search for everything the user has done in a specific tab
|
32
|
+
let tabId = window.sessionStorage?.getItem?.('vouch-uid-tab');
|
33
|
+
// Not persisted, allows us to search for any logs related to a single FE request
|
34
|
+
// E.g. BE should pass this request ID through all other services to be able to group logs
|
35
|
+
const requestId = uuidv4();
|
36
|
+
|
37
|
+
// Cache uids
|
38
|
+
if (!visitorId) {
|
39
|
+
visitorId = createVisitor(env);
|
40
|
+
window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
|
41
|
+
}
|
42
|
+
|
43
|
+
if (!clientId) {
|
44
|
+
clientId = uuidv4();
|
45
|
+
window.localStorage?.setItem?.('vouch-uid-client', clientId);
|
46
|
+
}
|
47
|
+
|
48
|
+
if (!tabId) {
|
49
|
+
tabId = uuidv4();
|
50
|
+
window.sessionStorage?.setItem?.('vouch-uid-tab', tabId);
|
51
|
+
}
|
52
|
+
|
53
|
+
return {
|
54
|
+
client: clientId,
|
55
|
+
tab: tabId,
|
56
|
+
request: requestId,
|
57
|
+
visitor: visitorId
|
58
|
+
};
|
59
|
+
}
|
60
|
+
|
61
|
+
function findVouchId(payload?: TrackingPayload, vouch?: Vouch) {
|
62
|
+
if (payload && 'vouchId' in payload) {
|
63
|
+
return payload.vouchId;
|
64
|
+
}
|
65
|
+
return vouch?.id ?? null;
|
66
|
+
}
|
67
|
+
|
68
|
+
function getReportingMetadata(source = 'embedded_player') {
|
69
|
+
const [country, region] = Intl.DateTimeFormat().resolvedOptions().timeZone?.split?.('/') ?? [];
|
70
|
+
|
71
|
+
const utmParams: any = {};
|
72
|
+
[...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
|
73
|
+
if (/utm/.test(key)) {
|
74
|
+
const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
|
75
|
+
utmParams[param] = value;
|
76
|
+
}
|
77
|
+
});
|
78
|
+
|
79
|
+
return {
|
80
|
+
source,
|
81
|
+
time: new Date(),
|
82
|
+
region,
|
83
|
+
country,
|
84
|
+
screenHeight: window.screen.height,
|
85
|
+
screenWidth: window.screen.width,
|
86
|
+
referrer: document.referrer,
|
87
|
+
currentUrl: location.href,
|
88
|
+
embedType: 'media-player-embed',
|
89
|
+
embedVersion: packageJson.version,
|
90
|
+
templateVersion: TEMPLATE_VERSION,
|
91
|
+
...utmParams
|
92
|
+
};
|
93
|
+
}
|
94
|
+
|
95
|
+
export { getUids, findVouchId, getReportingMetadata };
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { html, LitElement } from 'lit';
|
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
4
|
import { createRef, ref } from 'lit/directives/ref.js';
|
5
5
|
|
6
6
|
import type { Scene, Scenes, TemplateInstance } from '@vouchfor/canvas-video';
|
7
7
|
import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
|
8
|
-
import type {
|
8
|
+
import type { PropertyValueMap } from 'lit';
|
9
9
|
import type { Environment } from '~/utils/env';
|
10
10
|
|
11
11
|
import { EventForwardController } from './controllers/event-forwarder';
|
@@ -14,32 +14,45 @@ import { TrackingController } from './controllers/tracking';
|
|
14
14
|
|
15
15
|
import '@vouchfor/media-player';
|
16
16
|
|
17
|
-
type
|
17
|
+
type PlayerEmbedProps = Pick<
|
18
|
+
MediaPlayerProps,
|
19
|
+
'data' | 'aspectRatio' | 'language' | 'preload' | 'autoplay' | 'controls'
|
20
|
+
> & {
|
18
21
|
env: Environment;
|
19
22
|
apiKey: string;
|
20
23
|
disableTracking?: boolean;
|
21
24
|
trackingSource?: string;
|
22
25
|
vouchId?: string;
|
23
26
|
templateId?: string;
|
27
|
+
// Index of the questions to include starting from 1
|
28
|
+
questions?: number[];
|
24
29
|
};
|
25
30
|
|
26
|
-
@customElement('vouch-embed')
|
27
|
-
class
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
@property({ type:
|
37
|
-
@property({ type: String })
|
38
|
-
|
39
|
-
@property({ type: Array })
|
40
|
-
|
41
|
-
@property({ type:
|
42
|
-
@property({ type:
|
31
|
+
@customElement('vouch-embed-player')
|
32
|
+
class PlayerEmbed extends LitElement {
|
33
|
+
static styles = [
|
34
|
+
css`
|
35
|
+
:host {
|
36
|
+
display: flex;
|
37
|
+
}
|
38
|
+
`
|
39
|
+
];
|
40
|
+
|
41
|
+
@property({ type: Object }) data: PlayerEmbedProps['data'];
|
42
|
+
@property({ type: String }) vouchId: PlayerEmbedProps['vouchId'];
|
43
|
+
@property({ type: String }) templateId: PlayerEmbedProps['templateId'];
|
44
|
+
@property({ type: Array }) questions: PlayerEmbedProps['questions'];
|
45
|
+
|
46
|
+
@property({ type: String }) env: PlayerEmbedProps['env'] = 'prod';
|
47
|
+
@property({ type: String }) apiKey: PlayerEmbedProps['apiKey'] = '';
|
48
|
+
@property({ type: Boolean }) disableTracking: PlayerEmbedProps['disableTracking'] = false;
|
49
|
+
@property({ type: String }) trackingSource: PlayerEmbedProps['trackingSource'] = 'embedded_player';
|
50
|
+
|
51
|
+
@property({ type: Array }) controls: PlayerEmbedProps['controls'];
|
52
|
+
@property({ type: String }) preload: PlayerEmbedProps['preload'] = 'auto';
|
53
|
+
@property({ type: Boolean }) autoplay: PlayerEmbedProps['autoplay'] = false;
|
54
|
+
@property({ type: Number }) aspectRatio: PlayerEmbedProps['aspectRatio'] = 0;
|
55
|
+
@property({ type: String }) language?: MediaPlayerProps['language'];
|
43
56
|
|
44
57
|
private eventController = new EventForwardController(this, [
|
45
58
|
'durationchange',
|
@@ -52,10 +65,12 @@ class Embed extends LitElement {
|
|
52
65
|
'playing',
|
53
66
|
'ratechange',
|
54
67
|
'scenechange',
|
68
|
+
'scenesupdate',
|
55
69
|
'seeking',
|
56
70
|
'seeked',
|
57
71
|
'timeupdate',
|
58
72
|
'volumechange',
|
73
|
+
'processing',
|
59
74
|
'waiting',
|
60
75
|
|
61
76
|
'video:loadeddata',
|
@@ -74,17 +89,23 @@ class Embed extends LitElement {
|
|
74
89
|
// @ts-ignore
|
75
90
|
private _trackingController = new TrackingController(this);
|
76
91
|
|
77
|
-
@state() vouch:
|
92
|
+
@state() vouch: PlayerEmbedProps['data'];
|
78
93
|
@state() template: TemplateInstance | undefined;
|
79
94
|
|
80
95
|
get fetching() {
|
81
96
|
return this._fetcherController.fetching;
|
82
97
|
}
|
83
98
|
|
99
|
+
private _mediaPlayerRef = createRef<MediaPlayer>();
|
100
|
+
|
84
101
|
get waiting() {
|
85
102
|
return this._mediaPlayerRef.value?.waiting;
|
86
103
|
}
|
87
104
|
|
105
|
+
get initialised() {
|
106
|
+
return this._mediaPlayerRef.value?.initialised;
|
107
|
+
}
|
108
|
+
|
88
109
|
get seeking() {
|
89
110
|
return this._mediaPlayerRef.value?.seeking;
|
90
111
|
}
|
@@ -169,13 +190,50 @@ class Embed extends LitElement {
|
|
169
190
|
this._mediaPlayerRef.value?.pause();
|
170
191
|
}
|
171
192
|
|
193
|
+
reset(time = 0, play = false) {
|
194
|
+
this._mediaPlayerRef.value?.reset(time, play);
|
195
|
+
}
|
196
|
+
|
172
197
|
setScene(index: number) {
|
173
198
|
this._mediaPlayerRef.value?.setScene(index);
|
174
199
|
}
|
175
200
|
|
201
|
+
private _renderStyles() {
|
202
|
+
if (!this.aspectRatio) {
|
203
|
+
return html`
|
204
|
+
<style>
|
205
|
+
:host {
|
206
|
+
width: 100%;
|
207
|
+
height: 100%;
|
208
|
+
}
|
209
|
+
</style>
|
210
|
+
`;
|
211
|
+
}
|
212
|
+
|
213
|
+
if (typeof this.aspectRatio === 'number') {
|
214
|
+
return html`
|
215
|
+
<style>
|
216
|
+
:host {
|
217
|
+
aspect-ratio: ${this.aspectRatio};
|
218
|
+
}
|
219
|
+
</style>
|
220
|
+
`;
|
221
|
+
}
|
222
|
+
|
223
|
+
return null;
|
224
|
+
}
|
225
|
+
|
226
|
+
protected willUpdate(changedProperties: PropertyValueMap<PlayerEmbedProps>) {
|
227
|
+
// If the vouch this embed is pointing to changes then reset the player
|
228
|
+
if (changedProperties.has('vouchId') && this.vouchId !== changedProperties.get('vouchId')) {
|
229
|
+
this.reset(0, false);
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
176
233
|
render() {
|
177
234
|
return html`
|
178
|
-
|
235
|
+
${this._renderStyles()}
|
236
|
+
<vmp-media-player
|
179
237
|
${ref(this._mediaPlayerRef)}
|
180
238
|
${this.eventController.register()}
|
181
239
|
?autoplay=${this.autoplay}
|
@@ -184,23 +242,24 @@ class Embed extends LitElement {
|
|
184
242
|
.template=${this.template}
|
185
243
|
aspectRatio=${ifDefined(this.aspectRatio)}
|
186
244
|
preload=${ifDefined(this.preload)}
|
245
|
+
language=${ifDefined(this.language)}
|
187
246
|
.controls=${this.controls}
|
188
|
-
></vmp-
|
247
|
+
></vmp-media-player>
|
189
248
|
`;
|
190
249
|
}
|
191
250
|
}
|
192
251
|
|
193
252
|
declare global {
|
194
253
|
interface HTMLElementTagNameMap {
|
195
|
-
'vouch-embed':
|
254
|
+
'vouch-embed-player': PlayerEmbed;
|
196
255
|
}
|
197
256
|
|
198
257
|
namespace JSX {
|
199
258
|
interface IntrinsicElements {
|
200
|
-
'vouch-embed':
|
259
|
+
'vouch-embed-player': PlayerEmbed;
|
201
260
|
}
|
202
261
|
}
|
203
262
|
}
|
204
263
|
|
205
|
-
export {
|
206
|
-
export type {
|
264
|
+
export { PlayerEmbed };
|
265
|
+
export type { PlayerEmbedProps };
|
@@ -0,0 +1,87 @@
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
2
|
+
import { expect, fixture, waitUntil } from '@open-wc/testing';
|
3
|
+
import { html } from 'lit';
|
4
|
+
import sinon from 'sinon';
|
5
|
+
|
6
|
+
import type { PlayerEmbed } from '../index.js';
|
7
|
+
import type { VideoMap } from '@vouchfor/media-player';
|
8
|
+
|
9
|
+
import { data } from './data.js';
|
10
|
+
|
11
|
+
// Can't use typescript aliases with esbuild file transforms apparently
|
12
|
+
// No idea what a good way to actually build before testing is, the examples give nothing
|
13
|
+
// https://modern-web.dev/guides/test-runner/typescript/
|
14
|
+
import '../../../test/lib/embeds.js';
|
15
|
+
|
16
|
+
function getVideo(videos: VideoMap) {
|
17
|
+
return Object.values(videos)[0];
|
18
|
+
}
|
19
|
+
|
20
|
+
function playerLoaded(player: PlayerEmbed) {
|
21
|
+
return waitUntil(
|
22
|
+
() => {
|
23
|
+
return player.mediaPlayer?.initialised;
|
24
|
+
},
|
25
|
+
'Player has not loaded video',
|
26
|
+
{ timeout: 20000 }
|
27
|
+
);
|
28
|
+
}
|
29
|
+
|
30
|
+
describe('Embeds', () => {
|
31
|
+
it('Sends correct tracking events', async () => {
|
32
|
+
const player = await fixture<PlayerEmbed>(
|
33
|
+
html`<vouch-embed-player env="dev" .data=${data} aspectratio=${1}></vouch-embed-player>`
|
34
|
+
);
|
35
|
+
// @ts-ignore - accessing private property
|
36
|
+
const sendTrackingSpy = sinon.spy(player._trackingController, '_sendTrackingEvent');
|
37
|
+
// @ts-ignore - accessing private property
|
38
|
+
const createTrackingSpy = sinon.spy(player._trackingController, '_createTrackingEvent');
|
39
|
+
|
40
|
+
await playerLoaded(player);
|
41
|
+
// Have to mute the player because we can't programmatically play videos with sound
|
42
|
+
player.muted = true;
|
43
|
+
player.play();
|
44
|
+
expect(player.paused).eq(false);
|
45
|
+
await waitUntil(
|
46
|
+
() => {
|
47
|
+
// Video plays for 3 seconds
|
48
|
+
return (getVideo(player.mediaPlayer!.videos)?.node?.currentTime ?? 0) > 3;
|
49
|
+
},
|
50
|
+
'Video did not play for 3 seconds',
|
51
|
+
{ timeout: 20000 }
|
52
|
+
);
|
53
|
+
expect(getVideo(player.mediaPlayer!.videos)?.node?.paused).eq(false);
|
54
|
+
player.pause();
|
55
|
+
expect(getVideo(player.mediaPlayer!.videos)?.node?.paused).eq(true);
|
56
|
+
expect(sendTrackingSpy.callCount).to.be.eq(0);
|
57
|
+
// Destroy node because events are sent when node is removed from the document
|
58
|
+
player.remove();
|
59
|
+
await waitUntil(
|
60
|
+
() => {
|
61
|
+
return createTrackingSpy.args[2];
|
62
|
+
},
|
63
|
+
'Cleanup event has not fired',
|
64
|
+
{ timeout: 5000 }
|
65
|
+
);
|
66
|
+
expect(sendTrackingSpy.callCount).to.be.eq(1);
|
67
|
+
expect(createTrackingSpy.args[0]).to.eql([
|
68
|
+
'VIDEO_PLAYED',
|
69
|
+
{
|
70
|
+
streamStart: 0
|
71
|
+
}
|
72
|
+
]);
|
73
|
+
expect(createTrackingSpy.args[1]).to.eql([
|
74
|
+
'VOUCH_RESPONSE_VIEWED',
|
75
|
+
{
|
76
|
+
answerId: '5c66bb3a-ed68-41a0-a601-a49865104418'
|
77
|
+
}
|
78
|
+
]);
|
79
|
+
expect(createTrackingSpy.args[2][0]).to.eq('VIDEO_STREAMED');
|
80
|
+
// Remove streamStart and streamEnd as these are non-deterministic
|
81
|
+
expect({ ...createTrackingSpy.args[2][1], streamStart: undefined, streamEnd: undefined }).to.eql({
|
82
|
+
answerId: '5c66bb3a-ed68-41a0-a601-a49865104418',
|
83
|
+
streamStart: undefined,
|
84
|
+
streamEnd: undefined
|
85
|
+
});
|
86
|
+
});
|
87
|
+
});
|
@@ -0,0 +1,224 @@
|
|
1
|
+
import type { Vouch } from '@vouchfor/video-utils';
|
2
|
+
|
3
|
+
import { VIDEOA, VIDEOB, VIDEOC } from './media-data';
|
4
|
+
|
5
|
+
/* eslint-disable max-lines */
|
6
|
+
const data: Vouch = {
|
7
|
+
id: '85a7f7fb-897c-41a4-be7b-2636cf991f2c',
|
8
|
+
hashId: '6JQEIPeStt',
|
9
|
+
settings: {
|
10
|
+
branding: {
|
11
|
+
base: {
|
12
|
+
primary: {
|
13
|
+
color: '#48aff7',
|
14
|
+
text: '#def2ff'
|
15
|
+
},
|
16
|
+
secondary: {
|
17
|
+
color: '#fdbdfa',
|
18
|
+
text: '#8b26bf'
|
19
|
+
},
|
20
|
+
radius: '8px'
|
21
|
+
}
|
22
|
+
}
|
23
|
+
},
|
24
|
+
questions: {
|
25
|
+
items: [
|
26
|
+
{
|
27
|
+
id: '5c66bb3a-ed68-41a0-a601-a49865104418',
|
28
|
+
title: "What is the business problem you're trying to solve?",
|
29
|
+
answer: {
|
30
|
+
id: '5c66bb3a-ed68-41a0-a601-a49865104418',
|
31
|
+
label: null,
|
32
|
+
metadata: {
|
33
|
+
duration: VIDEOA.duration
|
34
|
+
},
|
35
|
+
settings: {
|
36
|
+
endOffset: 0,
|
37
|
+
startOffset: 0
|
38
|
+
},
|
39
|
+
media: {
|
40
|
+
input: VIDEOA.mp4,
|
41
|
+
video: VIDEOA.mp4,
|
42
|
+
playlist: VIDEOA.m3u8,
|
43
|
+
thumbnail: VIDEOA.jpg,
|
44
|
+
videos: {
|
45
|
+
xs: VIDEOA.mp4
|
46
|
+
}
|
47
|
+
},
|
48
|
+
contact: {
|
49
|
+
id: 'b62f62a3-0cd4-4512-9b52-121cb2f3e72f',
|
50
|
+
name: 'Aaron Williams',
|
51
|
+
roleTitle: 'Software Engineer',
|
52
|
+
client: {
|
53
|
+
id: '03540d70-1c75-4867-a235-bac842ed6ce4',
|
54
|
+
name: 'Not Supplied',
|
55
|
+
logoSrc: 'https://vouch-clients.s3.ap-southeast-2.amazonaws.com/vouch/logos/vouch-logotype-teal.png'
|
56
|
+
}
|
57
|
+
},
|
58
|
+
captions: {
|
59
|
+
current:
|
60
|
+
"WEBVTT\r\n\r\n1\r\n00:00:01.710 --> 00:00:05.250\r\nwe are trying to solve, uh, world hunger.\r\n\r\n2\r\n00:00:05.420 --> 00:00:08.369\r\nI think it's an important goal. Uh, we\r\n\r\n3\r\n00:00:08.380 --> 00:00:09.489\r\nalso would like to get rid of\r\n\r\n4\r\n00:00:09.500 --> 00:00:12.050\r\ntuberculosis. Um, in general. And\r\n\r\n5\r\n00:00:12.060 --> 00:00:15.329\r\nprobably malaria, too. Uh, it's gonna be\r\n\r\n6\r\n00:00:15.340 --> 00:00:17.180\r\na couple of weeks, but I think we can do\r\n\r\n7\r\n00:00:17.190 --> 00:00:17.319\r\nit.\r\n",
|
61
|
+
translation:
|
62
|
+
'WEBVTT\n\n1\n00:00:01.549 --> 00:00:05.920\n🇯🇵 🙏 こんにちは 藤森 章 です 。 え ? 今 日本 の え ? 東京 に 住ん で\n\n2\n00:00:05.929 --> 00:00:11.359\nいる 高校 三 年 生 です 。 えっと 父親 が 日本 人 で 母親 が は\n\n3\n00:00:11.619 --> 00:00:13.130\nえー 中国 人 な ん です けれど も 。\n\n4\n00:00:13.939 --> 00:00:17.889\nえ ? 上海 に 行っ た 時 に 国際 学校 に 通っ て い た の で 。\n\n5\n00:00:17.899 --> 00:00:20.389\nえー 英語 を 日本 語 、 中国 語 、 三 語 を しゃ ます\n\n6\n00:00:21.030 --> 00:00:23.549\nえー で 、 その 中 で 経験 し た こと な ん です けれど も 、\n\n7\n00:00:24.040 --> 00:00:26.700\n日本 語 の 素晴らしい ところ って いう の は 、\n\n8\n00:00:27.260 --> 00:00:27.809\nやっぱり\n\n9\n00:00:28.489 --> 00:00:31.540\n和歌 に も 見 られる よう な 多彩 な 表現 力 と\n\n10\n00:00:32.349 --> 00:00:33.819\nえ 奥深い\n\n11\n00:00:34.770 --> 00:00:38.520\nえー 、 感情 表現 など に ある と 思い ます 。 えー これ を 見 て\n\n12\n00:00:38.759 --> 00:00:41.599\n日本 語 に 興味 を 持っ た 方 は 、 是非 その\n\n13\n00:00:43.180 --> 00:00:43.770\n奥深い\n\n14\n00:00:44.299 --> 00:00:45.630\n表現 など を え 、\n\n15\n00:00:46.299 --> 00:00:49.209\n見 て 、 感じ て えー 、 触れ て み て ください 。 ありがとう\n\n16\n00:00:49.220 --> 00:00:49.599\nござい まし た 。\n'
|
63
|
+
},
|
64
|
+
transcription: {
|
65
|
+
language: 'en',
|
66
|
+
translation: {
|
67
|
+
language: 'ja'
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
},
|
72
|
+
{
|
73
|
+
id: '5c66bb3a-ed68-41a0-a601-a49865104418',
|
74
|
+
title: "What is the business problem you're trying to solve?",
|
75
|
+
answer: {
|
76
|
+
id: '5c66bb3a-ed68-41a0-a601-a49865104418',
|
77
|
+
label: null,
|
78
|
+
metadata: {
|
79
|
+
duration: VIDEOA.duration
|
80
|
+
},
|
81
|
+
settings: {
|
82
|
+
endOffset: 0.385945945945946,
|
83
|
+
startOffset: 0.3037837837837838,
|
84
|
+
crop: {
|
85
|
+
x: 0.4,
|
86
|
+
y: 0.4,
|
87
|
+
width: 0.4,
|
88
|
+
height: 0.4
|
89
|
+
}
|
90
|
+
},
|
91
|
+
media: {
|
92
|
+
input: VIDEOA.mp4,
|
93
|
+
video: VIDEOA.mp4,
|
94
|
+
playlist: VIDEOA.m3u8,
|
95
|
+
thumbnail: VIDEOA.jpg,
|
96
|
+
videos: {
|
97
|
+
xs: VIDEOA.mp4
|
98
|
+
}
|
99
|
+
},
|
100
|
+
contact: {
|
101
|
+
id: 'b62f62a3-0cd4-4512-9b52-121cb2f3e72f',
|
102
|
+
name: 'Aaron Williams',
|
103
|
+
roleTitle: 'Software Engineer',
|
104
|
+
client: {
|
105
|
+
id: '03540d70-1c75-4867-a235-bac842ed6ce4',
|
106
|
+
logoSrc: 'https://vouch-clients.s3.ap-southeast-2.amazonaws.com/vouch/logos/vouch-logotype-teal.png'
|
107
|
+
}
|
108
|
+
},
|
109
|
+
captions: {
|
110
|
+
current:
|
111
|
+
"WEBVTT\r\n\r\n1\r\n00:00:01.710 --> 00:00:05.250\r\nwe are trying to solve, uh, world hunger.\r\n\r\n2\r\n00:00:05.420 --> 00:00:08.369\r\nI think it's an important goal. Uh, we\r\n\r\n3\r\n00:00:08.380 --> 00:00:09.489\r\nalso would like to get rid of\r\n\r\n4\r\n00:00:09.500 --> 00:00:12.050\r\ntuberculosis. Um, in general. And\r\n\r\n5\r\n00:00:12.060 --> 00:00:15.329\r\nprobably malaria, too. Uh, it's gonna be\r\n\r\n6\r\n00:00:15.340 --> 00:00:17.180\r\na couple of weeks, but I think we can do\r\n\r\n7\r\n00:00:17.190 --> 00:00:17.319\r\nit.\r\n"
|
112
|
+
},
|
113
|
+
transcription: {
|
114
|
+
language: 'en',
|
115
|
+
translation: {
|
116
|
+
language: 'fr'
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
},
|
121
|
+
{
|
122
|
+
id: 'e77c81a7-f6ef-4eae-91fc-b620d092d8d6',
|
123
|
+
title: 'What are the priorities for your business/team this quarter?',
|
124
|
+
answer: {
|
125
|
+
id: 'e77c81a7-f6ef-4eae-91fc-b620d092d8d6',
|
126
|
+
label: 'Hello this label is overridden',
|
127
|
+
metadata: {
|
128
|
+
duration: VIDEOB.duration
|
129
|
+
},
|
130
|
+
settings: {
|
131
|
+
endOffset: 0,
|
132
|
+
startOffset: 0
|
133
|
+
},
|
134
|
+
media: {
|
135
|
+
input: VIDEOB.mp4,
|
136
|
+
video: VIDEOB.mp4,
|
137
|
+
playlist: VIDEOB.m3u8,
|
138
|
+
thumbnail: VIDEOB.jpg,
|
139
|
+
videos: {
|
140
|
+
xs: VIDEOB.mp4
|
141
|
+
}
|
142
|
+
},
|
143
|
+
contact: {
|
144
|
+
id: 'b62f62a3-0cd4-4512-9b52-121cb2f3e72f',
|
145
|
+
name: 'Aaron Williams',
|
146
|
+
roleTitle: 'Software Engineer',
|
147
|
+
client: {
|
148
|
+
id: '03540d70-1c75-4867-a235-bac842ed6ce4',
|
149
|
+
name: 'Vouch',
|
150
|
+
logoSrc: 'https://vouch-clients.s3.ap-southeast-2.amazonaws.com/vouch/logos/vouch-logotype-teal.png'
|
151
|
+
}
|
152
|
+
},
|
153
|
+
captions: {
|
154
|
+
current:
|
155
|
+
'WEBVTT\r\n\r\n1\r\n00:00:00.709 --> 00:00:03.059\r\npriorities for this business. Uh, for\r\n\r\n2\r\n00:00:03.069 --> 00:00:06.010\r\nthis quarter, uh, to make more money,\r\n\r\n3\r\n00:00:06.019 --> 00:00:09.050\r\nmore profits, Uh, get everything, uh,\r\n\r\n4\r\n00:00:09.069 --> 00:00:13.439\r\nswept away. All our heuristics should be\r\n\r\n5\r\n00:00:13.529 --> 00:00:15.119\r\ntop of the line.\r\n'
|
156
|
+
},
|
157
|
+
transcription: {
|
158
|
+
language: 'en',
|
159
|
+
translation: {
|
160
|
+
language: 'de'
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
},
|
165
|
+
{
|
166
|
+
id: '39fd188d-a4dc-43b9-bac8-32fd71bfbc90',
|
167
|
+
title: `"Emoji": 🇯🇵 🙏
|
168
|
+
\t\t'Arabic': خَرَجَ الوَلَدُ.
|
169
|
+
Chinese: 简化字不讲理\f
|
170
|
+
Hebrew: עִבְרִית\r\r
|
171
|
+
Japanese Kanji: 漢字\n
|
172
|
+
\\\\\\///
|
173
|
+
Japanese Hiragana: 平仮名
|
174
|
+
Japanese Katakana: 片仮名
|
175
|
+
Devangari Hindi: ॳॴॶॷऎऒऔ
|
176
|
+
Korean Hangul: 정음/正音
|
177
|
+
Cyrillic: АБВГДЕЖЗИКЛМН
|
178
|
+
Greek: αβγδ`,
|
179
|
+
answer: {
|
180
|
+
id: '39fd188d-a4dc-43b9-bac8-32fd71bfbc90',
|
181
|
+
label: null,
|
182
|
+
metadata: {
|
183
|
+
duration: VIDEOC.duration
|
184
|
+
},
|
185
|
+
settings: {
|
186
|
+
endOffset: 0,
|
187
|
+
startOffset: 0
|
188
|
+
},
|
189
|
+
media: {
|
190
|
+
input: VIDEOC.mp4,
|
191
|
+
video: VIDEOC.mp4,
|
192
|
+
playlist: VIDEOC.m3u8,
|
193
|
+
thumbnail: VIDEOC.jpg,
|
194
|
+
videos: {
|
195
|
+
xs: VIDEOC.mp4
|
196
|
+
}
|
197
|
+
},
|
198
|
+
contact: {
|
199
|
+
id: 'b62f62a3-0cd4-4512-9b52-121cb2f3e72f',
|
200
|
+
name: 'Aaron Williams',
|
201
|
+
client: {
|
202
|
+
id: '03540d70-1c75-4867-a235-bac842ed6ce4',
|
203
|
+
name: 'Vouch',
|
204
|
+
logoSrc: 'https://vouch-clients.s3.ap-southeast-2.amazonaws.com/vouch/logos/vouch-logotype-teal.png'
|
205
|
+
}
|
206
|
+
},
|
207
|
+
captions: {
|
208
|
+
current:
|
209
|
+
"WEBVTT\r\n\r\n1\r\n00:00:00.790 --> 00:00:03.269\r\nuh, the biggest pain points this this\r\n\r\n2\r\n00:00:03.279 --> 00:00:07.170\r\nquarter. Um, Jerry has been doing the\r\n\r\n3\r\n00:00:07.179 --> 00:00:09.180\r\nworst work that he's ever been doing.\r\n\r\n4\r\n00:00:09.390 --> 00:00:11.680\r\nAnd we must fire him, Jerry. Goodbye,\r\n\r\n5\r\n00:00:11.689 --> 00:00:12.149\r\nJerry.\r\n"
|
210
|
+
}
|
211
|
+
}
|
212
|
+
}
|
213
|
+
]
|
214
|
+
}
|
215
|
+
};
|
216
|
+
|
217
|
+
const withNullAnswer = {
|
218
|
+
...data,
|
219
|
+
questions: {
|
220
|
+
items: [...data.questions.items, { id: 'null', answer: null }]
|
221
|
+
}
|
222
|
+
} as Vouch;
|
223
|
+
|
224
|
+
export { data, withNullAnswer };
|
@@ -0,0 +1,22 @@
|
|
1
|
+
const VIDEOA = {
|
2
|
+
mp4: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/01/output.mp4',
|
3
|
+
m3u8: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/01/master.m3u8',
|
4
|
+
jpg: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/01/output.jpg',
|
5
|
+
duration: 7.29
|
6
|
+
};
|
7
|
+
|
8
|
+
const VIDEOB = {
|
9
|
+
mp4: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/02/output.mp4',
|
10
|
+
m3u8: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/02/master.m3u8',
|
11
|
+
jpg: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/02/output.jpg',
|
12
|
+
duration: 40.4
|
13
|
+
};
|
14
|
+
|
15
|
+
const VIDEOC = {
|
16
|
+
mp4: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/03/output.mp4',
|
17
|
+
m3u8: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/03/master.m3u8',
|
18
|
+
jpg: 'https://media-player-test-videos.s3.ap-southeast-2.amazonaws.com/03/output.jpg',
|
19
|
+
duration: 30.33
|
20
|
+
};
|
21
|
+
|
22
|
+
export { VIDEOA, VIDEOB, VIDEOC };
|
package/src/index.ts
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
export {
|
1
|
+
export { PlayerEmbed } from '~/components/PlayerEmbed';
|
2
|
+
export { DialogEmbed } from '~/components/DialogEmbed';
|