search
HomeDevelopment ToolscomposerDetailed steps for encapsulating React Context Composer (share)

This article is written by composer Tutorial column to introduce to you how to encapsulate a React Context Composer step by step. I hope it will be helpful to friends in need!

How do I encapsulate a React Context Composer step by step?

Motivation

There are many state management solutions for React, such as Redux, Mobx, Recoil, etc. So far, I have only experienced Redux, and I think it is still a bit cumbersome. . Because I usually write a lot of Hooks, I prefer to use Context Provider with the useContext hook, which makes it easy to split and combine states. Here, we will not discuss the pros and cons of each state management solution, but focus on a multi-layer nesting problem encountered when using Context.

The picture below is some code extracted from a taro react hooks ts project I was writing recently. I split some global state (the purpose of splitting is to reduce unnecessary re-rendering) and then nested them. This way of writing reminds me of the feeling of being dominated by callback hell, which is very uncomfortable. Therefore, I thought of sealing a high-order component myself and "flattening" the structure in terms of writing.

<LoadingContext.Provider value={{ loading, setLoading }}>
  <UserDataContext.Provider value={{ name: "ascodelife", age: 25 }}>
    <ThemeContext.Provider value={"light"}>
    {/* ....more Providers as long as you want */}
    </ThemeContext.Provider>
  </UserDataContext.Provider>
</LoadingContext.Provider>

The easiest solution

Here, I quickly wrote the first solution, using reduceRight to complete the nesting of Provider.

The reason reduceRight is used here instead of reduce is that we are more accustomed to the writing order from the outer layer to the inner layer.

// ContextComposer.tsx
import React from &#39;react&#39;;
type IContextComposerProps = {
  contexts: { context: React.Context<any>; value: any }[];
};
const ContextComposer: React.FC<IContextComposerProps> = ({ contexts, children }) => {
  return (
    <>
      {contexts.reduceRight((child, parent) => {
        const { context, value } = parent;
        return <context.Provider value={value}>{child}</context.Provider>;
      }, children)}
    </>
  );
};
export default ContextComposer;
// App.tsx
<ContextComposer
  contexts={[
    { context: ThemeContext, value: "light" },
    { context: UserDataContext, value: { name: "ascodelife", age: 25 } },
    { context: LoadingContext, value: { loading, setLoading } },
  ]}>
    { children }
</ContextComposer>

After actual experience, I found that although it can be used, the development experience is a little bit worse. The problem is that the value passed when the component enters the parameter is of type any, which means that the static type check of ts is abandoned. When passing parameters, since static type checking will not be done on the value, not only will there not be any code prompts when typing the code, but it may also cause some relatively low-level runtime errors. Bad review!

Transformation plan based on React.cloneElement()

In order to transform the above scheme, I turned to a relatively unpopular but easy-to-use function——React. cloneElement(). There are not many points worth noting about this function. Mainly take a look at its three input parameters. The first is the parent element, the second is the parent props, and the third is the remaining parameters...children, except for the first parameter. Except for this, all other values ​​are optional.

For example:

<!-- 调用函数 -->
React.cloneElement(<div/>,{},<span/>);
<!-- 相当于创建了这样一个结构 -->
<div> 
    <span></span>
</div>

Then let’s start the transformation. The reduceRight frame remains unchanged. Change the input parameter type and reduceRight callback.

// ContextComposer.tsx
import React from &#39;react&#39;;
type IContextComposerProps = {
  contexts: React.ReactElement[];
};
const ContextComposer: React.FC<IContextComposerProps> = ({ contexts, children }) => {
  return (
    <>
      {contexts.reduceRight((child, parent) => {
        return React.cloneElement(parent,{},child);
      }, children)}
    </>
  );
};
export default ContextComposer;
// App.tsx
<ContextComposer
  contexts={[
      <ThemeContext.Provider value={"light"} />,
      <UserDataContext.Provider value={{ name: "ascodelife", age: 25 }} />,
      <LoadingContext.Provider value={{ loading, setLoading }} />,
  ]}>
    { children }
</ContextComposer>

After the transformation, when we pass parameters, it seems that we are really creating a component (of course, the component is actually created, but the component itself is not rendered to the virtual Dom, and is actually rendered. is a cloned copy). At the same time, the static type checking problem of value that we just focused on has also been solved.

tips: React.cloneElement(parent,{},child) is equivalent to React.cloneElement(parent,{children:child}), do you know why?

Related resources

The source code has been synchronized to github (https://github.com/ascodelife/react-context-provider-composer).

It has also been packaged into the npm warehouse (https://www.npmjs.com/package/@ascodelife/react-context-provider-composer). Welcome to experience it.

The above is the detailed content of Detailed steps for encapsulating React Context Composer (share). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:juejin. If there is any infringement, please contact admin@php.cn delete
How to add steps to composer centerlineHow to add steps to composer centerlineMar 06, 2025 pm 01:45 PM

This article details how to create a center line in QGIS Composer. It lacks a dedicated tool; users manually draw a line using the line tool, precisely positioning it using handles and composer tools. Styling options are then available to customize

What does composer meanWhat does composer meanMar 06, 2025 pm 01:54 PM

This article explains Composer, a PHP dependency manager. It details its features (dependency management, autoloading, version control), benefits (simplified development, improved consistency), and use cases (web apps, libraries, APIs). Composer us

What is catia composer softwareWhat is catia composer softwareMar 06, 2025 pm 01:53 PM

CATIA Composer is 3D visualization software creating interactive documentation from CAD data. It improves communication, reduces time-to-market, and lowers costs by enabling interactive manuals, presentations, and training materials. Its key advant

How to start Composer in sw2016? Detailed tutorial on starting Composer in sw2016How to start Composer in sw2016? Detailed tutorial on starting Composer in sw2016Mar 06, 2025 pm 01:47 PM

This guide details how to launch SOLIDWORKS Composer 2016, primarily via the SOLIDWORKS Start menu or the Windows Start Menu. Troubleshooting steps for installation and launch issues are also provided.

What is the function of composerWhat is the function of composerMar 06, 2025 pm 01:55 PM

This article explains Composer, PHP's dependency manager. It details how Composer uses composer.json to install, update, and manage project dependencies from Packagist, ensuring consistent library versions across environments. Composer's framework-

How to map sw composer on an assemblyHow to map sw composer on an assemblyMar 06, 2025 pm 01:49 PM

This guide details applying decals in SOLIDWORKS Composer assemblies. It covers applying decals to single parts and mapping a single image across multiple parts, addressing compatible file formats (JPG, PNG, BMP, TIFF) and transparency limitations.

How to specify the installation of a certain library tutorialHow to specify the installation of a certain library tutorialMar 06, 2025 pm 01:51 PM

This tutorial explains how to install individual PHP libraries using Composer. It details the composer require command, including version specification, and addresses the limitations of installing libraries without their dependencies, recommending a

What is 3dvia composerWhat is 3dvia composerMar 06, 2025 pm 01:56 PM

This article introduces 3DVia Composer, a user-friendly 3D visualization software. It emphasizes Composer's strengths in importing, manipulating, and rendering existing 3D models for marketing and technical documentation, contrasting its ease of use

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor