summaryrefslogtreecommitdiff
path: root/ui/lib/components/Invites.svelte
blob: 27d3754054493822eb2b56e4e6cbe66650698e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
  import { createInvite } from '$lib/apiServer';
  import Invite from '$lib/components/Invite.svelte';

  let invites = $state([]);

  async function onsubmit(event) {
    event.preventDefault();
    let response = await createInvite();
    if (response.status == 200) {
      invites.push(response.data);
    }
  }
</script>

<form class="form" {onsubmit}>
  <button type="submit">create invitation</button>
</form>

<ul class="invite-list">
  {#each invites as invite}
    <li><Invite id={invite.id} /></li>
  {/each}
</ul>