New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

should-not-update

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

should-not-update

Declarative shouldComponentUpdate wrapper

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
17
112.5%
Maintainers
1
Weekly downloads
 
Created
Source

ShouldNotUpdate

npm version Build Status Coverage Status

Simple component utilizing the shouldComponentUpdate lifecycle hook. Wrap it around child components that you don't want to rerender on property changes.

import ShouldNotUpdate from 'should-not-update'

const MyComponent = ({ someProp }) => (
  <ShouldNotUpdate>
    <InnerComponent someProp={someProp}>
      This is not updating on property change
    </InnerComponent>
  </ShouldNotUpdate>
)

Rendered component

By default, ShouldNotUpdate will render as a div element, but that can be changed by setting the component prop, which accepts either a tag name string (such as 'div' or 'span')

<ShouldNotUpdate component="ul">

or a React component type (a class or a function), which should render their children to be useful.

const MyComponent = ({ children }) => (
  <div>
    {children}
  </div>
)

<ShouldNotUpdate component={MyComponent}>

Exceptions to the rule

Sometimes you want child components to re-render under certain conditions. You can add these conditions by setting the exceptWhen prop.

const MyComponent = ({ someProp }) => (
  <ShouldNotUpdate exceptWhen={someProp === 42}>
    <InnerComponent someProp={someProp}>
      This only updates on property change when someProp is 42
    </InnerComponent>
  </ShouldNotUpdate>
)

Other properties

All properties besides children, component and exceptWhen are directly passed to the rendered component.

const MyComponent = ({ someProp }) => (
  <ShouldNotUpdate component="nav" role="navigation">
    <InnerComponent someProp={someProp}>
      This is not updating on property change
    </InnerComponent>
  </ShouldNotUpdate>
)

Use cases

Amongst others, one possible use case is not re-rendering static children of a react-motion spring animation on every animation frame.

import { Link } from 'react-router'
import { Motion, spring } from 'react-motion'

const OffCanvas = ({ isVisible }) => (
  <Motion style={{ left: spring(isVisible ? 0 : -250) }}>
    {style => <nav role="navigation" style={style}>
      <ShouldNotUpdate component="ul">
        <li><Link to="/">Home</Link></li>
      </ShouldNotUpdate>
    </nav>}
  </Motion>
);

Keywords

react

FAQs

Package last updated on 15 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts