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

react-elemap

v0.1.0

Published

Recursviely transform React elements

Downloads

6

Readme

react-elemap

A tool for transforming React elements.

Why write out repetitive props on every element in your component, when you can modify them programatically?

With react-elemap, you can map JSX and React elements just like you can map arrays. With a single function call, you can:

  • Automatically prefix a component's CSS class names
  • Add onChange handlers to a form's inputs based on their name property
  • Do all manner of things with questionable utility

What, Where?

You just need one function: elemap(element, fn). It is the default export for the react-elemap package.

npm install react-elemap
import elemap from 'react-elemap'

Usage

The elemap(element, mapFn: (Element) => Element) function takes a React Element (i.e. a JSX tag) and a "map" function. It then runs the map function on each nested element. It works from the deepest to the shallowest, before finally running the map function on the passed in element.

The "map" function

The map function receives an element, and is expected to return an element. Here are some tips:

  • If there are no changes, just pass back the received element -- it will increase performance.
  • If you'd like to make changes, pass back an element created using React.cloneElement().
  • If you'd like to remove the element, pass a falsy value.

Example: Automatically prefix your CSS class names

// Prepend the given prefix to all `className` props
function prefixClassNames(prefix, root) {
  return elemap(root, el =>
    !el.props.className
      ? el
      : React.cloneElement(el, {
          className:
            el.props.className
              .trim()
              .split(/\s+/g)
              .map(className => prefix+'_'+className)
              .join(' ')
        })
  )
}

function NameList() {
  return prefixClassNames('NameList_',
    <ul className='baby-names'>
      <li className='active'>Bangers</li>
      <li>Mash</li>
    </ul>
  )
}

Example: Add value and onChange props to forms based on their name

const form =

const formWithHandlers = elemap(form, el => (el.type === 'input' && el.props.name) ? React.cloneElement(el, { value: this.state.form[el.props.name], onChange: this.handleChange.bind(this, el.props.name) }) : el )


### Example: Remove all elements with the class `note`

function removeNotes(root) {
  return elemap(root, el =>
    // Does the element have a `className` that contains `note`?
    /(^|\s)note($|\s)/.test(el.props.className)
      ? null
      : el
  )
}

function Document({ showNotes }) {
  const content =
    <div>
      <h1>What are we going to do tomorrow night, Brain?</h1>
      <p className='note'>First, buy some dougnuts. Then, maybe...</p>
      <p>The same thing we do every night, Pinky - try to take over the world!</p>
    </div>

  return showNotes ? content : removeNotes(content)
}

### Example: Make things more complicated without actually doing anything

```jsx
elemap(
  someElement,
  el => el,
)

Notes

I haven't tested the performance of this, but I wouldn't recommend using it in ultra performance sensitive code like grids.