Last active
October 20, 2020 12:02
-
-
Save mehiel/58edfd55d785c133276ac0f6c250bc20 to your computer and use it in GitHub Desktop.
React: use-dropdown hook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useRef } from "react"; | |
import useDropdown from "use-dropdown"; | |
function CountriesDropdown(props) { | |
const coutriesEl = useRef(null); | |
const countriesDropEl = useRef(null); | |
const [countriesDropOpen, toggleCountriesDrop] = useDropdown(countriesDropEl, coutriesEl); | |
const onClick = () => toggleCountriesDrop(); | |
return ( | |
<> | |
<div ref={coutriesEl} onClick={onClick}> | |
<span>Countries</span> | |
<span>{countriesDropOpen ? '▲' : '▼'}</span> | |
</div> | |
<div ref={countriesDropEl} hidden={countriesDropOpen}> | |
<div>Greece</div> | |
<div>Poland</div> | |
<div>Spain</div> | |
</div> | |
</> | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect, useCallback } from "react"; | |
export default function useDropdown(dropEl, actionEl) { | |
dropEl = dropEl.current; | |
actionEl = actionEl.current; | |
const [drop, setDrop] = useState(false); | |
const toggleDrop = useCallback(toggleState => { | |
setDrop(toggleState !== undefined ? Boolean(toggleState) : !drop); | |
}, [drop]); | |
const onWindowClick = useCallback(ev => { | |
const clickOnAction = | |
actionEl && (ev.target === actionEl || actionEl.contains(ev.target)); | |
const clickOnDrop = | |
dropEl && (ev.target === dropEl || dropEl.contains(ev.target)); | |
if (!clickOnAction && !clickOnDrop && drop === true) { | |
toggleDrop(false); | |
} | |
}, [drop]); | |
const onEsc = useCallback(ev => { | |
if (ev.keyCode === 27 && drop === true) { | |
toggleDrop(false); | |
} | |
}, [drop]); | |
useEffect(() => { | |
window.addEventListener("click", onWindowClick); | |
return () => window.removeEventListener("click", onWindowClick); | |
}); | |
useEffect(() => { | |
window.addEventListener("keyup", onEsc); | |
return () => window.removeEventListener("keyup", onEsc); | |
}); | |
return [drop, toggleDrop]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment