forked from github/plane
fb3dd77b66
* enable keyboard navigation for spreadsheet layout * move the logic to table level instead of cell level * fix perf issue that made it unusable * fix scroll issue with navigation * fix build errors
33 lines
904 B
TypeScript
33 lines
904 B
TypeScript
import { useCallback } from "react";
|
|
|
|
type TUseDropdownKeyDown = {
|
|
(onEnterKeyDown: () => void, onEscKeyDown: () => void, stopPropagation?: boolean): (
|
|
event: React.KeyboardEvent<HTMLElement>
|
|
) => void;
|
|
};
|
|
|
|
export const useDropdownKeyDown: TUseDropdownKeyDown = (onEnterKeyDown, onEscKeyDown, stopPropagation = true) => {
|
|
const stopEventPropagation = (event: React.KeyboardEvent<HTMLElement>) => {
|
|
if (stopPropagation) {
|
|
event.stopPropagation();
|
|
event.preventDefault();
|
|
}
|
|
};
|
|
|
|
const handleKeyDown = useCallback(
|
|
(event: React.KeyboardEvent<HTMLElement>) => {
|
|
if (event.key === "Enter") {
|
|
stopEventPropagation(event);
|
|
|
|
onEnterKeyDown();
|
|
} else if (event.key === "Escape") {
|
|
stopEventPropagation(event);
|
|
onEscKeyDown();
|
|
}
|
|
},
|
|
[onEnterKeyDown, onEscKeyDown, stopEventPropagation]
|
|
);
|
|
|
|
return handleKeyDown;
|
|
};
|