summaryrefslogtreecommitdiff
path: root/ui/routes/(swatch)/.swatch/swatch/EventLog
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-07-09 23:29:06 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-08-21 19:42:09 -0400
commita5326a67e37d9f1aee740f7b3d46345f3bcda419 (patch)
tree18a1eff075e12c60e2bc2400703b9ad2cc67e7d4 /ui/routes/(swatch)/.swatch/swatch/EventLog
parent4624f4dbebf5dd1ed4dc5168573537459b9a115e (diff)
Factor data-to-JSON-string construction out of stitches.
This is a recurring and nameable operation; let's give it a name before we use it further.
Diffstat (limited to 'ui/routes/(swatch)/.swatch/swatch/EventLog')
-rw-r--r--ui/routes/(swatch)/.swatch/swatch/EventLog/+page.svelte13
1 files changed, 6 insertions, 7 deletions
diff --git a/ui/routes/(swatch)/.swatch/swatch/EventLog/+page.svelte b/ui/routes/(swatch)/.swatch/swatch/EventLog/+page.svelte
index a751ca3..eae0838 100644
--- a/ui/routes/(swatch)/.swatch/swatch/EventLog/+page.svelte
+++ b/ui/routes/(swatch)/.swatch/swatch/EventLog/+page.svelte
@@ -1,17 +1,16 @@
<script>
import EventCapture from '$lib/swatch/event-capture.svelte.js';
- import { json } from '$lib/swatch/derive.js';
+ import * as json from '$lib/swatch/json.js';
import EventLog from '$lib/components/swatch/EventLog.svelte';
let eventsInput = $state(
- JSON.stringify(
- [{ event: 'example', args: ['argument a', 'argument b'] }],
- /* replacer */ null,
- /* space */ 2,
- ),
+ json.encode([
+ { event: 'firstExample', args: ['argument a', 'argument b'] },
+ { event: 'secondExample', args: ['argument 1'] },
+ ]),
);
- let events = $derived(json(eventsInput));
+ let events = $derived(json.decode(eventsInput));
let capture = $state(new EventCapture());
const clear = capture.on('clear');