Frontend Framework Guide
Patterns and best practices for building production applications with modern frameworks, primarily React.
React is the dominant frontend framework for building scalable applications. Mastering React's mental model—component composition, hooks, state management, and performance optimization—is essential for professional development.
Core Concept: Components & Composition
The React Mental Model
React is built on declarative component composition:
State → Component → UI
User interaction → State change → Re-render → New UI
Declarative: Describe what UI should look like, React handles updates. Imperative: Manually update DOM (old way, error-prone).
Functional Components (Modern)
function Button({ label, onClick }) {
return (
<button
{label}
</button>
);
}
// Use it
<Button label="Click me" => console.log('clicked')} />
Functional components are the standard now. Class components are legacy.
Hooks: The Foundation
useState: Managing Component State
import { useState } from 'react';
function Counter() {
const [count, setCount] = useState(0);
// count: current state value
// setCount: function to update state
return (
<div>
<p>Count: {count}</p>
<button => setCount(count + 1)}>
Increment
</button>
</div>
);
}
Key points:
useStatereturns[value, setter]- Setter triggers re-render
- Initial value can be a function (useful for expensive calculations)
useEffect: Side Effects
import { useEffect, useState } from 'react';
function DataFetcher() {
const [data, setData] = useState(null);
const [loading, setLoading] = useState(true);
useEffect(() => {
// Run after render
fetch('/api/data')
.then(res => res.json())
.then(data => {
setData(data);
setLoading(false);
});
}, []); // Dependency array: run once on mount
if (loading) return <div>Loading...</div>;
return <div>{data}</div>;
}
Dependency array patterns:
[](empty): Run once on mount[dep1, dep2]: Run when deps change- No array: Run after every render (rarely needed, performance killer)
useCallback: Memoizing Functions
import { useCallback, useState } from 'react';
function Parent() {
const [count, setCount] = useState(0);
// Without useCallback: new function every render
const handleClick = () => {
console.log('clicked', count);
};
// With useCallback: same function if deps don't change
const handleClickMemo = useCallback(() => {
console.log('clicked', count);
}, [count]); // Only recreate if count changes
return <Child />;
}
When to use:
- Passing function to memoized child
- Using function as dependency in other hooks
- Performance-critical code paths
When NOT to use:
- Passing to non-memoized children (wastes memory)
- Debugging (adds complexity)
- Simple inline handlers
useMemo: Memoizing Values
import { useMemo, useState } from 'react';
function ExpensiveCalculation({ items }) {
const [sort, setSort] = useState('asc');
// Without useMemo: recalculates every render
const sorted = items
.filter(item => item.active)
.sort((a, b) => sort === 'asc' ? a.value - b.value : b.value - a.value);
// With useMemo: only recalculate if items/sort change
const sortedMemo = useMemo(() => {
return items
.filter(item => item.active)
.sort((a, b) => sort === 'asc' ? a.value - b.value : b.value - a.value);
}, [items, sort]);
return <div>{sortedMemo.length} items</div>;
}
When to use:
- Expensive calculations (sorting, filtering large arrays)
- Dependency for other memoized values
- Preventing child re-renders
When NOT to use:
- Simple calculations (wastes memory)
- Rarely-changing data
useRef: Accessing DOM Directly
import { useRef } from 'react';
function TextInput() {
const inputRef = useRef(null);
const focus = () => {
inputRef.current.focus();
};
return (
<>
<input ref={inputRef} />
<button input</button>
</>
);
}
When to use:
- Managing focus, text selection, media playback
- Triggering animations
- Integrating third-party libraries
When NOT to use:
- State management (use useState)
- Rendering data (use state)
Component Patterns
Controlled vs Uncontrolled Inputs
Controlled (React manages state):
function Form() {
const [email, setEmail] = useState('');
return (
<input
value={email}
=> setEmail(e.target.value)}
/>
);
}
Uncontrolled (DOM manages state):
function Form() {
const inputRef = useRef(null);
const handleSubmit = () => {
console.log(inputRef.current.value);
};
return (
<>
<input ref={inputRef} />
<button
</>
);
}
Use controlled for forms. Uncontrolled only for file inputs and integrations.
Lifting State Up
When multiple components need shared state:
// ❌ Bad: State in each component (out of sync)
function Parent() {
return (
<>
<FirstChild />
<SecondChild />
</>
);
}
// ✅ Good: State in parent, passed down
function Parent() {
const [count, setCount] = useState(0);
return (
<>
<FirstChild count={count} />
<SecondChild count={count} => setCount(count + 1)} />
</>
);
}
Custom Hooks
Encapsulate stateful logic:
// Custom hook
function useFormInput(initialValue = '') {
const [value, setValue] = useState(initialValue);
return {
value,
setValue,
bind: {
value,
onChange: (e) => setValue(e.target.value),
},
};
}
// Use it
function Form() {
const email = useFormInput('');
const password = useFormInput('');
return (
<form>
<input {...email.bind} placeholder="Email" />
<input type="password" {...password.bind} placeholder="Password" />
</form>
);
}
State Management
Context API
For prop drilling (passing props through many levels):
import { createContext, useState } from 'react';
const ThemeContext = createContext();
export function ThemeProvider({ children }) {
const [theme, setTheme] = useState('light');
const toggleTheme = () => {
setTheme(theme === 'light' ? 'dark' : 'light');
};
return (
<ThemeContext.Provider value={{ theme, toggleTheme }}>
{children}
</ThemeContext.Provider>
);
}
// Use it
function Button() {
const { theme, toggleTheme } = useContext(ThemeContext);
return (
<button
Current theme: {theme}
</button>
);
}
When to use Context:
- Theme, language, user authentication
- Moderate-complexity state
- Avoid if state updates frequently (performance hit)
Zustand (Simple Global State)
import { create } from 'zustand';
const useStore = create((set) => ({
count: 0,
increment: () => set((state) => ({ count: state.count + 1 })),
decrement: () => set((state) => ({ count: state.count - 1 })),
}));
function Counter() {
const { count, increment, decrement } = useStore();
return (
<div>
<p>Count: {count}</p>
<button
<button
</div>
);
}
When to use Zustand:
- Simple, lightweight global state
- Minimal boilerplate
- Predictable performance
Redux (Complex State)
import { createSlice, configureStore } from '@reduxjs/toolkit';
import { useDispatch, useSelector } from 'react-redux';
// Define state slice
const counterSlice = createSlice({
name: 'counter',
initialState: { value: 0 },
reducers: {
increment: (state) => {
state.value += 1;
},
decrement: (state) => {
state.value -= 1;
},
},
});
// Create store
const store = configureStore({
reducer: {
counter: counterSlice.reducer,
},
});
// Use in component
function Counter() {
const dispatch = useDispatch();
const count = useSelector((state) => state.counter.value);
return (
<div>
<p>Count: {count}</p>
<button => dispatch(counterSlice.actions.increment())}>+</button>
</div>
);
}
When to use Redux:
- Complex, interconnected state
- Many actions/reducers
- DevTools debugging needed
Performance Optimization
React.memo: Prevent Unnecessary Re-renders
import { memo } from 'react';
const Button = memo(({ label, onClick }) => {
console.log('Button rendered');
return <button
});
function Parent() {
const [count, setCount] = useState(0);
// Parent re-renders, but Button doesn't (props unchanged)
return (
<div>
<p>Count: {count}</p>
<Button label="Increment" => setCount(count + 1)} />
</div>
);
}
When to use:
- Heavy components (lists, charts)
- Props rarely change
- Profiler shows it's needed
Code Splitting with Dynamic Imports
import { lazy, Suspense } from 'react';
const HeavyComponent = lazy(() => import('./HeavyComponent'));
function App() {
return (
<Suspense fallback={<div>Loading...</div>}>
<HeavyComponent />
</Suspense>
);
}
Reduces initial bundle size. Load features on-demand.
Avoid Inline Objects in Dependencies
// ❌ Bad: Object re-created every render (infinite loop)
useEffect(() => {
// fetch with config
}, [{ retry: true }]); // New object every render!
// ✅ Good: Define outside
const config = { retry: true };
useEffect(() => {
// fetch with config
}, [config]);
// ✅ Also good: Use useMemo
useEffect(() => {
// fetch with config
}, [useMemo(() => ({ retry: true }), [])]);
Testing React Components
Testing Patterns
import { render, screen, fireEvent } from '@testing-library/react';
import Button from './Button';
describe('Button', () => {
// Test rendering
it('renders with label', () => {
render(<Button label="Click me" />);
expect(screen.getByRole('button', { name: /click me/i })).toBeInTheDocument();
});
// Test interaction
it('calls onClick when clicked', () => {
const
render(<Button label="Click" />);
fireEvent.click(screen.getByRole('button'));
expect(onClick).toHaveBeenCalled();
});
// Test state
it('updates count on click', () => {
render(<Counter />);
const button = screen.getByRole('button', { name: /increment/i });
fireEvent.click(button);
expect(screen.getByText(/count: 1/i)).toBeInTheDocument();
});
});
Best practices:
- Test user behavior, not implementation
- Use
screenqueries (more resilient) - Test accessibility (
getByRoleuses ARIA) - Mock external APIs
Common Mistakes
❌ Modifying State Directly
// ❌ Wrong: Direct mutation
const [items, setItems] = useState([]);
items.push(newItem); // Doesn't trigger re-render
// ✅ Right: Create new array
setItems([...items, newItem]);
❌ Infinite Loops in useEffect
// ❌ Wrong: No dependency array (runs every render)
useEffect(() => {
setData(newData);
});
// ✅ Right: Empty array (run once)
useEffect(() => {
setData(newData);
}, []);
// ✅ Right: Specific dependencies
useEffect(() => {
fetchData(id);
}, [id]);
❌ Using Index as Key in Lists
// ❌ Wrong: Index as key (can break state)
{items.map((item, index) => <Item key={index} />)}
// ✅ Right: Unique ID
{items.map((item) => <Item key={item.id} />)}
❌ Unnecessary Memoization
// ❌ Wrong: Wastes memory on simple components
const SimpleText = memo(({ text }) => <p>{text}</p>);
// ✅ Right: Use memo for heavy components only
const DataTable = memo(({ rows }) => <table>{/* expensive render */}</table>);
When to Use This Skill
✅ Do use for:
- React component patterns and best practices
- Hooks (useState, useEffect, useCallback, useMemo, useRef)
- State management approaches (Context, Zustand, Redux)
- Component composition and lifting state
- Performance optimization (React.memo, code splitting, memoization)
- Custom hooks development
- Testing React components
- Framework selection guidance
❌ Don't use for:
- CSS styling (see css-styling-pixel-perfect)
- Design system setup (see design-systems-architecture)
- Responsive design (see responsive-universal-design)
- Build tools and bundlers
- Node.js backend frameworks
- HTML/semantic markup (see web-accessibility-a11y)