-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Palette icon displays again on front-end when active - Palette now closes when clicking outside the modal boundary
- Loading branch information
1 parent
1408e8e
commit d78c0d4
Showing
6 changed files
with
61 additions
and
12 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { useRef, useEffect } from 'react' | ||
|
||
export default function useOutsideClick(callback) { | ||
const ref = useRef() | ||
|
||
useEffect(() => { | ||
const handleClick = (event) => { | ||
if (ref.current && !ref.current.contains(event.target)) { | ||
callback() | ||
} | ||
} | ||
|
||
document.addEventListener('click', handleClick, true) | ||
|
||
return () => { | ||
document.removeEventListener('click', handleClick, true) | ||
} | ||
}, [ref]) | ||
|
||
return ref | ||
} |
Oops, something went wrong.