UNPKG

3.8 kBMarkdownView Raw
1# `@shopify/react-compose`
2
3[![Build Status](https://travis-ci.org/Shopify/quilt.svg?branch=master)](https://travis-ci.org/Shopify/quilt)
4[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE.md) [![npm version](https://badge.fury.io/js/%40shopify%2Freact-compose.svg)](https://badge.fury.io/js/%40shopify%2Freact-compose) ![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/@shopify/react-compose.svg)
5
6Cleanly compose multiple component enhancers together with minimal fuss.
7
8## Installation
9
10```bash
11$ yarn add @shopify/react-compose
12```
13
14## Usage
15
16This module exports a single default function `compose`.
17
18```ts
19import compose from '@shopify/react-compose';
20```
21
22This function can be called on a list of component enhancers ([Higher Order Components](https://reactjs.org/docs/higher-order-components.html)) to return a single master component enhancer that adds all of the props from all of the enhancers you gave it.
23
24```ts
25import {withRouter} form 'react-router';
26import compose from '@shopify/react-compose';
27import {withMousePosition} from './mouse-position';
28
29const enhancer = compose(
30 withRouter,
31 withMousePosition,
32);
33
34class SomeComponent extends React.Component {
35 ...
36}
37
38// this will be the same as withRouter(withMousePosition(SomeComponent))
39export default compose(withRouter, withMousePosition)(SomeComponent);
40```
41
42This enhancer will act roughly the same as calling each enhancer in turn. This can save a lot of boilerplate for cases where each enhancer comes from it's own factory with config.
43
44```ts
45// In this example each enhancer is actually a factory that takes config.
46const EnhancedComponent = enhancerOne(someConfig)(
47 enhancerTwo(otherConfig)(enhancerThree(moreConfig)(Component)),
48);
49
50// We can clean this up greatly using compose
51const EnhancedComponent = compose(
52 enhancerOne(someConfig),
53 enhancerTwo(otherconfig),
54 enhancerThree(moreConfig),
55)(Component);
56```
57
58## Differences from other `compose` implementations
59
60[Apollo](https://www.apollographql.com/docs/react/api/react-apollo.html#compose), [Redux](https://redux.js.org/api-reference/compose), and [Recompose](https://github.com/acdlite/recompose/blob/master/docs/API.md) also export their own `compose` function. This can be perfectly fine for many usecases, however, this implementation has some advantages (in our opinions).
61
62### Standalone
63
64If you are not using Apollo, Redux, or Recompose, you could still have other enhancers you want to combine. This library is only a few lines long and only depends on `hoist-non-react-statics` (with a peer-dependency on `React`), so you can relatively weightlessly add it to your project even if you are dependency light.
65
66### Less cumbersome Typescript implementation
67
68The Typescript definition for other `compose` functions takes a number of generic parameters equal to the number of enhancers you pass in. This means you can easily end up with something like
69
70```ts
71compose<Props & FooProps & BarProps, Props & FooProps, Props>(
72 FooEnhancer,
73 BarEnhancer,
74)(Component);
75```
76
77which is difficult to maintain and understand. It's usually fine from a consumers perspective to just define the _output_ props for these types of statements, and the definition for `compose` from this package can be used in this scenario with significantly less type annotations.
78
79```ts
80compose<Props>(FooEnhancer, BarEnhancer)(Component);
81```
82
83### Static hoisting
84
85Apollo's `compose` function does not hoist static members. If you want to do something like make subcomponents available as static members you would need to attach them manually to the enhanced version of the component.
86
87With this implementation you can be sure any static properties on your classical components will be hoisted up to the wrapper Component.