summaryrefslogtreecommitdiff
path: root/src/components/VideoPlayer.svelte
blob: 8012b9fe0076a57487dc42e61e1ac2b9ce37c532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<script lang="ts">
    import { intersectionObserver } from '@amp/web-app-components/src/actions/intersection-observer';
    import MotionArtwork from '~/components/MotionArtwork.svelte';
    import { getJet } from '~/jet';
    import { getI18n } from '~/stores/i18n';
    import type { Video } from '@jet-app/app-store/api/models';
    import {
        MetricsActionDetails,
        MetricsActionType,
        type MetricsActionDetailItem,
        type MetricsActionTypeItem,
    } from '~/constants/media-metrics';

    /** HTML `id` attribute for the <video /> element */
    export let id: string;

    /** Source URL for the video, an HLS playlist ending in .m3u8 */
    export let src: string;

    /** Poster image to show while the video is loading */
    export let poster: string | undefined;

    /** If the video should play automatically when in view */
    export let autoplay: boolean = false;

    /* The whole-number percentage amount of the video needs to be in view before autoplay kicks in */
    export let autoplayVisibilityThreshold: number = 0;

    /** If the video should loop from end to start. */
    export let loop: boolean = false;

    /** If the audio should be muted on the video. */
    export let muted: boolean = true;

    /** If our controls should be shown in the video player. */
    export let useControls: boolean = true;

    /** The constructor to use for creating an Hls playback session. */
    export let HLS: Window['Hls'] = window.Hls;

    /**
     * If we should bypass the `poster` attribute on the `video` tag, in favor of having the poster
     * image overlaid as it's own DOM element, which covers an HLS playback bug in Safari, wherein
     * the video is seeked to the first frame once the metadata is loaded, thus removing the poster.
     */
    export let shouldSuperimposePosterImage: boolean = false;

    /** an optional metric template provided by jet */
    export let metricsTemplate:
        | Record<string, unknown>
        | Video['templateMediaEvent'] = {};

    export function play(isAutoPlay = true) {
        videoRef?.play();
        recordMediaEvent(
            MetricsActionType.PLAY,
            isAutoPlay
                ? MetricsActionDetails.AUTOPLAY
                : MetricsActionDetails.PLAY,
        );
    }

    export function pause(isAutoPause = true) {
        recordMediaEvent(
            MetricsActionType.STOP,
            isAutoPause
                ? MetricsActionDetails.AUTOPAUSE
                : MetricsActionDetails.PAUSE,
        );

        videoRef?.pause();
    }

    let isPaused: boolean = !autoplay;
    let isMuted: boolean = muted;
    let shouldShowReplayControl: boolean = false;
    let shouldShowPlaybackControls: boolean = true;
    let hasPlaybackBeenInitiated: boolean = false;
    let videoRef: HTMLVideoElement | null = null;

    const i18n = getI18n();
    const jet = getJet();

    const handleFullScreenButtonClick = () => {
        videoRef?.requestFullscreen();
    };

    const handleReplayButtonClick = () => {
        if (videoRef) {
            videoRef.currentTime = 0;
            videoRef.play();
            shouldShowPlaybackControls = true;
        }
    };

    const handlePlayButtonClick = () => {
        if (isPaused) {
            play(false);
        } else {
            pause(false);
        }
    };

    const handleMuteButtonClick = () => {
        isMuted = !isMuted;
    };

    const handleVideoEnded = () => {
        if (!loop) {
            shouldShowPlaybackControls = true;

            if (videoRef) {
                videoRef.currentTime = 1;
                videoRef.pause();
            }

            recordMediaEvent(
                MetricsActionType.STOP,
                MetricsActionDetails.COMPLETE,
            );
        }
    };

    const handleVideoPlay = () => {
        // Display the replay button after the first play
        shouldShowReplayControl = true;
        hasPlaybackBeenInitiated = true;
    };

    // metric events that are waiting for loadMetadata from video element
    let queuedMetricEvents: Array<() => void> = [];

    // flush any metric events once load metadata has been called
    const flushMetricEvents = () => {
        queuedMetricEvents.forEach((recordFn) => recordFn());

        queuedMetricEvents = [];
    };

    const recordMediaEvent = (
        actionType: MetricsActionTypeItem,
        actionDetail: MetricsActionDetailItem,
    ) => {
        if (!metricsTemplate?.fields) {
            return;
        }

        const recordEvent = () => {
            const duration = Math.floor(videoRef?.duration ?? 0) * 1000;
            const position = Math.min(
                Math.floor((videoRef?.currentTime ?? 0) * 1000),
                duration,
            );
            jet.recordCustomMetricsEvent({
                ...(metricsTemplate?.fields ?? {}),
                actionType: actionType,
                actionDetails: actionDetail,
                url: src,
                duration,
                position,
                topic: metricsTemplate?.topic ?? '',
            });
        };

        if (Number.isNaN(videoRef?.duration)) {
            queuedMetricEvents.push(() => recordEvent());
        } else {
            recordEvent();
        }
    };

    const isVideoPlaying = (video: HTMLVideoElement | null) => {
        if (!video) {
            return false;
        }
        return !!(
            video.currentTime > 0 &&
            !video.paused &&
            !video.ended &&
            video.readyState > 2
        );
    };

    const intersectionObserverConfig = {
        threshold: autoplayVisibilityThreshold,
        callback: (isIntersectingViewport: boolean) => {
            if (isIntersectingViewport) {
                play();
            } else if (isVideoPlaying(videoRef)) {
                pause();
            }
        },
    };
</script>

<div
    class="video-container"
    use:intersectionObserver={autoplay ? intersectionObserverConfig : undefined}
>
    <div class="video">
        <MotionArtwork
            {id}
            {HLS}
            {src}
            {loop}
            poster={!shouldSuperimposePosterImage ? poster : undefined}
            bind:muted={isMuted}
            bind:paused={isPaused}
            bind:videoElement={videoRef}
            on:play={handleVideoPlay}
            on:ended={handleVideoEnded}
            on:loadedmetadata={flushMetricEvents}
        />
    </div>

    {#if shouldSuperimposePosterImage && !hasPlaybackBeenInitiated}
        <img
            src={poster}
            class="fake-poster"
            aria-hidden="true"
            loading="lazy"
            alt=""
        />
    {/if}

    {#if useControls}
        <div class="video-control">
            {#if shouldShowReplayControl}
                <button
                    class="video-control-replay"
                    aria-label={$i18n.t(
                        'ASE.Web.AppStore.VideoPlayer.AX.Replay',
                    )}
                    on:click={handleReplayButtonClick}
                >
                    <img
                        class="btn-img"
                        src="/assets/images/video-control/video-control-replay.png"
                        alt={$i18n.t('ASE.Web.AppStore.VideoPlayer.AX.Replay')}
                        aria-hidden="true"
                    />
                </button>
            {/if}

            {#if shouldShowPlaybackControls}
                <div class="video-control-playback">
                    <button
                        class="video-control-play"
                        aria-label={$i18n.t(
                            isPaused
                                ? 'ASE.Web.AppStore.VideoPlayer.AX.Play'
                                : 'ASE.Web.AppStore.VideoPlayer.AX.Pause',
                        )}
                        on:click={handlePlayButtonClick}
                    >
                        {#if isPaused}
                            <img
                                class="btn-img"
                                src="/assets/images/video-control/video-control-play.png"
                                alt={$i18n.t(
                                    'ASE.Web.AppStore.VideoPlayer.AX.Play',
                                )}
                                aria-hidden="true"
                            />
                        {:else}
                            <img
                                class="btn-img"
                                src="/assets/images/video-control/video-control-pause.png"
                                alt={$i18n.t(
                                    'ASE.Web.AppStore.VideoPlayer.AX.Pause',
                                )}
                                aria-hidden="true"
                            />
                        {/if}
                    </button>

                    <button
                        class="video-control-unmute"
                        aria-label={$i18n.t(
                            isMuted
                                ? 'ASE.Web.AppStore.VideoPlayer.AX.Unmute'
                                : 'ASE.Web.AppStore.VideoPlayer.AX.Mute',
                        )}
                        on:click={handleMuteButtonClick}
                    >
                        {#if isMuted}
                            <img
                                class="btn-img"
                                src="/assets/images/video-control/video-control-volume-muted.png"
                                alt={$i18n.t(
                                    'ASE.Web.AppStore.VideoPlayer.AX.Mute',
                                )}
                                aria-hidden="true"
                            />
                        {:else}
                            <img
                                class="btn-img"
                                src="/assets/images/video-control/video-control-volume.png"
                                alt={$i18n.t(
                                    'ASE.Web.AppStore.VideoPlayer.AX.Unmute',
                                )}
                                aria-hidden="true"
                            />
                        {/if}
                    </button>

                    <button
                        class="video-control-fullscreen"
                        aria-label={$i18n.t(
                            'ASE.Web.AppStore.VideoPlayer.AX.Fullscreen',
                        )}
                        on:click={handleFullScreenButtonClick}
                    >
                        <img
                            class="btn-img"
                            src="/assets/images/video-control/video-control-fullscreen.png"
                            alt={$i18n.t(
                                'ASE.Web.AppStore.VideoPlayer.AX.Fullscreen',
                            )}
                            aria-hidden="true"
                        />
                    </button>
                </div>
            {/if}
        </div>
    {/if}
</div>

<style>
    .video-container {
        --button-size: 32px;
        display: grid;
        position: relative;
        container-type: inline-size;
        container-name: video-container;
        width: 100%;
        height: 100%;
        background-color: var(--systemQuaternary);
    }

    .video {
        width: 100%;
        height: 100%;
        grid-column: 1;
        grid-row: 1;
        line-height: 0;
    }

    .video-control {
        grid-column: 1;
        grid-row: 1;
        display: inline-flex;
        justify-content: space-between;
        z-index: 1;
        align-self: end;
        color: white;
        margin: 0 12px 12px;
    }

    .video-control::after {
        position: absolute;
        content: '';
        z-index: -1;
        bottom: 0;
        left: 0;
        display: block;
        box-sizing: border-box;
        width: 100%;
        height: calc(var(--button-size) * 2);
        background: linear-gradient(
            0deg,
            rgb(0, 0, 0, 0.68),
            rgb(0, 0, 0, 0.2),
            transparent
        );
        mask-image: linear-gradient(360deg, #000 47%, transparent);
    }

    .video-control-playback {
        display: inline-flex;
        margin-inline-start: auto;
        gap: 6px;
    }

    .btn-img {
        height: var(--button-size);
        width: var(--button-size);
        border-radius: 50%;
        border: 1px solid var(--systemQuaternary-onDark);
        background: rgba(0, 0, 0, 0.11);
        backdrop-filter: blur(20px);
        object-fit: cover;
        transition: background 105ms ease-out;
    }

    .btn-img:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    @container video-container (max-width: 500px) {
        .btn-img {
            --button-size: 24px;
        }
    }

    .fake-poster {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
</style>