summaryrefslogtreecommitdiff
path: root/ui/lib/components/swatch
diff options
context:
space:
mode:
Diffstat (limited to 'ui/lib/components/swatch')
-rw-r--r--ui/lib/components/swatch/EventLog.svelte37
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/lib/components/swatch/EventLog.svelte b/ui/lib/components/swatch/EventLog.svelte
new file mode 100644
index 0000000..2d8c5c0
--- /dev/null
+++ b/ui/lib/components/swatch/EventLog.svelte
@@ -0,0 +1,37 @@
+<script>
+ /*
+ * The interface exposed by this component is designed to be compatible with the interface
+ * exposed by the `EventCapture` class, so that you can do this:
+ *
+ * let capture = $state(new EventCapture());
+ * const someEvent = capture.on('someEvent');
+ *
+ * // …
+ *
+ * <EventLog events={capture.events} clear={capture.clear.bind(capture)} />
+ */
+
+ let { events, clear = () => {} } = $props();
+
+ function onclick() {
+ clear();
+ }
+</script>
+
+<button {onclick}>clear</button>
+<table>
+ <thead>
+ <tr>
+ <th>event</th>
+ <th>arguments</th>
+ </tr>
+ </thead>
+ <tbody>
+ {#each events as { event, args }}
+ <tr>
+ <td>{event}</td>
+ <td><code>{JSON.stringify(args)}</code></td>
+ </tr>
+ {/each}
+ </tbody>
+</table>