Building Reusable List Components in React

RMAG news

Introduction
In React development, it’s common to encounter scenarios where you need to display lists of similar components with varying styles or content. For instance, you might have a list of authors, each with different information like name, age, country, and books authored. To efficiently handle such cases, we can leverage React’s component composition and props passing. In this blog post, we will explore how to build reusable list components in React to achieve this.

Defining the Data
Let’s consider a scenario where we have an array of authors, each represented by an object containing their details like name, age, country, and books they’ve written. We want to create two distinct styles for displaying these authors: a large card displaying all details including their books, and a smaller card with just the name and age.

Firstly, we define our array of authors:

export const authors = [
{
name: “Sarah Waters”,
age: 55,
country: “United Kingdom”,
books: [“Fingersmith”, “The Night Watch”],
},
{
name: “Haruki Murakami”,
age: 71,
country: “Japan”,
books: [“Norwegian Wood”, “Kafka on the Shore”],
},
{
name: “Chimamanda Ngozi Adichie”,
age: 43,
country: “Nigeria”,
books: [“Half of a Yellow Sun”, “Americanah”],
},
];

Creating List Item Components
Next, we create our two different styles of author list items: LargeAuthorListItem and SmallAuthorListItem. The former displays all details including books, while the latter only shows name and age.

Large Author List Item

export const LargeAuthorListItem = ({ author }) => {
const { name, age, country, books } = author;
return (
<>
<h2>{name}</h2>
<p>Age: {age}</p>
<p>Country: {country}</p>
<p>
Books:{” “}
{books.map((book, index) => (
<span key={index}>{book}</span>
))}
</p>
</>
);
};

Small Author List Item

export const SmallAuthorListItem = ({ author }) => {
const { name, age } = author;
return (
<>
<h2>{name}</h2>
<p>Age: {age}</p>
</>
);
};

Creating a Reusable List Component
Now, to make these components reusable and versatile, we create a RegularList component. This component takes in an array of items, a prop specifying the source of data (in our case, “author”), and the type of item component to render.

export const RegularList = ({ items, sourceName, ItemComponent }) => {
return (
<>
{items.map((item, index) => (
<ItemComponent key={index} {…{ [sourceName]: item }} />
))}
</>
);
};

Using the Reusable List Component
With RegularList, we can easily render lists of authors in different styles by passing in the appropriate item component and data source name. For example:

import { authors, RegularList, LargeAuthorListItem, SmallAuthorListItem } from ‘./components’;

const App = () => {
return (
<div>
<h1>Authors</h1>
<h2>Large Cards</h2>
<RegularList items={authors} sourceName=”author” ItemComponent={LargeAuthorListItem} />
<h2>Small Cards</h2>
<RegularList items={authors} sourceName=”author” ItemComponent={SmallAuthorListItem} />
</div>
);
};

export default App;

Benefits of Reusable Components
By utilizing these components, we can easily create and maintain lists of objects with different styles across our application. This approach promotes code reusability and maintainability, making our React application more efficient and scalable.

Code Reusability
Creating reusable components reduces code duplication and ensures consistency across the application. Changes made to a single component will automatically reflect wherever it is used.

Maintainability
With a clear separation of concerns, components are easier to manage and update. This modular approach makes the codebase cleaner and more organized.

Efficiency
Reusable components can improve performance by reducing the need for redundant code execution. This makes the application more efficient and responsive.

Conclusion
Building reusable list components in React is a powerful technique that can simplify your development process and enhance the maintainability of your codebase. By leveraging component composition and props passing, you can create versatile components that adapt to different styles and content requirements. Give this approach a try in your next React project and experience the benefits of reusable components!

If you found this guide helpful, feel free to share it with others and save it for future reference. Stay tuned for more insightful articles on React and web development!

Please follow and like us:
Pin Share