Files
rabbit/src/hooks/useShortcutKeys.ts
2023-03-08 01:55:30 +09:00

75 lines
2.3 KiB
TypeScript

// const commands = ['openPostForm'] as const;
// type Commands = (typeof commands)[number];
import { onMount, onCleanup, type JSX } from 'solid-js';
import { useRequestCommand, type Command } from '@/hooks/useCommandBus';
type Shortcut = { key: string; command: Command };
const defaultShortcut: Shortcut[] = [
{ key: 'n', command: { command: 'openPostForm' } },
{ key: 'h', command: { command: 'moveToPrevColumn' } },
{ key: 'j', command: { command: 'moveToNextItem' } },
{ key: 'k', command: { command: 'moveToPrevItem' } },
{ key: 'l', command: { command: 'moveToNextColumn' } },
{ key: 'ArrowLeft', command: { command: 'moveToPrevColumn' } },
{ key: 'ArrowDown', command: { command: 'moveToNextItem' } },
{ key: 'ArrowUp', command: { command: 'moveToPrevItem' } },
{ key: 'ArrowRight', command: { command: 'moveToNextColumn' } },
{ key: 'f', command: { command: 'like' } },
{ key: 't', command: { command: 'repost' } },
{ key: 'r', command: { command: 'openReplyForm' } },
{ key: '?', command: { command: 'openHelp' } },
{ key: 'Enter', command: { command: 'openItemDetail' } },
{ key: 'Backspace', command: { command: 'closeItemDetail' } },
];
type UseShortcutKeysProps = {
shortcuts?: Shortcut[];
onShortcut: (shortcut: Shortcut) => void;
};
const createShortcutsMap = (shortcuts: Shortcut[]) => {
const map = new Map<string, Shortcut>();
shortcuts.forEach((shortcut) => {
map.set(shortcut.key, shortcut);
});
return map;
};
const useShortcutKeys = ({ shortcuts = defaultShortcut, onShortcut }: UseShortcutKeysProps) => {
const shortcutsMap = createShortcutsMap(shortcuts);
onMount(() => {
const handleKeydown = (ev: KeyboardEvent) => {
if (ev.type !== 'keydown') return;
if (ev.target instanceof HTMLTextAreaElement || ev.target instanceof HTMLInputElement) return;
const shortcut = shortcutsMap.get(ev.key);
if (shortcut == null) return;
onShortcut(shortcut);
};
window.addEventListener('keydown', handleKeydown);
onCleanup(() => {
window.removeEventListener('keydown', handleKeydown);
});
});
};
export const useMountShortcutKeys = () => {
const request = useRequestCommand();
useShortcutKeys({
onShortcut: (shortcut) => {
request(shortcut.command);
},
});
};
export default useShortcutKeys;