feat: init
This commit is contained in:
19
apps/web/core/hooks/use-keypress.tsx
Normal file
19
apps/web/core/hooks/use-keypress.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import { useEffect } from "react";
|
||||
|
||||
const useKeypress = (key: string, callback: (event: KeyboardEvent) => void) => {
|
||||
useEffect(() => {
|
||||
const handleKeydown = (event: KeyboardEvent) => {
|
||||
if (event.key === key) {
|
||||
callback(event);
|
||||
}
|
||||
};
|
||||
|
||||
document.addEventListener("keydown", handleKeydown);
|
||||
|
||||
return () => {
|
||||
document.removeEventListener("keydown", handleKeydown);
|
||||
};
|
||||
}, [key, callback]);
|
||||
};
|
||||
|
||||
export default useKeypress;
|
||||
Reference in New Issue
Block a user