diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-29 23:53:23 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-29 23:53:23 -0400 |
| commit | cdb40ca671a85704f751179d13277a7db816b569 (patch) | |
| tree | 173319bb14013c97f3800238ef8a8f7304332b01 /ui/lib/components/Invites.svelte | |
| parent | 66d3fcf2e22f057bacce8d97d43a13c1c5a9ad09 (diff) | |
Incrementally less jank invite listing.
Diffstat (limited to 'ui/lib/components/Invites.svelte')
| -rw-r--r-- | ui/lib/components/Invites.svelte | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ui/lib/components/Invites.svelte b/ui/lib/components/Invites.svelte new file mode 100644 index 0000000..df51afb --- /dev/null +++ b/ui/lib/components/Invites.svelte @@ -0,0 +1,28 @@ +<script> + import { writable } from 'svelte/store'; + import { createInvite } from '$lib/apiServer'; + import Invite from '$lib/components/Invite.svelte'; + + let invites = writable([]); + $: $invites, console.log("invites", $invites); + + async function onSubmit() { + let response = await createInvite(); + if (response.status == 200) { + invites.update(val => [...val, response.data]); + } + } +</script> + +<ul> + {#each $invites as invite} + <li><Invite id={invite.id} /></li> + {/each} +</ul> +<form on:submit|preventDefault={onSubmit}> + <button + class="btn variant-filled" + type="submit"> + Create Invitation + </button> +</form> |
