25 lines
620 B
TypeScript
25 lines
620 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
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;
|