generic-fullstack-ux-designer

Professional UI/UX design expertise for full-stack applications. Covers design thinking, user psychology (Hick's/Fitts's/Jakob's Law), visual hierarchy, interaction patterns, accessibility, performance-driven design, and design critique. Use when designing features, improving UX, solving user problems, or conducting design reviews.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "generic-fullstack-ux-designer" with this command: npx skills add travisjneuman/.claude/travisjneuman-claude-generic-fullstack-ux-designer

Fullstack UX Designer

Professional UX expertise for Next.js/NestJS full-stack applications.

Extends: Generic UX Designer - Read base skill for design thinking process, research methods, interaction patterns, and critique framework.

Full-Stack UX Considerations

Server-Side Rendering UX

ScenarioUX Pattern
Initial page loadHydration-safe skeleton screens
Data fetchingServer components for static, client for dynamic
AuthenticationProtected routes with redirect UX
Form submissionProgressive enhancement

Hydration-Safe Patterns

// ✓ Avoid hydration mismatch
function Timestamp({ date }: { date: Date }) {
  const [formatted, setFormatted] = useState("");

  useEffect(() => {
    setFormatted(date.toLocaleString()); // Client-side only
  }, [date]);

  return <span>{formatted || "Loading..."}</span>;
}

API Loading & Error States

Loading State Hierarchy

DurationPatternExample
< 100msNo indicatorButton click
100ms - 1sSubtle spinnerForm submit
1s - 5sSkeleton screenPage fetch
> 5sProgress barFile upload

Error State Design

API Error → Parse Error → User-Friendly Message → Recovery Action
Error TypeUser MessageRecovery
400 ValidationShow field errorsFix and retry
401 Unauthorized"Please log in"Redirect to login
404 Not Found"Item not found"Navigate back
500 Server Error"Something went wrong"Retry button

Optimistic UI Pattern

// Show immediate feedback, rollback on error
async function toggleLike(postId: string) {
  // 1. Update UI immediately
  setLiked(true);
  setLikeCount((c) => c + 1);

  try {
    // 2. Call API
    await api.like(postId);
  } catch {
    // 3. Rollback on failure
    setLiked(false);
    setLikeCount((c) => c - 1);
    showToast("Failed to like");
  }
}

When to Use Optimistic UI

ActionOptimistic?Why
Like/favoriteYesLow risk, common action
Add commentYesCan show pending state
Delete itemNoDestructive, needs confirm
PaymentNoCritical, must verify
Form submitMaybeDepends on complexity

Form Submission UX

Client → Server Flow

User Input → Client Validation → Submit → Server Validation → Response
     ↓              ↓              ↓              ↓              ↓
  Feedback    Inline errors   Loading...   Field errors    Success/Error

Multi-Step Forms

// Show progress and allow back navigation
<FormStepper
  steps={["Details", "Payment", "Confirm"]}
  currentStep={step}
  onBack={() => setStep((s) => s - 1)}
/>

Authentication UX

Login Flow Patterns

StateUX
Loading authFull-page skeleton
Not logged inShow login form
Logging inDisable form, show spinner
SuccessRedirect with toast
ErrorInline error, keep form data

Protected Route Pattern

// Redirect unauthenticated users
if (!user && !loading) {
  return <Navigate to="/login" state={{ from: location }} />;
}

Real-Time Updates

PatternUse Case
PollingLow-frequency updates (notifications)
WebSocketChat, live collaboration
SSEOne-way server updates

Presence Indicators

  • Online status dots
  • "User is typing..." indicators
  • Collaborative cursors

Full-Stack Design Critique

AspectQuestions
Loading statesWhat shows during API calls?
Error recoveryCan users recover from errors?
Offline behaviorWhat happens without network?
Auth transitionsSmooth login/logout experience?
Data freshnessIs stale data clearly indicated?

See Also

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

document-skills

No summary provided by upstream source.

Repository SourceNeeds Review
General

brand-identity

No summary provided by upstream source.

Repository SourceNeeds Review
General

finance

No summary provided by upstream source.

Repository SourceNeeds Review