React HOC Pattern
Extend component behavior by wrapping in a higher-order component
When to Use
- Adding cross-cutting concerns (logging, authentication gating, analytics) to multiple components without modifying each
- Working with class components that cannot use hooks
- Integrating with third-party libraries that use HOC APIs (Redux
connect, React RouterwithRouter) - You want to enhance a component's props without the consumer being aware of the enhancement
Instructions
- Create a function that accepts a component and returns a new component.
- The wrapper component renders the wrapped component, forwarding all props.
- Add the enhancement (extra props, lifecycle behavior, conditional rendering) in the wrapper.
- Name the HOC
with<Behavior>by convention. - Forward refs using
React.forwardRefif the wrapped component uses refs. - Set
displayNameon the HOC result for debugging:WrappedComponent.displayName = \withAuth(${Component.displayName})``.
function withAuthentication<P extends object>(
WrappedComponent: React.ComponentType<P>
) {
const WithAuth = (props: P) => {
const { isAuthenticated } = useAuth();
if (!isAuthenticated) return <Redirect to="/login" />;
return <WrappedComponent {...props} />;
};
WithAuth.displayName = `withAuthentication(${WrappedComponent.displayName ?? WrappedComponent.name})`;
return WithAuth;
}
Details
HOCs are a functional composition pattern borrowed from functional programming. They were the primary code-reuse mechanism before hooks.
When to prefer hooks over HOCs:
- Hooks are simpler, avoid prop name collisions, and are easier to type in TypeScript
- "Wrapper hell" — stacking multiple HOCs creates deeply nested component trees in DevTools
- HOC prop injection can clash if two HOCs inject the same prop name
Valid HOC use cases in modern React:
- HOC-based library APIs (Redux, styled-components
withTheme) - Class components that cannot use hooks
- Performance optimization with
React.memoand custom comparison
TypeScript note: HOC generic typing requires careful handling of ComponentProps and Omit to correctly type the enhanced component's props.
Source
https://patterns.dev/react/hoc-pattern
Process
- Read the instructions and examples in this document.
- Apply the patterns to your implementation, adapting to your specific context.
- Verify your implementation against the details and edge cases listed above.
Harness Integration
- Type: knowledge — this skill is a reference document, not a procedural workflow.
- No tools or state — consumed as context by other skills and agents.
Success Criteria
- The patterns described in this document are applied correctly in the implementation.
- Edge cases and anti-patterns listed in this document are avoided.