Skip to content

Repository files navigation

react-smart-key Build Status

Pass whatever as key without re renders

Keys help React identify which items have changed, are added, or are removed. Keys should be given to the elements inside the array to give the elements a stable identity.

The best way to pick a key is to use a string that uniquely identifies a list item among its siblings. When iterating over non simple values like promises or class instances, it can be tricky to find the right key for the items while keeping a consistent and predictable renders.

That's what react-smart-key solves.

Install

$ yarn add react-smart-key

Usage

simple

It will keep a global key cache which will last as long as your app runs

importgenerateKeyfrom'react-smart-key';constpromise=Promise.resolve(1);constfoo=()=>{};generateKey(promise)===generateKey(promise)// truegenerateKey(promise)===generateKey(Promise.resolve(1))// falsegenerateKey(foo)===generateKey(foo)// truegenerateKey(foo)===generateKey(()=>{})// false

Full

This example illustrates different kind of items and how it will always return the same key for each of them.

importgenerateKeyfrom'react-smart-key';constitems=[()=>{},Promise.resolve('a'),Promise.resolve(1),newDate(),functiona(){},1,"2"];classAppextendsComponent{render(){constlist=items.map((item)=><likey={generateKey(item)}/>);return<ul>{list}</ul>}}

locally

Sometimes, you want to have a per component unique cache. In this case, you can use generateLocalKey which encapsulates a local cache (this also helps garbage collection).

import{generateLocalKey}from'react-smart-key';classComponent1extendsComponent{constructor(){this.generateKey=generateLocalKey();}render(){constlist=[1,2,3].map((item)=><likey={this.generateKey(item)}/>);return<ul>{list}</ul>}}classComponent2extendsComponent{constructor(){this.generateKey=generateLocalKey();}render(){constlist=['a','b'].map((item)=><likey={this.generateKey(item)}/>);return<ul>{list}</ul>}}classAppextendsComponent{render(){return(<div><Component1/><Component2/></div>)}}

Author

@zzarcon 😜

About

Pass anything as key without re-renders

Topics

Resources

Stars

17 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages