blob: eae083857d2c9721c6c0a74c8a32cd4ca0284d2f (
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
36
37
|
<script>
import EventCapture from '$lib/swatch/event-capture.svelte.js';
import * as json from '$lib/swatch/json.js';
import EventLog from '$lib/components/swatch/EventLog.svelte';
let eventsInput = $state(
json.encode([
{ event: 'firstExample', args: ['argument a', 'argument b'] },
{ event: 'secondExample', args: ['argument 1'] },
]),
);
let events = $derived(json.decode(eventsInput));
let capture = $state(new EventCapture());
const clear = capture.on('clear');
</script>
<h1><code>swatch/EventLog</code></h1>
<nav><p><a href="..">Back to swatches</a></p></nav>
<h2>properties</h2>
<div class="component-properties">
<label>events (json) <textarea bind:value={eventsInput}></textarea></label>
</div>
<h2>rendered</h2>
<div class="component-preview">
<EventLog {events} {clear} />
</div>
<h2>events</h2>
<EventLog events={capture.events} clear={capture.clear.bind(capture)} />
|