Use dynamic import as Vime does not work in SSR
This commit is contained in:
parent
321113aec5
commit
e6d71b9b3f
@ -7,13 +7,12 @@
|
||||
import bash from 'svelte-highlight/languages/bash';
|
||||
import agate from 'svelte-highlight/styles/agate';
|
||||
|
||||
import {Player, Video, DefaultUi} from '@vime/svelte';
|
||||
|
||||
let Carousel;
|
||||
let Carousel, Player, Video, DefaultUi;
|
||||
onMount(async () => {
|
||||
// Perform dynamic import of svelte-carousel because it breaks
|
||||
// if imported during SSR
|
||||
Carousel = (await import('svelte-carousel')).default;
|
||||
({Player, Video, DefaultUi} = await import('@vime/svelte'));
|
||||
})
|
||||
|
||||
let images = [
|
||||
@ -93,12 +92,12 @@
|
||||
{#each images as image}
|
||||
<div class="has-text-centered">
|
||||
<figure class="terminal-player mx-auto">
|
||||
<Player>
|
||||
<Video>
|
||||
<svelte:component this={Player}>
|
||||
<svelte:component this={Video}>
|
||||
<source data-src="{image.path}" type="video/webm">
|
||||
</Video>
|
||||
<DefaultUi></DefaultUi>
|
||||
</Player>
|
||||
</svelte:component>
|
||||
<svelte:component this={DefaultUi}></svelte:component>
|
||||
</svelte:component>
|
||||
<figcaption>{image.caption ?? ""}</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user