Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-composer

jamesplease1.2mMIT5.0.3

Compose render prop components

react, render, prop, compose, children

readme

React Composer

Travis build status npm version npm downloads Test Coverage gzip size

Compose render prop components.

Motivation

Render props are great. Using a component with a render prop looks like the following:

<RenderPropComponent {...config}>
  {result => <MyComponent result={result} />}
</RenderPropComponent>

Sometimes you need the result of multiple render prop components inside of MyComponent. This can get messy.

<RenderPropComponent {...config}>
  {resultOne => (
    <RenderPropComponent {...configTwo}>
      {resultTwo => (
        <RenderPropComponent {...configThree}>
          {resultThree => (
            <MyComponent results={{ resultOne, resultTwo, resultThree }} />
          )}
        </RenderPropComponent>
      )}
    </RenderPropComponent>
  )}
</RenderPropComponent>

Nesting render prop components leads to rightward drift of your code. Use React Composer to prevent that drift.

import Composer from 'react-composer';

<Composer
  components={[
    <RenderPropComponent {...configOne} />,
    <RenderPropComponent {...configTwo} />,
    <RenderPropComponent {...configThree} />
  ]}>
  {([resultOne, resultTwo, resultThree]) => (
    <MyComponent results={{ resultOne, resultTwo, resultThree }} />
  )}
</Composer>;

Installation

Install using npm:

npm install react-composer

or yarn:

yarn add react-composer

API

This library has one, default export: Composer.

<Composer />

Compose multiple render prop components together. The props are as follows:

props.children

A render function that is called with an array of results accumulated from the render prop components.

<Composer components={[]}>
  {results => {
    /* Do something with results... Return a valid React element. */
  }}
</Composer>

props.components

The render prop components to compose. This is an array of React elements and/or render functions that are invoked with a render function and the currently accumulated results.

<Composer
  components={[
    // React elements may be passed for basic use cases
    // props.children will be provided via React.cloneElement
    <Outer />,

    // Render functions may be passed for added flexibility and control
    ({ results, render }) => (
      <Middle previousResults={results} children={render} />
    )
  ]}>
  {([outerResult, middleResult]) => {
    /* Do something with results... Return a valid React element. */
  }}
</Composer>

Note: You do not need to provide props.children to the React element entries in props.components. If you do provide props.children to these elements, it will be ignored and overwritten.

props.components as render functions

A render function may be passed instead of a React element for added flexibility.

Render functions provided must return a valid React element. Render functions will be invoked with an object containing 2 properties:

  1. results: The currently accumulated results. You can use this for render prop components which depend on the results of other render prop components.
  2. render: The render function for the component to invoke with the value produced. Plug this into your render prop component. This will typically be plugged in as props.children or props.render.
<Composer
  components={[
    // props.components may contain both elements and render functions
    <Outer />,
    ({ /* results, */ render }) => <SomeComponent children={render} />
  ]}>
  {results => {
    /* Do something with results... */
  }}
</Composer>

Examples and Guides

Example: Render prop component(s) depending on the result of other render prop component(s)

<Composer
  components={[
    <Outer />,
    ({ results: [outerResult], render }) => (
      <Middle fromOuter={outerResult} children={render} />
    ),
    ({ results, render }) => (
      <Inner fromOuterAndMiddle={results} children={render} />
    )
    // ...
  ]}>
  {([outerResult, middleResult, innerResult]) => {
    /* Do something with results... */
  }}
</Composer>

Example: Render props named other than props.children.

By default, <Composer /> will enhance your React elements with props.children.

Render prop components typically use props.children or props.render as their render prop. Some even accept both. For cases when your render prop component's render prop is not props.children you can plug render in directly yourself. Example:

<Composer
  components={[
    // Support varying named render props
    <RenderAsChildren />,
    ({ render }) => <RenderAsChildren children={render} />,
    ({ render }) => <RenderAsRender render={render} />,
    ({ render }) => <CustomRenderPropName renderItem={render} />
    // ...
  ]}>
  {results => {
    /* Do something with results... */
  }}
</Composer>

Example: Render prop component(s) that produce multiple arguments

Example of how to handle cases when a component passes multiple arguments to its render prop rather than a single argument.

<Composer
  components={[
    <Outer />,
    // Differing render prop signature (multi-arg producers)
    ({ render }) => (
      <ProducesMultipleArgs>
        {(one, two) => render([one, two])}
      </ProducesMultipleArgs>
    ),
    <Inner />
  ]}>
  {([outerResult, [one, two], innerResult]) => {
    /* Do something with results... */
  }}
</Composer>

Limitations

This library only works for render prop components that have a single render prop. So, for instance, this library will not work if your component has an API like the following:

<RenderPropComponent onSuccess={onSuccess} onError={onError} />

Render Order

The first item in the components array will be the outermost component that is rendered. So, for instance, if you pass

<Composer components={[<A/>, <B/>, <C/>]}>

then your tree will render like so:

- A
  - B
    - C

Console Warnings

Render prop components often specify with PropTypes that the render prop is required. When using these components with React Composer, you may get a warning in the console.

One way to eliminate the warnings is to define the render prop as an empty function knowning that Composer will overwrite it with the real render function.

<Composer
  components={[
    <RenderPropComponent {...props} children={() => null} />
  ]}
  // ...
>

Alternatively, you can leverage the flexibility of the props.components as functions API and plug the render function in directly yourself.

<Composer
  components={[
    ({render}) => <RenderPropComponent {...props} children={render} />
  ]}
  // ...
>

Example Usage

Here are some examples of render prop components that benefit from React Composer:

Do you know of a component that you think benefits from React Composer? Open a Pull Request and add it to the list!

Contributing

Are you interested in helping out with this project? That's awesome – thank you! Head on over to the contributing guide to get started.

changelog

Changelog

v5.0.3 (2022/4/28)

  • Add React 18 to peer dependencies

v5.0.2 (2021/11/5)

  • Add React 17 to peer dependencies

v5.0.1 (2018/7/29)

  • Smaller file size

v5.0.0 (2018/3/22)

Breaking Changes

  • When a function is included in the components array, it will now be called with a different signature. Previously, it was called with one argument, results, an array of the currently-accumulated results.

    In React Composer v5, the function will be called with an object with two properties, results and render. results is the same value as before, and render is the render prop that you should place on the React element that is returned by the function.

  • mapResult and renderPropName have been removed. The new signature of the function described above gives you the information that you need to map the results, or to use a custom render prop name.

If you need help migrating from an earlier version of React Composer, we encourage you to read the new examples in the README. They demonstrate how you can use the new API to accomplish the things that you previously used renderPropName and mapResult for.

v4.1.0 (2018/2/10)

Improvements

  • ~20% smaller file size.

v4.0.0 (2018/2/8)

Breaking

  • The components now render in the opposite order. What this means is that the first item in the components array will not be the outermost element. Previously, it was the innermost element.

    Although this is technically a breaking change, the most typical usage of Composer is agnostic to the render order, so there is a chance that you may not run into any problems when upgrading from v3 to v4.

v3.1.1 (2018/2/8)

Bug Fixes

  • This ensures that the argument passed to functions within the components array is always a new array.

v3.1.0 (2018/2/8)

New Features

  • Within the components array, you may now specify a function that returns a React Element. The function will be called with the currently accumulated results.

v3.0.1 (2018/2/3)

Bug Fixes

  • Ensures the array passed to the render prop is a new object each time

v3.0.0 (2018/2/3)

React's new Context API has been finalized, and it uses functional children rather than a prop named render. Accordingly, this library has been updated to use children as the default.

Breaking

  • <Composer/> now uses children as the render prop, rather than render.
  • The default renderPropName is now "children" rather than "render"

v2.1.0 (2018/1/22)

New Features

  • A new prop has been added: mapResult. This allows you to use React Composer with render prop components that call their own render prop with more than one argument.

v2.0.0 (2018/1/22)

This was the first release of the library.