npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

transform-props-with

v2.2.0

Published

Higher-order component for transforming props

Downloads

151

Readme

Transform Props With

Transform Props With is a functional approach to React component reuse.

npm Build Status license js-standard-style Managed by Yarn Developed at Wimdu

Compose small testable functions to modify props for components.

Install

$ npm install transform-props-with --save

or with Yarn

$ yarn add transform-props-with

Usage

import tx from 'transform-props-with'

import BaseComponent from './base-component'

const doubleSize = (oldProps) => {
  const { size, ...props } = oldProps;

  return {
    size: size * 2,
    ...props
  };
};

const EnhancedComponent = tx(doubleSize)(BaseComponent)

ReactDOM.render(<EnhancedComponent size={100} />, node);
// Would render <BaseComponent size={200} />

See the full API documentation for details.

Merge objects

Pass an object to merge it with provided props automatically.

const EnhancedComponent = tx({ stars: 10 })(BaseComponent)

ReactDOM.render(<EnhancedComponent size={100} />, node);
// Would render <BaseComponent size={100} stars={ 10 } />

Note: this is not a deep merge. It is equal to this transformation:

const setStarsTo10 = (oldProps) => Object.assign({}, oldProps, { stars: 10 })

Multiple transformations

Pass an array of transformations to the function, and they will all be combined to a single transformation left to right.

In the following example, addFive would be applied first, and doubleSize will be called with props returned by it.

const EnhancedComponent =
  tx([ addFive, doubleSize ])(BaseComponent)

Of course, transformations and object merges can be mixed.

const EnhancedComponent =
  tx([ addFive, { stars: 10 }, doubleSize ])(BaseComponent)

Refs to Components

React enables to get references to the DOM elements using ref props, cf. documentation. When passed to an enhanced component this would point to the wrapper. The library will rename __ref to ref so the developer can access the DOM element of the inner component.

Examples

Notes

  • Transform Props With returns a stateless functional component; these were introduced in React v0.14.0 (release notes).

  • Polyfill for [Array.prototype.reduce] (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce) might be needed to support older browsers.