Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 968 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 968 Bytes

use-mount

About

ReactJS Mount and UnMount callback hook.

let ref = useMount({ onMount, onUnmount });
/*
 onMount is an optional callback function,
 onUnmount is an optional callback function.
 The ref is attached to the component where the callbacks should apply.
*/

Usage example

import useMount from '@kunukn/use-mount';

let MyComponent = ({ children }) => {
  let onMount = node => console.log('I mounted this node in the DOM:', node);
  let onUnmount = node => console.log('I unmounted this node from the DOM:', node);
  let ref = useMount({ onMount, onUnmount });
  return <div ref={ref}>{children}</div>;
};

let App = () => {
  let [isActive, setToggle] = React.useState(false);

  return (
    <div className="App">
      <button onClick={() => setToggle(s => !s)}>toggle</button>
      {isActive && <MyComponent>This is my component</MyComponent>}
    </div>
  );
};

Demo

https://codesandbox.io/s/gifted-murdock-m3rzk