How to programmatically import components, and render them.
The trick for me was to wrap await import()
inside brackets, and extract the default
object:
return (await import(`./${name}.svelte`)).default;
This would fail if the thing you’re importing is not a component, so you can try and wrap it in a try statement or something. But for proof of concept, this worked perfectly.
<script lang="ts">const components = [{ name: "BlueThing" }, { name: "GreenThing" }];
const loadComponent = async (name) => {
return (await import(`./${name}.svelte`)).default;
};
</script>
{#each components as component}
{#await loadComponent(component.name) then myComponent}
<svelte:component this={myComponent} />
{/await}
{/each}