37 lines
1.0 KiB
Svelte
37 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import { WidgetComponents, type WidgetContainerConfig, isWidgetConfig } from './LayoutManager';
|
|
import Widget from './Widget.svelte';
|
|
|
|
export let container: WidgetContainerConfig;
|
|
</script>
|
|
|
|
<div class="w-full h-full flex flex-col">
|
|
{#if container.header}
|
|
<div class="bg-base-300">
|
|
<div class="bg-base-100 p-2 w-min">{container.header}</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div
|
|
class="flex w-full h-full"
|
|
class:flex-row={container.layout === 'column'}
|
|
class:flex-col={container.layout === 'row'}
|
|
>
|
|
{#each container.widgets as widget, index (widget.id + '-' + index)}
|
|
<Widget size={widget.size ?? 1}>
|
|
{#if isWidgetConfig(widget)}
|
|
<svelte:component this={WidgetComponents[widget.component]} {...widget.props} />
|
|
{:else if widget.widgets}
|
|
<svelte:self container={widget} />
|
|
{/if}
|
|
</Widget>
|
|
{#if index !== container.widgets.length - 1}
|
|
<div
|
|
class="divider bg-base-300 m-0"
|
|
class:divider-horizontal={container.layout === 'column'}
|
|
></div>
|
|
{/if}
|
|
{/each}
|
|
</div>
|
|
</div>
|