diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-07-09 23:29:06 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-08-21 19:42:09 -0400 |
| commit | a5326a67e37d9f1aee740f7b3d46345f3bcda419 (patch) | |
| tree | 18a1eff075e12c60e2bc2400703b9ad2cc67e7d4 /ui/routes/(swatch)/.swatch/Invites | |
| parent | 4624f4dbebf5dd1ed4dc5168573537459b9a115e (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/Invites')
| -rw-r--r-- | ui/routes/(swatch)/.swatch/Invites/+page.svelte | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ui/routes/(swatch)/.swatch/Invites/+page.svelte b/ui/routes/(swatch)/.swatch/Invites/+page.svelte index 8c24627..bc4bdb1 100644 --- a/ui/routes/(swatch)/.swatch/Invites/+page.svelte +++ b/ui/routes/(swatch)/.swatch/Invites/+page.svelte @@ -1,14 +1,12 @@ <script> - import { json } from '$lib/swatch/derive.js'; + import * as json from '$lib/swatch/json.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 invitesInput = $state(json.encode([{ id: 'Iaaaa' }, { id: 'Ibbbb' }])); + let invites = $derived(json.decode(invitesInput)); let capture = $state(new EventCapture()); const createInvite = capture.on('createInvite'); |
