JS

Higher-Order Components In React

React - Higher-Order-Component - HOC
React - Higher-Order-Component - HOC

Higher Order Components (HOC) in React: An Introduction with Example

React is a popular JavaScript library used for building user interfaces. One of the core concepts in React is the idea of composing components to create complex UI. Higher Order Components (HOC) are a pattern in React that allows developers to reuse and share logic across components.

In this article, we’ll take a look at what Higher Order Components are, why they are useful, and how to create one in React.

What are Higher Order Components?

Higher Order Components are functions that take a component as an argument and return a new component that wraps the original component with additional functionality. The new component is often referred to as a “Wrapped Component.” HOCs allow developers to extract and reuse logic across components, making it easier to maintain and update their applications.

Why use Higher Order Components?

There are several reasons why Higher Order Components are a useful pattern in React:

  1. Code Reuse: HOCs allow developers to extract logic that is used in multiple components and encapsulate it in a single place. This makes it easier to maintain and update the code, as well as reduces the amount of duplicated code in the application.
  2. Abstraction: HOCs allow developers to abstract away common logic, such as authentication or data fetching, and focus on the specific logic of the individual components. This leads to cleaner, more concise code that is easier to understand.
  3. Composition: HOCs allow developers to build complex components by composing simple components together. This makes it easier to break down complex UI into smaller, manageable pieces.

Creating a Higher Order Component in React – Code Example

Creating a Higher Order Component in React is straightforward. First, we’ll define a function that takes a component as an argument and returns a new component that wraps the original component.

The new component will have additional functionality, such as accessing the data from the Redux store.

Here’s an example of a simple HOC that provides access to the data from the Redux store:

import React from 'react';
import { connect } from 'react-redux';

const withData = (Component) => {
  class WithData extends React.Component {
    render() {
      return <Component {...this.props} />;
    }
  }

  const mapStateToProps = (state) => ({
    data: state.data,
  });

  return connect(mapStateToProps)(WithData);
};

export default withData;

In this example, the withData HOC takes a component as an argument and returns a new component that is connected to the Redux store. The mapStateToProps function is used to specify which data from the Redux store should be passed to the component as props.

To use the HOC, we simply import it and wrap our component with it:

import React from 'react';
import withData from './withData';

const MyComponent = ({ data }) => (
  <div>
    <h1>My Component</h1>
    <p>Data: {data}</p>
  </div>
);

export default withData(MyComponent);

In this example, the MyComponent component is wrapped with the withData HOC, which provides it with access to the data from the Redux store.

Conclusion

Higher Order Components are a powerful pattern in React that allow developers to reuse and share logic.

Happy Coding 🙂

About the author

Vishwas

A coder who is trying to solve some problems via "Procoders", Software Engineer By Profession, WEB Enthusiast, Hobby Blogger. I love to share Tech Ideas and like to learn and explore new things and Technologies.

Add Comment

Click here to post a comment