2021-04-24 02:14:54 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
// import * as tr from "lib/i18n";
|
2021-04-25 10:40:02 +02:00
|
|
|
import type { DeckOptionsState } from "./lib";
|
2021-04-24 02:14:54 +02:00
|
|
|
|
2021-04-25 10:40:02 +02:00
|
|
|
export let state: DeckOptionsState;
|
2021-04-24 02:14:54 +02:00
|
|
|
let components = state.addonComponents;
|
2021-04-25 11:24:19 +02:00
|
|
|
const auxData = state.currentAuxData;
|
2021-04-24 02:14:54 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
{#if $components.length}
|
|
|
|
<div>
|
|
|
|
<h2>Add-ons</h2>
|
|
|
|
|
|
|
|
{#each $components as addon}
|
2021-04-25 11:24:19 +02:00
|
|
|
<svelte:component this={addon.component} bind:data={$auxData} {...addon} />
|
2021-04-24 02:14:54 +02:00
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
{/if}
|