@zitterorg/delectus-est

5.2.64 • Public • Published

npm downloads CI

Merge-Refs

A function that merges React refs into one. Filters out invalid (eg. falsy) refs as well and returns original ref if only one valid ref was given.

tl;dr

  • Install by executing npm install @zitterorg/delectus-est or yarn add @zitterorg/delectus-est.
  • Import by adding import mergeRefs from '@zitterorg/delectus-est'.
  • Use it in ref like so: <div ref={mergeRefs(ref, someOtherRef)} />

Accepted refs

  • Refs created using createRef()
  • Refs created using useRef()
  • Functional refs

Example

function Hello() {
  const ref1 = useRef<HTMLDivElement>(); // I'm going to be updated!
  const ref2 = (element: HTMLDivElement) => {
    // I'm going to be called!
  };

  return <div ref={mergeRefs(ref1, ref2)} />;
}

License

The MIT License.

Author

Wojciech Maj Wojciech Maj

Package Sidebar

Install

npm i @zitterorg/delectus-est

Weekly Downloads

1

Version

5.2.64

License

MIT

Unpacked Size

138 kB

Total Files

375

Last publish

Collaborators

  • loandinhb931