ss-feedback

Solid

Add appropriate user feedback states (loading, success, error, empty) to a component or page

Web & Frontend 369 stars 42 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# UX Feedback States Generator ## When NOT to use - For only the words inside a state → use `/ss-copy` - For accessibility issues in existing states → use `/ss-a11y` - For brand-new component creation → use `/ss-component` - For analytics or error-logging plumbing — UI presentation only Target: **$ARGUMENTS** ## Instructions 1. Read the target file and identify all data-dependent areas. 2. Read the design language reference: - `DESIGN-LANGUAGE.md` sections on Loading States (Skeleton), Empty States, Error States 3. For each data-dependent area, implement ALL 4 states: ### State 1: Loading (Skeleton) ```tsx // Skeleton must match the final layout shape <div className="bg-card rounded-2xl p-6 shadow-[var(--shadow-card)]"> <div className="flex items-center gap-2 mb-3"> <div className="size-7 bg-surface-muted rounded-lg animate-pulse" /> <div className="h-3 w-16 bg-surface-muted rounded animate-pulse" /> </div> <div className="h-9 w-24 bg-surface-muted rounded-lg animate-pulse mb-3" /> <div className="h-3 w-12 bg-surface-muted rounded animate-pulse" /> </div> ``` Rules: - Show skeleton for 300ms minimum (prevent flash) - Delay skeleton display by 300ms (fast loads skip skeleton entirely) - Use `animate-pulse` (1.5s cycle) - Match skeleton shapes to real content dimensions - Never use spinners inside cards ### State 2: Empty (Zero Data) ```tsx <EmptyState icon={PackageIcon} title="No activity yet" description="Create your first project to get star...

Details

Author
bitjaru
Repository
bitjaru/styleseed
Created
1 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category