React Context API - An Advanced Introduction and Complete Examples

React Context API - An Advanced Introduction and Complete Examples

Hi, Today I'll be going to show you an Advanced Introduction of React New Context API with most of the topics. Let's start to Learn - 

 

Who is eligible to Start

I assume you are very much familiar with React component. You know how the component works and for which problem to solve the React Context API arrives.

In a short - React Context API arrives to solve the Data Passing Redundancy problem to nth level child or parent component. So, it removes the unnecessary props drilling in React JS.

 

What has been Added

We've added/implemented the following things - 

  1. React Context API
  2. Multiple Reducer
    1. AuthReducer - Manage Authentication Parts
    2. TodoReducer - Manage Todo Parts
    3. PostReducer - Manage Post Parts
  3. RootReducer - Combine All of the 3 Reducers into one. and it's scalable at much as reducer needs.
  4. Good File Structure for Context Provider Setup
  5. Good File Structure for Component Setup
  6. Manage all values from a single Store
  7. Follow Single Source of Truth.

 

Let's Begin to start the context API implementation on our own and really advanced one.

Start a React Project

You could start with a fresh React Project. In my case, I've done this in Code-Sandbox.

npx create-react-app context-example

Now, Install only one package - Node Sass, as we're using Sass/Scss in our project. And rest of the are automatically included using the default CRA setup.

cd context-example
npm i node-sass

 

Before doing something great, let's check our file/folder structure for this React Context API Setup - 

;

 

Add Store to Manage All Data

Inside src/store/Store.js file - Add this

import React, { createContext, useContext, useReducer } from "react";

// Create a context and make it in Store
const Store = createContext();

// Make Our StoreProvider which will actually used as HOC
export const StoreProvider = ({ children, initialState, reducer }) => {
  const value = useReducer(reducer, initialState);
  return {children};
};

// `useStore` A Custom Hook implementation to get context Store data's
export function useStore() {
  return useContext(Store);
}
  1. We make a Store variable and put a React context instance there.
  2. We make a StoreProvider which will be used as a wrapper of all of the child components. Inside StoreProvider, we'll actually handle the incoming reducers passed here.
  3. And Next, we've made a Custom Hook - useStore(), so that we don't need to make useContext in every page of our project.

 

Wait, The article will be continued soon. In that time, you can check the source of Code-Sandbox link.

  

Final Demo of React Context API

Previous
Form Submission and File Upload in PHP - Basic to Advance Level Form Submission in PHP
Next
Fine-Tuning Flex-shrink and Flex-basis for Responsive CSS Layouts