CtrlK
BlogDocsLog inGet started
Tessl Logo

moai-ref-react-patterns

React/Next.js component design patterns, state management strategies, and project structure reference for frontend development. Agent-extending skill that amplifies frontend domain work (spawned via Agent(general-purpose) with frontend instructions) with production-grade React patterns. NOT for: backend API design, database modeling, DevOps, mobile apps.

68

Quality

83%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

SKILL.md
Quality
Evals
Security

React Patterns Reference

Target Spawn

Frontend domain work spawned via Agent(general-purpose) with frontend instructions - Applies these patterns directly to component design and state management.

Component Design Patterns

1. Compound Components

Parent and child share implicit state via Context.

Suited for: Tab, Accordion, Dropdown, Select Structure: <Select> + <Select.Trigger> + <Select.Option>

2. Custom Hooks (Extraction Pattern)

Extract state logic into reusable hooks.

Suited for: Form management, API calls, localStorage, debounce Naming: use prefix required - useForm, useDebounce, useAuth

3. Container/Presentational Separation

Separate data logic (Container) from UI (Presentational).

Suited for: Large apps, when testability is needed Container: Data fetch, state management, event handlers Presentational: Renders only from props, functionally pure

4. Headless Component

Provides behavior/state without UI.

Suited for: Design system-independent logic Examples: headless useCombobox, useDialog, useTable

State Management Selection Guide

State TypeToolRationale
UI LocaluseState, useReducerComponent-internal
Server StateReact Query / TanStack QueryCaching, refetch, optimistic
Global ClientZustandConcise, minimal boilerplate
Complex GlobalZustand + ImmerImmutability convenience
URL Statenuqs / useSearchParamsFilters, pagination
Form StateReact Hook Form + ZodIntegrated validation
Theme/i18nContext + ProviderLow change frequency

Decision Flow

Restorable from URL? -> URL state (nuqs)
Server data? -> React Query
Shared across components? -> Zustand
Component-internal? -> useState
Complex transitions? -> useReducer

Next.js App Router Structure

src/
├── app/                    # App Router
│   ├── (auth)/             # Auth route group
│   │   ├── login/page.tsx
│   │   └── register/page.tsx
│   ├── (main)/             # Main route group
│   │   ├── dashboard/page.tsx
│   │   └── settings/page.tsx
│   ├── api/                # API Routes
│   ├── layout.tsx          # Root layout
│   └── page.tsx            # Home
├── components/
│   ├── ui/                 # Base UI (Button, Input, Modal)
│   └── features/           # Feature components
│       ├── auth/
│       └── dashboard/
├── hooks/                  # Custom hooks
├── lib/                    # Utilities, config
├── stores/                 # Zustand stores
├── types/                  # TypeScript types
└── styles/                 # Global styles

Component Quality Standards

ItemStandard
Component SizeUnder 200 lines (split if exceeded)
Props5 or fewer (group into object if exceeded)
Custom HooksAlways extract when reusing logic
Error BoundariesSet at the page level
Loading StatesProvide loading UI for all async ops
Form ValidationValidate on both client and server

Performance Patterns

PatternWhenTool
MemoizationExpensive computationuseMemo, React.memo
Lazy LoadingBundle sizeReact.lazy, next/dynamic
Virtualization1000+ item lists@tanstack/react-virtual
Image OptimizationImage loadingnext/image
Optimistic UpdatesImmediate feedbackReact Query onMutate
DebounceSearch, inputuseDeferredValue or custom hook

Error Handling

Hierarchical Error Boundaries

RootErrorBoundary (global)
  └── LayoutErrorBoundary (per section)
      └── ComponentErrorFallback (individual)

API Error Handling

HTTP StatusClient Handling
401Auto logout + redirect
403Unauthorized UI
404Not Found page
422Per-field form error
429Retry + wait notice
500Generic error + retry button

Accessibility Checklist

  • Alt text on all images
  • Keyboard navigation (Tab, Enter, Escape)
  • ARIA labels (aria-label, role)
  • Color contrast 4.5:1 or above
  • Visible focus indicator
  • Semantic HTML (button, nav, main, section)

Common Rationalizations

RationalizationReality
"useEffect is fine for data fetching in React 19"React 19 provides use() and server components for data fetching. useEffect for fetch is a legacy pattern that causes waterfalls.
"Global state is simpler than prop drilling"Global state couples distant components. Prop drilling or composition via children is more predictable and testable.
"I will add TypeScript types later"Untyped components accumulate any-typed callers. Retrofitting types into a used component is much harder than starting typed.
"This component does not need memoization"Premature memoization is waste, but components rendering lists or expensive trees should be profiled, not assumed fast.
"CSS-in-JS is fine, everyone uses it"CSS-in-JS adds runtime overhead and bundle size. Tailwind or CSS Modules achieve the same scoping without the cost.

Red Flags

  • useEffect used for data fetching when server components or use() are available
  • Component receives more than 5 props without decomposition or object grouping
  • State management library used for server-cacheable data (use React Query or SWR instead)
  • Inline styles or hardcoded pixel values instead of design tokens
  • Component missing error boundary wrapping for async operations

Verification

  • Data fetching uses server components, use(), or React Query (not useEffect + fetch)
  • Components have TypeScript interfaces for all props
  • Error boundaries wrap components with async operations
  • Accessibility checklist completed (alt text, keyboard nav, ARIA, contrast, focus, semantics)
  • No inline styles or hardcoded color/spacing values (design tokens used)
  • Component renders correctly in React Strict Mode (no double-effect issues)
Repository
modu-ai/moai-adk
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.