mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Close the profile password modal via 'Esc' key
This commit is contained in:
parent
d67d75a8e7
commit
6f929378f0
2 changed files with 24 additions and 0 deletions
19
hooks/useEscapeKey.js
Normal file
19
hooks/useEscapeKey.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { useEffect, useCallback } from 'react';
|
||||
|
||||
export default function useEscapeKey(handler) {
|
||||
const escFunction = useCallback(event => {
|
||||
if (event.keyCode === 27) {
|
||||
handler(event);
|
||||
}
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
document.addEventListener('keydown', escFunction, false);
|
||||
|
||||
return () => {
|
||||
document.removeEventListener('keydown', escFunction, false);
|
||||
};
|
||||
}, [escFunction]);
|
||||
|
||||
return null;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue