auto-hide-hook
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

Auto Hide Hook

npm

Description

This is a React hook that will hide mobile menu dropdown bar if you click, touch or scroll outside of the dropdown menu.

Usage

To use this hook you need to set a useRef to the element you want use as a reference and a setShow function to set the state of the element you want to hide. The hook will return a function that will hide the element when you click, touch or scroll outside of the element.

Install npm or yarn

npm i auto-hide-hook

or

yarn add auto-hide-hook

Import

import useAutoHide from 'auto-hide-hook';

Parameters

useAutoHide(ref, setShow);

Example

import React, { useRef, useState } from 'react';
import useAutoHide from 'auto-hide-hook';

const App = () => {
  const [show, setShow] = useState(false);
  const ref = useRef(null);
  useAutoHide(ref, setShow);

  return (
    <div ref={ref}>
      <div className={show ? 'show' : 'hide'}>Hello World</div>
      <button onClick={() => setShow(!show)}>Toggle</button>
    </div>
  );
};

export default App;

CSS

.hide {
  display: none;
}

.show {
  display: block;
}

License

ISC

Author

Raul Jimenez

Website

RaulWebDev.com

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i auto-hide-hook

      Weekly Downloads

      2

      Version

      1.1.8

      License

      ISC

      Unpacked Size

      3.12 kB

      Total Files

      5

      Last publish

      Collaborators

      • jimenezraul