summaryrefslogtreecommitdiff
path: root/ui/routes/(swatch)/.swatch/Invites/+page.svelte
blob: 8c24627385dc9bbe9174b198d71dd5ac6b66c68d (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
25
26
27
28
29
30
31
32
33
34
35
<script>
  import { json } from '$lib/swatch/derive.js';
  import EventCapture from '$lib/swatch/event-capture.svelte.js';

  import EventLog from '$lib/components/swatch/EventLog.svelte';
  import Invites from '$lib/components/Invites.svelte';

  let invitesInput = $state(
    JSON.stringify([{ id: 'Iaaaa' }, { id: 'Ibbbb' }], /* replacer */ null, /* space */ 2),
  );
  let invites = $derived(json(invitesInput));

  let capture = $state(new EventCapture());
  const createInvite = capture.on('createInvite');
</script>

<h1><code>Invites</code></h1>

<nav><p><a href=".">Back to swatches</a></p></nav>

<h2>properties</h2>

<div class="component-properties">
  <label>invites (json) <textarea bind:value={invitesInput}></textarea></label>
</div>

<h2>rendered</h2>

<div class="component-preview">
  <Invites {invites} {createInvite} />
</div>

<h2>events</h2>

<EventLog events={capture.events} clear={capture.clear.bind(capture)} />