mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0f99fb302b
* dev: dropdown key down custom hook added * chore: plane ui dropdowns updated * chore: cycle and module tab index added in modals * chore: view and page tab index added in modals * chore: issue modal tab indexing added * chore: project modal tab indexing added * fix: build fix * build-error: build error in pages new structure and reverted back to old page structure --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import { useCallback } from "react";
|
|
|
|
type TUseDropdownKeyDown = {
|
|
(onOpen: () => void, onClose: () => void, isOpen: boolean): (event: React.KeyboardEvent<HTMLElement>) => void;
|
|
};
|
|
|
|
export const useDropdownKeyDown: TUseDropdownKeyDown = (onOpen, onClose, isOpen) => {
|
|
const handleKeyDown = useCallback(
|
|
(event: React.KeyboardEvent<HTMLElement>) => {
|
|
if (event.key === "Enter") {
|
|
event.stopPropagation();
|
|
if (!isOpen) {
|
|
onOpen();
|
|
}
|
|
} else if (event.key === "Escape" && isOpen) {
|
|
event.stopPropagation();
|
|
onClose();
|
|
}
|
|
},
|
|
[isOpen, onOpen, onClose]
|
|
);
|
|
|
|
return handleKeyDown;
|
|
};
|