DEV Community

Khalid Kakar
Khalid Kakar

Posted on

Building Reusable Components in React

One of the greatest strengths of React is its component-based architecture, which allows developers to build modular and reusable pieces of UI. Reusable components not only save time but also ensure consistency across your application. In this blog post, we’ll explore the best practices for building reusable components in React and provide practical coding examples.

Why Build Reusable Components?

Before diving into the code, let’s discuss why reusable components are important:

  1. - Consistency: Reusing components ensures a consistent look and feel across your application.
  2. - Maintainability: Isolating functionality in components makes your code easier to manage and update.
  3. - Efficiency: Building reusable components saves development time, as you can leverage existing components rather than creating new ones from scratch.

1. Start with Simple Components

The first step in building reusable components is to identify UI elements that are used frequently across your application. Start by creating simple, self-contained components.

Example: Button Component

import React from 'react';
import PropTypes from 'prop-types';
import './Button.css';

const Button = ({ label, onClick, type = 'button' }) => (
  <button className="btn" onClick={onClick} type={type}>
    {label}
  </button>
);

Button.propTypes = {
  label: PropTypes.string.isRequired,
  onClick: PropTypes.func,
  type: PropTypes.oneOf(['button', 'submit', 'reset']),
};

export default Button;

Enter fullscreen mode Exit fullscreen mode

2. Make Components Configurable

To make components truly reusable, they should be configurable through props. This allows you to customize the appearance and behavior of the component without modifying its internal code.

Example: Configurable Button Component

import React from 'react';
import PropTypes from 'prop-types';
import './Button.css';

const Button = ({ label, onClick, type = 'button', className = '', disabled = false }) => (
  <button className={`btn ${className}`} onClick={onClick} type={type} disabled={disabled}>
    {label}
  </button>
);

Button.propTypes = {
  label: PropTypes.string.isRequired,
  onClick: PropTypes.func,
  type: PropTypes.oneOf(['button', 'submit', 'reset']),
  className: PropTypes.string,
  disabled: PropTypes.bool,
};

export default Button;

Enter fullscreen mode Exit fullscreen mode

Here, the Button component has additional props like className and disabled, making it more flexible and adaptable to different use cases.

3. Use Composition for More Complex Components

Composition allows you to build complex components by combining simpler ones. This approach follows React's philosophy of breaking down UI into small, manageable pieces.

Example: Card Component

import React from 'react';
import PropTypes from 'prop-types';
import './Card.css';

const Card = ({ title, content, footer }) => (
  <div className="card">
    <div className="card-header">{title}</div>
    <div className="card-body">{content}</div>
    <div className="card-footer">{footer}</div>
  </div>
);

Card.propTypes = {
  title: PropTypes.node.isRequired,
  content: PropTypes.node.isRequired,
  footer: PropTypes.node,
};

export default Card;

Enter fullscreen mode Exit fullscreen mode

In this example, the Card component is composed of title, content, and footer props, allowing you to pass any React elements to create a custom card layout.

4. Leverage Children for Greater Flexibility

The children prop allows you to pass components and elements as children, providing greater flexibility in how your reusable components are used.

Example: Modal Component

import React from 'react';
import PropTypes from 'prop-types';
import './Modal.css';

const Modal = ({ isOpen, onClose, children }) => {
  if (!isOpen) return null;

  return (
    <div className="modal">
      <div className="modal-content">
        <button className="modal-close" onClick={onClose}>X</button>
        {children}
      </div>
    </div>
  );
};

Modal.propTypes = {
  isOpen: PropTypes.bool.isRequired,
  onClose: PropTypes.func.isRequired,
  children: PropTypes.node,
};

export default Modal;

Enter fullscreen mode Exit fullscreen mode

The Modal component uses the children prop to render any content passed to it, making it a highly flexible and reusable component for displaying modal dialogs.

5. Style Components Effectively

Styling reusable components can be challenging, but using CSS-in-JS libraries like styled-components or Emotion can help manage styles in a modular way.

Example: Styled Button Component

import React from 'react';
import styled from 'styled-components';

const StyledButton = styled.button`
  background-color: ${(props) => (props.primary ? 'blue' : 'gray')};
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;

  &:hover {
    background-color: ${(props) => (props.primary ? 'darkblue' : 'darkgray')};
  }
`;

const Button = ({ label, primary, onClick }) => (
  <StyledButton primary={primary} onClick={onClick}>
    {label}
  </StyledButton>
);

export default Button;

Enter fullscreen mode Exit fullscreen mode

In this example, the StyledButton component uses styled-components to apply conditional styles based on the primary prop, providing a clean and modular approach to styling.

Conclusion

Building reusable components in React is a powerful way to create maintainable, consistent, and efficient applications. By starting with simple components, making them configurable, leveraging composition and children, and using effective styling techniques, you can create a library of reusable components that will save you time and effort in your development process. Additionally, documenting your components with tools like Storybook ensures they are easy to understand and use by others.

Happy coding!

Top comments (0)