Studio: Add introductory slideshow to Studio

This commit is contained in:
Pieter Vander Vennet 2023-10-24 21:41:04 +02:00
parent b7a88ced70
commit 0d25a7fa7b
11 changed files with 359 additions and 2 deletions

View file

@ -0,0 +1,34 @@
<script lang="ts">
import BackButton from "../Base/BackButton.svelte";
import NextButton from "../Base/NextButton.svelte";
import { createEventDispatcher } from "svelte";
const dispatch = createEventDispatcher<{ back, next }>();
export let islast = false;
export let isFirst = false
</script>
<div class="flex flex-col h-full w-full justify-between">
<div class="overflow-y-auto">
<slot />
</div>
<div class="flex w-full">
{#if !isFirst}
<BackButton clss="w-full" on:click={() => dispatch("back")}>
Back
</BackButton>
{/if}
<NextButton clss="primary w-full" on:click={() => dispatch("next")}>
{#if islast}
Finish
{:else}
Next
{/if}
</NextButton>
</div>
</div>