Improvements to creator flow

This commit is contained in:
Roman Krček
2025-06-25 00:03:26 +02:00
parent c063c1c5c4
commit ea985c21a9
4 changed files with 89 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import { enhance } from '$app/forms';
let { events, new_event } = $props();
let { event } = $props();
let loading = $state(false);
function handleEnhance() {
@@ -52,7 +52,7 @@
</button>
</form>
{#if Object.keys(new_event).length === 0}
{#if Object.keys(event).length === 0}
<div class="mt-4 rounded border-l-4 border-gray-500 bg-gray-100 p-4 text-gray-700">
{#if loading}
<strong>Loading...</strong>
@@ -63,9 +63,9 @@
{:else}
<div class="rounded border-l-4 border-green-500 bg-green-100 p-4 text-green-700 mt-4">
<ol>
<li><strong>{new_event.name}</strong></li>
<li>{new_event.date}</li>
<li>{new_event.description}</li>
<li><strong>{event.name}</strong></li>
<li>{event.date}</li>
<li>{event.description}</li>
</ol>
</div>
{/if}