reactive-ui-patterns
SKILL.md
Reactive UI Patterns
Quick Start
<script lang="ts">
const data_query = get_data(); // Store in variable for .current access
async function save(id: string, value: string) {
await update_data({ id, value });
await data_query.refresh(); // Updates in place!
}
</script>
{#if data_query.error}
<p>Error loading data</p>
{:else if data_query.loading && data_query.current === undefined}
<p>Loading...</p>
{:else}
{@const items = data_query.current ?? []}
<div class:opacity-60={data_query.loading}>
{#each items as item}<!-- Content updates smoothly -->{/each}
</div>
{/if}
Core Principles
- Store queries:
const query = get_data()enables.currentproperty access - Use
.current: Prevents page jumps, keeps scroll position during updates - Initial load only: Show spinner when
.current === undefined, not on every refresh - Avoid
{#await}: Causes jarring page reloads - use stored query pattern instead
Reference Files
- current-property.md - Deep dive on
.currentproperty - anti-patterns.md - Common mistakes to avoid
- examples.md - Real-world implementation examples
Weekly Installs
2
Repository
spences10/devhub-crmGitHub Stars
6
First Seen
4 days ago
Security Audits
Installed on
amp2
cline2
opencode2
cursor2
kimi-cli2
codex2