What are Higher-Order Components (HOC) in React?
What are Higher-Order Components (HOC) in React?
Higher-Order Components (HOCs) in React are a powerful pattern used for reusing component logic across multiple components. An HOC is essentially a function that takes a component and returns a new component, thereby enhancing the original component with additional properties or behavior without modifying its source code.
A Higher-Order Component is a function that takes a component as an argument and returns a new component. It wraps the original component, providing additional functionality or data to it. This pattern is derived from React's compositional nature, where components can be used to build other components[1][2][3][4][5].
HOCs are commonly used for cross-cutting concerns, which are aspects of a program that affect other parts of the program and can be factored out into reusable code. Examples include:
To create an HOC, you define a function that takes a component (WrappedComponent
) and returns a new component (EnhancedComponent
). This new component can use React lifecycle methods, hooks, or other logic to inject new props into the WrappedComponent
or manipulate its behavior.
Here’s a simple example of an HOC that adds additional props to a component:
function withExtraInfo(WrappedComponent) {
return class extends React.Component {
render() {
return <WrappedComponent {...this.props} extraProp="someValue" />;
}
};
}
In this example, withExtraInfo
is an HOC that takes a component (WrappedComponent
) and returns a new component that renders the original component with an additional prop (extraProp
)[1][2][3].
junior
Gợi ý câu hỏi phỏng vấn
Chưa có bình luận nào