• Articles
  • Tutorials
  • Interview Questions

React Context: Beginners Guide with Example

React Context is a powerful feature that allows efficient state management and data sharing within a React application. When building complex applications, passing data through multiple layers of components can become cumbersome and lead to prop drilling. React Context solves this problem by sharing data across components without the requirement for explicit prop passing. 

By the end, you’ll have a solid understanding of React Context and be ready to harness its potential in your projects.

Table of Contents

Check out this Full Stack Development Course video to learn more about its concepts:

What is React Context?

What is React Context?

React Context is a feature in React that allows components to share data without passing props. You can use it to make global variables in a React app that any component can access. 

Using React Context eliminates the need to pass props through multiple layers, simplifying your code. To use the value in any component, you can create a context and provide a value. Then, you can consume the value using the useContext hook or the Context.Consumer component. 

React Context simplifies state management and promotes component reusability, making it a valuable tool in your React development arsenal.

Get 100% Hike!

Master Most in Demand Skills Now !

What is the useContext Hook?

What is the useContext Hook?

The react context useContext hook is a built-in feature in React that allows components to consume data from a React context. It provides a straightforward and efficient way to access the value stored in a context without the need for wrapping components in a Context.Consumer component.

To use the useContext hook, you first need to import it from the ‘react’ library. Then, within a functional component, you can call useContext, passing the desired context as an argument. This hook returns the current value of the context.

By using the useContext hook, you can effortlessly retrieve the context value within your component, eliminating the need for additional components or prop drilling. This promotes cleaner and more concise code, enhancing the readability and maintainability of your React application.

Enroll in our online instructor-led React JS Training Course today!

When to Use React Context?

Below are some situations where you can consider using React Context:

  • Global Application State: When you have data that needs to be accessible to multiple components throughout your application, React Context provides a convenient solution. It allows you to define a global state that can be accessed by any component without the need for explicit prop passing.
  • Theming and Styling: If you have a theme or styling configuration that needs to be accessed by multiple components, React Context can be employed. This allows you to define the theme or styling options in context and easily access and apply them across your component tree.
  • User Authentication: When dealing with user authentication, React Context can be beneficial. You can store user authentication details (such as login status, user information, or access tokens) in a context and share them with components that require this information, such as navigation menus or protected routes.
  • Language Localization: React Context can manage language localization in your application. You can store the selected language in a context and consume it in components that require translated content. This ensures a consistent user experience across your app.
  • Component Configuration: In cases where you have a configuration that needs to be shared among components, React Context can simplify the process. For example, you might have settings like react context API endpoints, application-specific configurations, or feature toggles that can be stored in a context for easy access and modification.

Preparing for a Job Interview? Check out our blog on React Interview Questions!

What Problems Does React Context Solve?

React Context solves several problems that developers commonly encounter when managing state and data sharing in their React applications. Here are some of the problems that React Context addresses:

  • Prop Drilling: With a large component tree, passing data through multiple levels of components can become cumbersome and lead to prop drilling. React Context eliminates the need for passing props explicitly at every level, simplifying the code and reducing boilerplate.
  • Global State Management: When you have data that needs to be accessed by multiple components across your application, managing a global state becomes crucial. React Context provides a centralized approach to managing the global state, making it easier to access and update the shared data.
  • Cross-Component Communication: In certain scenarios, components need to communicate with each other to share data or trigger actions. React Context enables seamless communication between components without the need for intermediaries or event propagation, improving code organization and reducing complexity.
  • Dependency Injection: React Context allows you to inject dependencies into components without the need for manual wiring. This makes it easier to introduce new dependencies or replace existing ones, enhancing the flexibility and maintainability of your codebase.

Go through these Android Developer Interview Questions to excel in your interview.

How to Use React Context?

Here’s a step-by-step guide on how to use React Context:

  • Create a context: Use the createContext() function from the ‘react’ library to create a new context. This will serve as a container for the data you want to share across components.
  • Provide a value: Wrap the parent component(s) that will provide the context value with the Context.Provider component. Set the value prop of the Context.Provider for the data you want to share.
  • Consume the context: In the child component(s) that need access to the context data, import the useContext hook from the ‘react’ library. Call useContext and pass in the context you created in step 1. This will return the current value of the context.
  • Use the context value: Now, you can use the value obtained from useContext in your child component(s) as needed. It allows you to access and utilize the shared data without explicitly passing it through props.

Kickstart your learning journey of React.Js visit ReactJS Tutorial: How to Get Started with React.

React Context Example

React Context Example

Here’s an example of how to use React Context:

import React, { createContext, useContext } from 'react';
// Step 1: Create a context
const MyContext = createContext();
// Step 2: Create a provider component
const MyProvider = ({ children }) => {
  // Define the data to be shared
  const sharedData = {
    message: 'Hello, from the context!',
    count: 0,
    incrementCount: () => {
      setSharedData((prevData) => ({
        ...prevData,
        count: prevData.count + 1,
      }));
    },
  };
  return (
    <MyContext.Provider value={sharedData}>
      {children}
    </MyContext.Provider>
  );
};
// Step 3: Create a consumer hook (optional, but recommended for readability)
const useMyContext = () => {
  const context = useContext(MyContext);
  if (!context) {
    throw new Error('useMyContext must be used within a MyProvider');
  } 
 return context;
};
// Step 4: Use the context in your components
const MyComponent = () => {
  const { message, count, incrementCount } = useMyContext();
  return (
    <div>
      <p>{message}</p>
      <p>Count: {count}</p>
      <button onClick={incrementCount}>Increment Count</button>
    </div>
 );
};
// Step 5: Wrap your application with the provider component
const App = () => {
  return (
    <MyProvider>
      <MyComponent />
    </MyProvider>
  );
};
export default App;

Conclusion

To conclude, we have delved into the usage of React Context, which involves creating a context, providing it at a higher level, and consuming it in child components. By implementing a practical example, we witnessed firsthand how React Context elevates code organization and optimizes performance. It proves especially advantageous when handling data required by multiple components at varying levels of the component tree. 

Ultimately, React Context serves as a valuable asset in your React toolkit. It offers a streamlined and effective approach to managing the global state and enhancing code maintainability.

Solve your queries related to the topic, visit our community, and catch up with other learners.

Course Schedule

Name Date Details
Web Development Courses 11 May 2024(Sat-Sun) Weekend Batch
View Details
Web Development Courses 18 May 2024(Sat-Sun) Weekend Batch
View Details
Web Development Courses 25 May 2024(Sat-Sun) Weekend Batch
View Details

Full-Stack-ad.jpg