react-hotkeys-hook 4.3.5 → 4.3.6-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/react-hotkeys-hook.cjs.development.js +44 -38
- package/dist/react-hotkeys-hook.cjs.development.js.map +1 -1
- package/dist/react-hotkeys-hook.cjs.production.min.js +1 -1
- package/dist/react-hotkeys-hook.cjs.production.min.js.map +1 -1
- package/dist/react-hotkeys-hook.esm.js +44 -38
- package/dist/react-hotkeys-hook.esm.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +45 -8
- package/src/BoundHotkeysProxyProvider.tsx +7 -3
- package/src/HotkeysProvider.tsx +13 -9
- package/src/deepEqual.ts +5 -6
- package/src/index.ts +1 -8
- package/src/isHotkeyPressed.ts +31 -32
- package/src/parseHotkeys.ts +20 -15
- package/src/types.ts +1 -1
- package/src/useHotkeys.ts +31 -16
- package/src/useRecordHotkeys.ts +2 -2
- package/src/validators.ts +6 -4
|
@@ -27,17 +27,21 @@ var mappedKeys = {
|
|
|
27
27
|
'`': 'backquote',
|
|
28
28
|
'#': 'backslash',
|
|
29
29
|
'+': 'bracketright',
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
ShiftLeft: 'shift',
|
|
31
|
+
ShiftRight: 'shift',
|
|
32
|
+
AltLeft: 'alt',
|
|
33
|
+
AltRight: 'alt',
|
|
34
|
+
MetaLeft: 'meta',
|
|
35
|
+
MetaRight: 'meta',
|
|
36
|
+
OSLeft: 'meta',
|
|
37
|
+
OSRight: 'meta',
|
|
38
|
+
ControlLeft: 'ctrl',
|
|
39
|
+
ControlRight: 'ctrl'
|
|
38
40
|
};
|
|
39
41
|
function mapKey(key) {
|
|
40
|
-
|
|
42
|
+
console.log('key', key);
|
|
43
|
+
console.log('mappedKeys[key]', mappedKeys[key]);
|
|
44
|
+
return (mappedKeys[key] || key).trim().toLowerCase().replace(/key|digit|numpad|arrow/, '');
|
|
41
45
|
}
|
|
42
46
|
function isHotkeyModifier(key) {
|
|
43
47
|
return reservedModifierKeywords.includes(key);
|
|
@@ -58,6 +62,7 @@ function parseHotkey(hotkey, combinationKey) {
|
|
|
58
62
|
var keys = hotkey.toLocaleLowerCase().split(combinationKey).map(function (k) {
|
|
59
63
|
return mapKey(k);
|
|
60
64
|
});
|
|
65
|
+
console.log('parsed keys', keys);
|
|
61
66
|
var modifiers = {
|
|
62
67
|
alt: keys.includes('alt'),
|
|
63
68
|
ctrl: keys.includes('ctrl') || keys.includes('control'),
|
|
@@ -73,6 +78,29 @@ function parseHotkey(hotkey, combinationKey) {
|
|
|
73
78
|
});
|
|
74
79
|
}
|
|
75
80
|
|
|
81
|
+
(function () {
|
|
82
|
+
if (typeof document !== 'undefined') {
|
|
83
|
+
document.addEventListener('keydown', function (e) {
|
|
84
|
+
if (e.key === undefined) {
|
|
85
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
89
|
+
});
|
|
90
|
+
document.addEventListener('keyup', function (e) {
|
|
91
|
+
if (e.key === undefined) {
|
|
92
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
if (typeof window !== 'undefined') {
|
|
99
|
+
window.addEventListener('blur', function () {
|
|
100
|
+
currentlyPressedKeys.clear();
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
})();
|
|
76
104
|
var currentlyPressedKeys = /*#__PURE__*/new Set();
|
|
77
105
|
function isHotkeyPressed(key, splitKey) {
|
|
78
106
|
if (splitKey === void 0) {
|
|
@@ -114,29 +142,6 @@ function removeFromCurrentlyPressedKeys(key) {
|
|
|
114
142
|
});
|
|
115
143
|
}
|
|
116
144
|
}
|
|
117
|
-
(function () {
|
|
118
|
-
if (typeof document !== 'undefined') {
|
|
119
|
-
document.addEventListener('keydown', function (e) {
|
|
120
|
-
if (e.key === undefined) {
|
|
121
|
-
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
122
|
-
return;
|
|
123
|
-
}
|
|
124
|
-
pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
125
|
-
});
|
|
126
|
-
document.addEventListener('keyup', function (e) {
|
|
127
|
-
if (e.key === undefined) {
|
|
128
|
-
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
129
|
-
return;
|
|
130
|
-
}
|
|
131
|
-
removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
132
|
-
});
|
|
133
|
-
}
|
|
134
|
-
if (typeof window !== 'undefined') {
|
|
135
|
-
window.addEventListener('blur', function () {
|
|
136
|
-
currentlyPressedKeys.clear();
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
})();
|
|
140
145
|
|
|
141
146
|
function maybePreventDefault(e, hotkey, preventDefault) {
|
|
142
147
|
if (typeof preventDefault === 'function' && preventDefault(e, hotkey) || preventDefault === true) {
|
|
@@ -251,9 +256,9 @@ function BoundHotkeysProxyProviderProvider(_ref) {
|
|
|
251
256
|
|
|
252
257
|
function deepEqual(x, y) {
|
|
253
258
|
//@ts-ignore
|
|
254
|
-
return x && y && typeof x === 'object' && typeof y === 'object'
|
|
259
|
+
return x && y && typeof x === 'object' && typeof y === 'object' ? Object.keys(x).length === Object.keys(y).length &&
|
|
255
260
|
//@ts-ignore
|
|
256
|
-
|
|
261
|
+
Object.keys(x).reduce(function (isEqual, key) {
|
|
257
262
|
return isEqual && deepEqual(x[key], y[key]);
|
|
258
263
|
}, true) : x === y;
|
|
259
264
|
}
|
|
@@ -439,10 +444,11 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
439
444
|
listener(event, true);
|
|
440
445
|
}
|
|
441
446
|
};
|
|
447
|
+
var domNode = ref.current || (_options == null ? void 0 : _options.document) || document;
|
|
442
448
|
// @ts-ignore
|
|
443
|
-
|
|
449
|
+
domNode.addEventListener('keyup', handleKeyUp);
|
|
444
450
|
// @ts-ignore
|
|
445
|
-
|
|
451
|
+
domNode.addEventListener('keydown', handleKeyDown);
|
|
446
452
|
if (proxy) {
|
|
447
453
|
parseKeysHookInput(keys, memoisedOptions == null ? void 0 : memoisedOptions.splitKey).forEach(function (key) {
|
|
448
454
|
return proxy.addHotkey(parseHotkey(key, memoisedOptions == null ? void 0 : memoisedOptions.combinationKey));
|
|
@@ -450,9 +456,9 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
450
456
|
}
|
|
451
457
|
return function () {
|
|
452
458
|
// @ts-ignore
|
|
453
|
-
|
|
459
|
+
domNode.removeEventListener('keyup', handleKeyUp);
|
|
454
460
|
// @ts-ignore
|
|
455
|
-
|
|
461
|
+
domNode.removeEventListener('keydown', handleKeyDown);
|
|
456
462
|
if (proxy) {
|
|
457
463
|
parseKeysHookInput(keys, memoisedOptions == null ? void 0 : memoisedOptions.splitKey).forEach(function (key) {
|
|
458
464
|
return proxy.removeHotkey(parseHotkey(key, memoisedOptions == null ? void 0 : memoisedOptions.combinationKey));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react-hotkeys-hook.esm.js","sources":["../src/parseHotkeys.ts","../src/isHotkeyPressed.ts","../src/validators.ts","../src/BoundHotkeysProxyProvider.tsx","../src/deepEqual.ts","../src/HotkeysProvider.tsx","../src/useDeepEqualMemo.ts","../src/useHotkeys.ts","../src/useRecordHotkeys.ts"],"sourcesContent":["import { Hotkey, KeyboardModifiers, Keys } from './types'\n\nconst reservedModifierKeywords = ['shift', 'alt', 'meta', 'mod', 'ctrl']\n\nconst mappedKeys: Record<string, string> = {\n esc: 'escape',\n return: 'enter',\n '.': 'period',\n ',': 'comma',\n '-': 'slash',\n ' ': 'space',\n '`': 'backquote',\n '#': 'backslash',\n '+': 'bracketright',\n 'ShiftLeft': 'shift',\n 'ShiftRight': 'shift',\n 'AltLeft': 'alt',\n 'AltRight': 'alt',\n 'MetaLeft': 'meta',\n 'MetaRight': 'meta',\n 'ControlLeft': 'ctrl',\n 'ControlRight': 'ctrl',\n}\n\nexport function mapKey(key: string): string {\n return (mappedKeys[key] || key)\n .trim()\n .toLowerCase()\n .replace('key', '')\n .replace('digit', '')\n .replace('numpad', '')\n .replace('arrow', '')\n}\n\nexport function isHotkeyModifier(key: string) {\n return reservedModifierKeywords.includes(key)\n}\n\nexport function parseKeysHookInput(keys: Keys, splitKey: string = ','): string[] {\n if (typeof keys === 'string') {\n return keys.split(splitKey)\n }\n\n return keys\n}\n\nexport function parseHotkey(hotkey: string, combinationKey: string = '+'): Hotkey {\n const keys = hotkey\n .toLocaleLowerCase()\n .split(combinationKey)\n .map(k => mapKey(k))\n\n const modifiers: KeyboardModifiers = {\n alt: keys.includes('alt'),\n ctrl: keys.includes('ctrl') || keys.includes('control'),\n shift: keys.includes('shift'),\n meta: keys.includes('meta'),\n mod: keys.includes('mod'),\n }\n\n const singleCharKeys = keys.filter((k) => !reservedModifierKeywords.includes(k))\n\n return {\n ...modifiers,\n keys: singleCharKeys,\n }\n}\n","import { isHotkeyModifier, mapKey } from './parseHotkeys'\n\nconst currentlyPressedKeys: Set<string> = new Set<string>()\n\nexport function isHotkeyPressed(key: string | string[], splitKey: string = ','): boolean {\n const hotkeyArray = Array.isArray(key) ? key : key.split(splitKey)\n\n return hotkeyArray.every((hotkey) => currentlyPressedKeys.has(hotkey.trim().toLowerCase()))\n}\n\nexport function pushToCurrentlyPressedKeys(key: string | string[]): void {\n const hotkeyArray = Array.isArray(key) ? key : [key]\n\n /*\n Due to a weird behavior on macOS we need to clear the set if the user pressed down the meta key and presses another key.\n https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser\n Otherwise the set will hold all ever pressed keys while the meta key is down which leads to wrong results.\n */\n if (currentlyPressedKeys.has('meta')) {\n currentlyPressedKeys.forEach(key => !isHotkeyModifier(key) && currentlyPressedKeys.delete(key.toLowerCase()))\n }\n\n hotkeyArray.forEach(hotkey => currentlyPressedKeys.add(hotkey.toLowerCase()))\n}\n\nexport function removeFromCurrentlyPressedKeys(key: string | string[]): void {\n const hotkeyArray = Array.isArray(key) ? key : [key]\n\n /*\n Due to a weird behavior on macOS we need to clear the set if the user pressed down the meta key and presses another key.\n https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser\n Otherwise the set will hold all ever pressed keys while the meta key is down which leads to wrong results.\n */\n if (key === 'meta') {\n currentlyPressedKeys.clear()\n } else {\n hotkeyArray.forEach(hotkey => currentlyPressedKeys.delete(hotkey.toLowerCase()))\n }\n}\n\n(() => {\n if (typeof document !== 'undefined') {\n document.addEventListener('keydown', e => {\n if (e.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])\n })\n\n document.addEventListener('keyup', e => {\n if (e.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])\n })\n }\n\n if (typeof window !== 'undefined') {\n window.addEventListener('blur', () => {\n currentlyPressedKeys.clear()\n })\n }\n})()\n","import { FormTags, Hotkey, Scopes, Trigger } from './types'\nimport { isHotkeyPressed } from './isHotkeyPressed'\nimport { mapKey } from './parseHotkeys'\n\nexport function maybePreventDefault(e: KeyboardEvent, hotkey: Hotkey, preventDefault?: Trigger): void {\n if ((typeof preventDefault === 'function' && preventDefault(e, hotkey)) || preventDefault === true) {\n e.preventDefault()\n }\n}\n\nexport function isHotkeyEnabled(e: KeyboardEvent, hotkey: Hotkey, enabled?: Trigger): boolean {\n if (typeof enabled === 'function') {\n return enabled(e, hotkey)\n }\n\n return enabled === true || enabled === undefined\n}\n\nexport function isKeyboardEventTriggeredByInput(ev: KeyboardEvent): boolean {\n return isHotkeyEnabledOnTag(ev, ['input', 'textarea', 'select'])\n}\n\nexport function isHotkeyEnabledOnTag({ target }: KeyboardEvent, enabledOnTags: FormTags[] | boolean = false): boolean {\n const targetTagName = target && (target as HTMLElement).tagName\n\n if (enabledOnTags instanceof Array) {\n return Boolean(targetTagName && enabledOnTags && enabledOnTags.some(tag => tag.toLowerCase() === targetTagName.toLowerCase()))\n }\n\n return Boolean(targetTagName && enabledOnTags && enabledOnTags === true)\n}\n\nexport function isScopeActive(activeScopes: string[], scopes?: Scopes): boolean {\n if (activeScopes.length === 0 && scopes) {\n console.warn(\n 'A hotkey has the \"scopes\" option set, however no active scopes were found. If you want to use the global scopes feature, you need to wrap your app in a <HotkeysProvider>',\n )\n\n return true\n }\n\n if (!scopes) {\n return true\n }\n\n return activeScopes.some(scope => scopes.includes(scope)) || activeScopes.includes('*')\n}\n\nexport const isHotkeyMatchingKeyboardEvent = (e: KeyboardEvent, hotkey: Hotkey, ignoreModifiers: boolean = false): boolean => {\n const { alt, meta, mod, shift, ctrl, keys } = hotkey\n const { key: pressedKeyUppercase, code, ctrlKey, metaKey, shiftKey, altKey } = e\n\n const keyCode = mapKey(code)\n const pressedKey = pressedKeyUppercase.toLowerCase()\n\n if (!ignoreModifiers) {\n // We check the pressed keys for compatibility with the keyup event. In keyup events the modifier flags are not set.\n if (alt === !altKey && pressedKey !== 'alt') {\n return false\n }\n\n if (shift === !shiftKey && pressedKey !== 'shift') {\n return false\n }\n\n // Mod is a special key name that is checking for meta on macOS and ctrl on other platforms\n if (mod) {\n if (!metaKey && !ctrlKey) {\n return false\n }\n } else {\n if (meta === !metaKey && pressedKey !== 'meta') {\n return false\n }\n\n if (ctrl === !ctrlKey && pressedKey !== 'ctrl') {\n return false\n }\n }\n }\n\n // All modifiers are correct, now check the key\n // If the key is set, we check for the key\n if (keys && keys.length === 1 && (keys.includes(pressedKey) || keys.includes(keyCode))) {\n return true\n } else if (keys) {\n // Check if all keys are present in pressedDownKeys set\n return isHotkeyPressed(keys)\n } else if (!keys) {\n // If the key is not set, we only listen for modifiers, that check went alright, so we return true\n return true\n }\n\n // There is nothing that matches.\n return false\n}\n","import { createContext, ReactNode, useContext } from 'react'\nimport { Hotkey } from './types'\n\ntype BoundHotkeysProxyProviderType = {\n addHotkey: (hotkey: Hotkey) => void,\n removeHotkey: (hotkey: Hotkey) => void,\n}\n\nconst BoundHotkeysProxyProvider = createContext<BoundHotkeysProxyProviderType | undefined>(undefined)\n\nexport const useBoundHotkeysProxy = () => {\n return useContext(BoundHotkeysProxyProvider)\n}\n\ninterface Props {\n children: ReactNode\n addHotkey: (hotkey: Hotkey) => void\n removeHotkey: (hotkey: Hotkey) => void\n}\n\nexport default function BoundHotkeysProxyProviderProvider({ addHotkey, removeHotkey, children }: Props) {\n return <BoundHotkeysProxyProvider.Provider value={{addHotkey, removeHotkey}}>{children}</BoundHotkeysProxyProvider.Provider>\n}\n","export default function deepEqual(x: any, y: any): boolean {\n //@ts-ignore\n return (x && y && typeof x === 'object' && typeof y === 'object')\n //@ts-ignore\n ? (Object.keys(x).length === Object.keys(y).length) && Object.keys(x).reduce(function(isEqual, key) {\n return isEqual && deepEqual(x[key], y[key])\n }, true)\n : (x === y)\n}\n","import { Hotkey } from './types'\nimport { createContext, ReactNode, useState, useContext, useCallback } from 'react'\nimport BoundHotkeysProxyProviderProvider from './BoundHotkeysProxyProvider'\nimport deepEqual from './deepEqual'\n\nexport type HotkeysContextType = {\n hotkeys: ReadonlyArray<Hotkey>\n enabledScopes: string[]\n toggleScope: (scope: string) => void\n enableScope: (scope: string) => void\n disableScope: (scope: string) => void\n}\n\n// The context is only needed for special features like global scoping, so we use a graceful default fallback\nconst HotkeysContext = createContext<HotkeysContextType>({\n hotkeys: [],\n enabledScopes: [], // This array has to be empty instead of containing '*' as default, to check if the provider is set or not\n toggleScope: () => {},\n enableScope: () => {},\n disableScope: () => {},\n})\n\nexport const useHotkeysContext = () => {\n return useContext(HotkeysContext)\n}\n\ninterface Props {\n initiallyActiveScopes?: string[]\n children: ReactNode\n}\n\nexport const HotkeysProvider = ({initiallyActiveScopes = ['*'], children}: Props) => {\n const [internalActiveScopes, setInternalActiveScopes] = useState(initiallyActiveScopes?.length > 0 ? initiallyActiveScopes : ['*'])\n const [boundHotkeys, setBoundHotkeys] = useState<Hotkey[]>([]);\n\n const enableScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.includes('*')) {\n return [scope]\n }\n\n return Array.from(new Set([...prev, scope]))\n })\n }, [])\n\n const disableScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.filter(s => s !== scope).length === 0) {\n return ['*']\n } else {\n return prev.filter(s => s !== scope)\n }\n })\n }, [])\n\n const toggleScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.includes(scope)) {\n if (prev.filter(s => s !== scope).length === 0) {\n return ['*']\n } else {\n return prev.filter(s => s !== scope)\n }\n } else {\n if (prev.includes('*')) {\n return [scope]\n }\n\n return Array.from(new Set([...prev, scope]))\n }\n })\n }, [])\n\n const addBoundHotkey = useCallback((hotkey: Hotkey) => {\n setBoundHotkeys((prev) => [...prev, hotkey])\n }, [])\n\n const removeBoundHotkey = useCallback((hotkey: Hotkey) => {\n setBoundHotkeys((prev) => prev.filter(h => !deepEqual(h, hotkey)))\n }, [])\n\n return (\n <HotkeysContext.Provider value={{enabledScopes: internalActiveScopes, hotkeys: boundHotkeys, enableScope, disableScope, toggleScope}}>\n <BoundHotkeysProxyProviderProvider addHotkey={addBoundHotkey} removeHotkey={removeBoundHotkey}>\n {children}\n </BoundHotkeysProxyProviderProvider>\n </HotkeysContext.Provider>\n )\n}\n","import { useRef } from 'react'\nimport deepEqual from './deepEqual'\n\nexport default function useDeepEqualMemo<T>(value: T) {\n const ref = useRef<T | undefined>(undefined)\n\n if (!deepEqual(ref.current, value)) {\n ref.current = value\n }\n\n return ref.current\n}\n","import { HotkeyCallback, Keys, Options, OptionsOrDependencyArray, RefType } from './types'\nimport { DependencyList, useCallback, useEffect, useLayoutEffect, useRef } from 'react'\nimport { mapKey, parseHotkey, parseKeysHookInput } from './parseHotkeys'\nimport {\n isHotkeyEnabled,\n isHotkeyEnabledOnTag,\n isHotkeyMatchingKeyboardEvent,\n isKeyboardEventTriggeredByInput,\n isScopeActive,\n maybePreventDefault,\n} from './validators'\nimport { useHotkeysContext } from './HotkeysProvider'\nimport { useBoundHotkeysProxy } from './BoundHotkeysProxyProvider'\nimport useDeepEqualMemo from './useDeepEqualMemo'\nimport { pushToCurrentlyPressedKeys, removeFromCurrentlyPressedKeys } from './isHotkeyPressed'\n\nconst stopPropagation = (e: KeyboardEvent): void => {\n e.stopPropagation()\n e.preventDefault()\n e.stopImmediatePropagation()\n}\n\nconst useSafeLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect\n\nexport default function useHotkeys<T extends HTMLElement>(\n keys: Keys,\n callback: HotkeyCallback,\n options?: OptionsOrDependencyArray,\n dependencies?: OptionsOrDependencyArray,\n) {\n const ref = useRef<RefType<T>>(null)\n const hasTriggeredRef = useRef(false)\n\n const _options: Options | undefined = !(options instanceof Array) ? (options as Options) : !(dependencies instanceof Array) ? (dependencies as Options) : undefined\n const _deps: DependencyList | undefined = options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined\n\n const memoisedCB = useCallback(callback, _deps ?? [])\n const cbRef = useRef<HotkeyCallback>(memoisedCB);\n\n if(_deps) {\n cbRef.current = memoisedCB;\n } else {\n cbRef.current = callback;\n }\n\n const memoisedOptions = useDeepEqualMemo(_options)\n\n const { enabledScopes } = useHotkeysContext()\n const proxy = useBoundHotkeysProxy()\n\n useSafeLayoutEffect(() => {\n if (memoisedOptions?.enabled === false || !isScopeActive(enabledScopes, memoisedOptions?.scopes)) {\n return\n }\n\n const listener = (e: KeyboardEvent, isKeyUp: boolean = false) => {\n if (isKeyboardEventTriggeredByInput(e) && !isHotkeyEnabledOnTag(e, memoisedOptions?.enableOnFormTags)) {\n return\n }\n\n // TODO: SINCE THE EVENT IS NOW ATTACHED TO THE REF, THE ACTIVE ELEMENT CAN NEVER BE INSIDE THE REF. THE HOTKEY ONLY TRIGGERS IF THE\n // REF IS THE ACTIVE ELEMENT. THIS IS A PROBLEM SINCE FOCUSED SUB COMPONENTS WON'T TRIGGER THE HOTKEY.\n if (ref.current !== null && document.activeElement !== ref.current && !ref.current.contains(document.activeElement)) {\n stopPropagation(e)\n\n return\n }\n\n if (((e.target as HTMLElement)?.isContentEditable && !memoisedOptions?.enableOnContentEditable)) {\n return\n }\n\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) => {\n const hotkey = parseHotkey(key, memoisedOptions?.combinationKey)\n\n if (isHotkeyMatchingKeyboardEvent(e, hotkey, memoisedOptions?.ignoreModifiers) || hotkey.keys?.includes('*')) {\n if (isKeyUp && hasTriggeredRef.current) {\n return\n }\n\n maybePreventDefault(e, hotkey, memoisedOptions?.preventDefault)\n\n if (!isHotkeyEnabled(e, hotkey, memoisedOptions?.enabled)) {\n stopPropagation(e)\n\n return\n }\n\n // Execute the user callback for that hotkey\n cbRef.current(e, hotkey)\n\n if (!isKeyUp) {\n hasTriggeredRef.current = true\n }\n }\n })\n }\n\n const handleKeyDown = (event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n pushToCurrentlyPressedKeys(mapKey(event.code))\n\n if ((memoisedOptions?.keydown === undefined && memoisedOptions?.keyup !== true) || memoisedOptions?.keydown) {\n listener(event)\n }\n }\n\n const handleKeyUp = (event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n removeFromCurrentlyPressedKeys(mapKey(event.code))\n\n hasTriggeredRef.current = false\n\n if (memoisedOptions?.keyup) {\n listener(event, true)\n }\n }\n\n // @ts-ignore\n (ref.current || _options?.document || document).addEventListener('keyup', handleKeyUp);\n // @ts-ignore\n (ref.current || _options?.document || document).addEventListener('keydown', handleKeyDown)\n\n if (proxy) {\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) => proxy.addHotkey(parseHotkey(key, memoisedOptions?.combinationKey)))\n }\n\n return () => {\n // @ts-ignore\n (ref.current || _options?.document || document).removeEventListener('keyup', handleKeyUp);\n // @ts-ignore\n (ref.current || _options?.document || document).removeEventListener('keydown', handleKeyDown)\n\n if (proxy) {\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) => proxy.removeHotkey(parseHotkey(key, memoisedOptions?.combinationKey)))\n }\n }\n }, [keys, memoisedOptions, enabledScopes])\n\n return ref\n}\n","import { useCallback, useState } from 'react'\nimport { mapKey } from './parseHotkeys'\n\nexport default function useRecordHotkeys() {\n const [keys, setKeys] = useState(new Set<string>())\n const [isRecording, setIsRecording] = useState(false);\n\n const handler = useCallback((event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n setKeys(prev => {\n const newKeys = new Set(prev)\n\n newKeys.add(mapKey(event.code))\n\n return newKeys\n })\n }, [])\n\n const stop = useCallback(() => {\n if (typeof document !== 'undefined') {\n document.removeEventListener('keydown', handler)\n\n setIsRecording(false)\n }\n }, [handler])\n\n const start = useCallback(() => {\n setKeys(new Set<string>())\n\n if (typeof document !== 'undefined') {\n stop()\n\n document.addEventListener('keydown', handler)\n\n setIsRecording(true)\n }\n }, [handler, stop])\n\n return [keys, { start, stop, isRecording }] as const\n}\n"],"names":["reservedModifierKeywords","mappedKeys","esc","mapKey","key","trim","toLowerCase","replace","isHotkeyModifier","includes","parseKeysHookInput","keys","splitKey","split","parseHotkey","hotkey","combinationKey","toLocaleLowerCase","map","k","modifiers","alt","ctrl","shift","meta","mod","singleCharKeys","filter","currentlyPressedKeys","Set","isHotkeyPressed","hotkeyArray","Array","isArray","every","has","pushToCurrentlyPressedKeys","forEach","add","removeFromCurrentlyPressedKeys","clear","document","addEventListener","e","undefined","code","window","maybePreventDefault","preventDefault","isHotkeyEnabled","enabled","isKeyboardEventTriggeredByInput","ev","isHotkeyEnabledOnTag","enabledOnTags","target","targetTagName","tagName","Boolean","some","tag","isScopeActive","activeScopes","scopes","length","console","warn","scope","isHotkeyMatchingKeyboardEvent","ignoreModifiers","pressedKeyUppercase","ctrlKey","metaKey","shiftKey","altKey","keyCode","pressedKey","BoundHotkeysProxyProvider","createContext","useBoundHotkeysProxy","useContext","BoundHotkeysProxyProviderProvider","addHotkey","removeHotkey","children","_jsx","deepEqual","x","y","Object","reduce","isEqual","HotkeysContext","hotkeys","enabledScopes","toggleScope","enableScope","disableScope","useHotkeysContext","HotkeysProvider","initiallyActiveScopes","useState","internalActiveScopes","setInternalActiveScopes","boundHotkeys","setBoundHotkeys","useCallback","prev","from","s","addBoundHotkey","removeBoundHotkey","h","useDeepEqualMemo","value","ref","useRef","current","stopPropagation","stopImmediatePropagation","useSafeLayoutEffect","useLayoutEffect","useEffect","useHotkeys","callback","options","dependencies","hasTriggeredRef","_options","_deps","memoisedCB","cbRef","memoisedOptions","proxy","listener","isKeyUp","enableOnFormTags","activeElement","contains","isContentEditable","enableOnContentEditable","handleKeyDown","event","keydown","keyup","handleKeyUp","removeEventListener","useRecordHotkeys","setKeys","isRecording","setIsRecording","handler","newKeys","stop","start"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"react-hotkeys-hook.esm.js","sources":["../src/parseHotkeys.ts","../src/isHotkeyPressed.ts","../src/validators.ts","../src/BoundHotkeysProxyProvider.tsx","../src/deepEqual.ts","../src/HotkeysProvider.tsx","../src/useDeepEqualMemo.ts","../src/useHotkeys.ts","../src/useRecordHotkeys.ts"],"sourcesContent":["import { Hotkey, KeyboardModifiers, Keys } from './types'\n\nconst reservedModifierKeywords = ['shift', 'alt', 'meta', 'mod', 'ctrl']\n\nconst mappedKeys: Record<string, string> = {\n esc: 'escape',\n return: 'enter',\n '.': 'period',\n ',': 'comma',\n '-': 'slash',\n ' ': 'space',\n '`': 'backquote',\n '#': 'backslash',\n '+': 'bracketright',\n ShiftLeft: 'shift',\n ShiftRight: 'shift',\n AltLeft: 'alt',\n AltRight: 'alt',\n MetaLeft: 'meta',\n MetaRight: 'meta',\n OSLeft: 'meta',\n OSRight: 'meta',\n ControlLeft: 'ctrl',\n ControlRight: 'ctrl',\n}\n\nexport function mapKey(key: string): string {\n console.log('key', key)\n\n console.log('mappedKeys[key]', mappedKeys[key])\n\n return (mappedKeys[key] || key)\n .trim()\n .toLowerCase()\n .replace(/key|digit|numpad|arrow/, '')\n}\n\nexport function isHotkeyModifier(key: string) {\n return reservedModifierKeywords.includes(key)\n}\n\nexport function parseKeysHookInput(keys: Keys, splitKey = ','): string[] {\n if (typeof keys === 'string') {\n return keys.split(splitKey)\n }\n\n return keys\n}\n\nexport function parseHotkey(hotkey: string, combinationKey = '+'): Hotkey {\n const keys = hotkey\n .toLocaleLowerCase()\n .split(combinationKey)\n .map((k) => mapKey(k))\n\n console.log('parsed keys', keys)\n\n const modifiers: KeyboardModifiers = {\n alt: keys.includes('alt'),\n ctrl: keys.includes('ctrl') || keys.includes('control'),\n shift: keys.includes('shift'),\n meta: keys.includes('meta'),\n mod: keys.includes('mod'),\n }\n\n const singleCharKeys = keys.filter((k) => !reservedModifierKeywords.includes(k))\n\n return {\n ...modifiers,\n keys: singleCharKeys,\n }\n}\n","import { isHotkeyModifier, mapKey } from './parseHotkeys'\n;(() => {\n if (typeof document !== 'undefined') {\n document.addEventListener('keydown', (e) => {\n if (e.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])\n })\n\n document.addEventListener('keyup', (e) => {\n if (e.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])\n })\n }\n\n if (typeof window !== 'undefined') {\n window.addEventListener('blur', () => {\n currentlyPressedKeys.clear()\n })\n }\n})()\n\nconst currentlyPressedKeys: Set<string> = new Set<string>()\n\nexport function isHotkeyPressed(key: string | string[], splitKey = ','): boolean {\n const hotkeyArray = Array.isArray(key) ? key : key.split(splitKey)\n\n return hotkeyArray.every((hotkey) => currentlyPressedKeys.has(hotkey.trim().toLowerCase()))\n}\n\nexport function pushToCurrentlyPressedKeys(key: string | string[]): void {\n const hotkeyArray = Array.isArray(key) ? key : [key]\n\n /*\n Due to a weird behavior on macOS we need to clear the set if the user pressed down the meta key and presses another key.\n https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser\n Otherwise the set will hold all ever pressed keys while the meta key is down which leads to wrong results.\n */\n if (currentlyPressedKeys.has('meta')) {\n currentlyPressedKeys.forEach((key) => !isHotkeyModifier(key) && currentlyPressedKeys.delete(key.toLowerCase()))\n }\n\n hotkeyArray.forEach((hotkey) => currentlyPressedKeys.add(hotkey.toLowerCase()))\n}\n\nexport function removeFromCurrentlyPressedKeys(key: string | string[]): void {\n const hotkeyArray = Array.isArray(key) ? key : [key]\n\n /*\n Due to a weird behavior on macOS we need to clear the set if the user pressed down the meta key and presses another key.\n https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser\n Otherwise the set will hold all ever pressed keys while the meta key is down which leads to wrong results.\n */\n if (key === 'meta') {\n currentlyPressedKeys.clear()\n } else {\n hotkeyArray.forEach((hotkey) => currentlyPressedKeys.delete(hotkey.toLowerCase()))\n }\n}\n","import { FormTags, Hotkey, Scopes, Trigger } from './types'\nimport { isHotkeyPressed } from './isHotkeyPressed'\nimport { mapKey } from './parseHotkeys'\n\nexport function maybePreventDefault(e: KeyboardEvent, hotkey: Hotkey, preventDefault?: Trigger): void {\n if ((typeof preventDefault === 'function' && preventDefault(e, hotkey)) || preventDefault === true) {\n e.preventDefault()\n }\n}\n\nexport function isHotkeyEnabled(e: KeyboardEvent, hotkey: Hotkey, enabled?: Trigger): boolean {\n if (typeof enabled === 'function') {\n return enabled(e, hotkey)\n }\n\n return enabled === true || enabled === undefined\n}\n\nexport function isKeyboardEventTriggeredByInput(ev: KeyboardEvent): boolean {\n return isHotkeyEnabledOnTag(ev, ['input', 'textarea', 'select'])\n}\n\nexport function isHotkeyEnabledOnTag({ target }: KeyboardEvent, enabledOnTags: FormTags[] | boolean = false): boolean {\n const targetTagName = target && (target as HTMLElement).tagName\n\n if (enabledOnTags instanceof Array) {\n return Boolean(\n targetTagName && enabledOnTags && enabledOnTags.some((tag) => tag.toLowerCase() === targetTagName.toLowerCase())\n )\n }\n\n return Boolean(targetTagName && enabledOnTags && enabledOnTags === true)\n}\n\nexport function isScopeActive(activeScopes: string[], scopes?: Scopes): boolean {\n if (activeScopes.length === 0 && scopes) {\n console.warn(\n 'A hotkey has the \"scopes\" option set, however no active scopes were found. If you want to use the global scopes feature, you need to wrap your app in a <HotkeysProvider>'\n )\n\n return true\n }\n\n if (!scopes) {\n return true\n }\n\n return activeScopes.some((scope) => scopes.includes(scope)) || activeScopes.includes('*')\n}\n\nexport const isHotkeyMatchingKeyboardEvent = (e: KeyboardEvent, hotkey: Hotkey, ignoreModifiers = false): boolean => {\n const { alt, meta, mod, shift, ctrl, keys } = hotkey\n const { key: pressedKeyUppercase, code, ctrlKey, metaKey, shiftKey, altKey } = e\n\n const keyCode = mapKey(code)\n const pressedKey = pressedKeyUppercase.toLowerCase()\n\n if (!ignoreModifiers) {\n // We check the pressed keys for compatibility with the keyup event. In keyup events the modifier flags are not set.\n if (alt === !altKey && pressedKey !== 'alt') {\n return false\n }\n\n if (shift === !shiftKey && pressedKey !== 'shift') {\n return false\n }\n\n // Mod is a special key name that is checking for meta on macOS and ctrl on other platforms\n if (mod) {\n if (!metaKey && !ctrlKey) {\n return false\n }\n } else {\n if (meta === !metaKey && pressedKey !== 'meta') {\n return false\n }\n\n if (ctrl === !ctrlKey && pressedKey !== 'ctrl') {\n return false\n }\n }\n }\n\n // All modifiers are correct, now check the key\n // If the key is set, we check for the key\n if (keys && keys.length === 1 && (keys.includes(pressedKey) || keys.includes(keyCode))) {\n return true\n } else if (keys) {\n // Check if all keys are present in pressedDownKeys set\n return isHotkeyPressed(keys)\n } else if (!keys) {\n // If the key is not set, we only listen for modifiers, that check went alright, so we return true\n return true\n }\n\n // There is nothing that matches.\n return false\n}\n","import { createContext, ReactNode, useContext } from 'react'\nimport { Hotkey } from './types'\n\ntype BoundHotkeysProxyProviderType = {\n addHotkey: (hotkey: Hotkey) => void\n removeHotkey: (hotkey: Hotkey) => void\n}\n\nconst BoundHotkeysProxyProvider = createContext<BoundHotkeysProxyProviderType | undefined>(undefined)\n\nexport const useBoundHotkeysProxy = () => {\n return useContext(BoundHotkeysProxyProvider)\n}\n\ninterface Props {\n children: ReactNode\n addHotkey: (hotkey: Hotkey) => void\n removeHotkey: (hotkey: Hotkey) => void\n}\n\nexport default function BoundHotkeysProxyProviderProvider({ addHotkey, removeHotkey, children }: Props) {\n return (\n <BoundHotkeysProxyProvider.Provider value={{ addHotkey, removeHotkey }}>\n {children}\n </BoundHotkeysProxyProvider.Provider>\n )\n}\n","export default function deepEqual(x: any, y: any): boolean {\n //@ts-ignore\n return x && y && typeof x === 'object' && typeof y === 'object'\n ? Object.keys(x).length === Object.keys(y).length &&\n //@ts-ignore\n Object.keys(x).reduce((isEqual, key) => isEqual && deepEqual(x[key], y[key]), true)\n : x === y\n}\n","import { Hotkey } from './types'\nimport { createContext, ReactNode, useState, useContext, useCallback } from 'react'\nimport BoundHotkeysProxyProviderProvider from './BoundHotkeysProxyProvider'\nimport deepEqual from './deepEqual'\n\nexport type HotkeysContextType = {\n hotkeys: ReadonlyArray<Hotkey>\n enabledScopes: string[]\n toggleScope: (scope: string) => void\n enableScope: (scope: string) => void\n disableScope: (scope: string) => void\n}\n\n// The context is only needed for special features like global scoping, so we use a graceful default fallback\nconst HotkeysContext = createContext<HotkeysContextType>({\n hotkeys: [],\n enabledScopes: [], // This array has to be empty instead of containing '*' as default, to check if the provider is set or not\n toggleScope: () => {},\n enableScope: () => {},\n disableScope: () => {},\n})\n\nexport const useHotkeysContext = () => {\n return useContext(HotkeysContext)\n}\n\ninterface Props {\n initiallyActiveScopes?: string[]\n children: ReactNode\n}\n\nexport const HotkeysProvider = ({ initiallyActiveScopes = ['*'], children }: Props) => {\n const [internalActiveScopes, setInternalActiveScopes] = useState(\n initiallyActiveScopes?.length > 0 ? initiallyActiveScopes : ['*']\n )\n const [boundHotkeys, setBoundHotkeys] = useState<Hotkey[]>([])\n\n const enableScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.includes('*')) {\n return [scope]\n }\n\n return Array.from(new Set([...prev, scope]))\n })\n }, [])\n\n const disableScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.filter((s) => s !== scope).length === 0) {\n return ['*']\n } else {\n return prev.filter((s) => s !== scope)\n }\n })\n }, [])\n\n const toggleScope = useCallback((scope: string) => {\n setInternalActiveScopes((prev) => {\n if (prev.includes(scope)) {\n if (prev.filter((s) => s !== scope).length === 0) {\n return ['*']\n } else {\n return prev.filter((s) => s !== scope)\n }\n } else {\n if (prev.includes('*')) {\n return [scope]\n }\n\n return Array.from(new Set([...prev, scope]))\n }\n })\n }, [])\n\n const addBoundHotkey = useCallback((hotkey: Hotkey) => {\n setBoundHotkeys((prev) => [...prev, hotkey])\n }, [])\n\n const removeBoundHotkey = useCallback((hotkey: Hotkey) => {\n setBoundHotkeys((prev) => prev.filter((h) => !deepEqual(h, hotkey)))\n }, [])\n\n return (\n <HotkeysContext.Provider\n value={{ enabledScopes: internalActiveScopes, hotkeys: boundHotkeys, enableScope, disableScope, toggleScope }}\n >\n <BoundHotkeysProxyProviderProvider addHotkey={addBoundHotkey} removeHotkey={removeBoundHotkey}>\n {children}\n </BoundHotkeysProxyProviderProvider>\n </HotkeysContext.Provider>\n )\n}\n","import { useRef } from 'react'\nimport deepEqual from './deepEqual'\n\nexport default function useDeepEqualMemo<T>(value: T) {\n const ref = useRef<T | undefined>(undefined)\n\n if (!deepEqual(ref.current, value)) {\n ref.current = value\n }\n\n return ref.current\n}\n","import { HotkeyCallback, Keys, Options, OptionsOrDependencyArray, RefType } from './types'\nimport { DependencyList, useCallback, useEffect, useLayoutEffect, useRef } from 'react'\nimport { mapKey, parseHotkey, parseKeysHookInput } from './parseHotkeys'\nimport {\n isHotkeyEnabled,\n isHotkeyEnabledOnTag,\n isHotkeyMatchingKeyboardEvent,\n isKeyboardEventTriggeredByInput,\n isScopeActive,\n maybePreventDefault,\n} from './validators'\nimport { useHotkeysContext } from './HotkeysProvider'\nimport { useBoundHotkeysProxy } from './BoundHotkeysProxyProvider'\nimport useDeepEqualMemo from './useDeepEqualMemo'\nimport { pushToCurrentlyPressedKeys, removeFromCurrentlyPressedKeys } from './isHotkeyPressed'\n\nconst stopPropagation = (e: KeyboardEvent): void => {\n e.stopPropagation()\n e.preventDefault()\n e.stopImmediatePropagation()\n}\n\nconst useSafeLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect\n\nexport default function useHotkeys<T extends HTMLElement>(\n keys: Keys,\n callback: HotkeyCallback,\n options?: OptionsOrDependencyArray,\n dependencies?: OptionsOrDependencyArray\n) {\n const ref = useRef<RefType<T>>(null)\n const hasTriggeredRef = useRef(false)\n\n const _options: Options | undefined = !(options instanceof Array)\n ? (options as Options)\n : !(dependencies instanceof Array)\n ? (dependencies as Options)\n : undefined\n const _deps: DependencyList | undefined =\n options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined\n\n const memoisedCB = useCallback(callback, _deps ?? [])\n const cbRef = useRef<HotkeyCallback>(memoisedCB)\n\n if (_deps) {\n cbRef.current = memoisedCB\n } else {\n cbRef.current = callback\n }\n\n const memoisedOptions = useDeepEqualMemo(_options)\n\n const { enabledScopes } = useHotkeysContext()\n const proxy = useBoundHotkeysProxy()\n\n useSafeLayoutEffect(() => {\n if (memoisedOptions?.enabled === false || !isScopeActive(enabledScopes, memoisedOptions?.scopes)) {\n return\n }\n\n const listener = (e: KeyboardEvent, isKeyUp = false) => {\n if (isKeyboardEventTriggeredByInput(e) && !isHotkeyEnabledOnTag(e, memoisedOptions?.enableOnFormTags)) {\n return\n }\n\n // TODO: SINCE THE EVENT IS NOW ATTACHED TO THE REF, THE ACTIVE ELEMENT CAN NEVER BE INSIDE THE REF. THE HOTKEY ONLY TRIGGERS IF THE\n // REF IS THE ACTIVE ELEMENT. THIS IS A PROBLEM SINCE FOCUSED SUB COMPONENTS WON'T TRIGGER THE HOTKEY.\n if (\n ref.current !== null &&\n document.activeElement !== ref.current &&\n !ref.current.contains(document.activeElement)\n ) {\n stopPropagation(e)\n\n return\n }\n\n if ((e.target as HTMLElement)?.isContentEditable && !memoisedOptions?.enableOnContentEditable) {\n return\n }\n\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) => {\n const hotkey = parseHotkey(key, memoisedOptions?.combinationKey)\n\n if (isHotkeyMatchingKeyboardEvent(e, hotkey, memoisedOptions?.ignoreModifiers) || hotkey.keys?.includes('*')) {\n if (isKeyUp && hasTriggeredRef.current) {\n return\n }\n\n maybePreventDefault(e, hotkey, memoisedOptions?.preventDefault)\n\n if (!isHotkeyEnabled(e, hotkey, memoisedOptions?.enabled)) {\n stopPropagation(e)\n\n return\n }\n\n // Execute the user callback for that hotkey\n cbRef.current(e, hotkey)\n\n if (!isKeyUp) {\n hasTriggeredRef.current = true\n }\n }\n })\n }\n\n const handleKeyDown = (event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n pushToCurrentlyPressedKeys(mapKey(event.code))\n\n if ((memoisedOptions?.keydown === undefined && memoisedOptions?.keyup !== true) || memoisedOptions?.keydown) {\n listener(event)\n }\n }\n\n const handleKeyUp = (event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n removeFromCurrentlyPressedKeys(mapKey(event.code))\n\n hasTriggeredRef.current = false\n\n if (memoisedOptions?.keyup) {\n listener(event, true)\n }\n }\n\n const domNode = ref.current || _options?.document || document\n\n // @ts-ignore\n domNode.addEventListener('keyup', handleKeyUp)\n // @ts-ignore\n domNode.addEventListener('keydown', handleKeyDown)\n\n if (proxy) {\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) =>\n proxy.addHotkey(parseHotkey(key, memoisedOptions?.combinationKey))\n )\n }\n\n return () => {\n // @ts-ignore\n domNode.removeEventListener('keyup', handleKeyUp)\n // @ts-ignore\n domNode.removeEventListener('keydown', handleKeyDown)\n\n if (proxy) {\n parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) =>\n proxy.removeHotkey(parseHotkey(key, memoisedOptions?.combinationKey))\n )\n }\n }\n }, [keys, memoisedOptions, enabledScopes])\n\n return ref\n}\n","import { useCallback, useState } from 'react'\nimport { mapKey } from './parseHotkeys'\n\nexport default function useRecordHotkeys() {\n const [keys, setKeys] = useState(new Set<string>())\n const [isRecording, setIsRecording] = useState(false)\n\n const handler = useCallback((event: KeyboardEvent) => {\n if (event.key === undefined) {\n // Synthetic event (e.g., Chrome autofill). Ignore.\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n setKeys((prev) => {\n const newKeys = new Set(prev)\n\n newKeys.add(mapKey(event.code))\n\n return newKeys\n })\n }, [])\n\n const stop = useCallback(() => {\n if (typeof document !== 'undefined') {\n document.removeEventListener('keydown', handler)\n\n setIsRecording(false)\n }\n }, [handler])\n\n const start = useCallback(() => {\n setKeys(new Set<string>())\n\n if (typeof document !== 'undefined') {\n stop()\n\n document.addEventListener('keydown', handler)\n\n setIsRecording(true)\n }\n }, [handler, stop])\n\n return [keys, { start, stop, isRecording }] as const\n}\n"],"names":["reservedModifierKeywords","mappedKeys","esc","ShiftLeft","ShiftRight","AltLeft","AltRight","MetaLeft","MetaRight","OSLeft","OSRight","ControlLeft","ControlRight","mapKey","key","console","log","trim","toLowerCase","replace","isHotkeyModifier","includes","parseKeysHookInput","keys","splitKey","split","parseHotkey","hotkey","combinationKey","toLocaleLowerCase","map","k","modifiers","alt","ctrl","shift","meta","mod","singleCharKeys","filter","document","addEventListener","e","undefined","pushToCurrentlyPressedKeys","code","removeFromCurrentlyPressedKeys","window","currentlyPressedKeys","clear","Set","isHotkeyPressed","hotkeyArray","Array","isArray","every","has","forEach","add","maybePreventDefault","preventDefault","isHotkeyEnabled","enabled","isKeyboardEventTriggeredByInput","ev","isHotkeyEnabledOnTag","enabledOnTags","target","targetTagName","tagName","Boolean","some","tag","isScopeActive","activeScopes","scopes","length","warn","scope","isHotkeyMatchingKeyboardEvent","ignoreModifiers","pressedKeyUppercase","ctrlKey","metaKey","shiftKey","altKey","keyCode","pressedKey","BoundHotkeysProxyProvider","createContext","useBoundHotkeysProxy","useContext","BoundHotkeysProxyProviderProvider","addHotkey","removeHotkey","children","_jsx","deepEqual","x","y","Object","reduce","isEqual","HotkeysContext","hotkeys","enabledScopes","toggleScope","enableScope","disableScope","useHotkeysContext","HotkeysProvider","initiallyActiveScopes","useState","internalActiveScopes","setInternalActiveScopes","boundHotkeys","setBoundHotkeys","useCallback","prev","from","s","addBoundHotkey","removeBoundHotkey","h","useDeepEqualMemo","value","ref","useRef","current","stopPropagation","stopImmediatePropagation","useSafeLayoutEffect","useLayoutEffect","useEffect","useHotkeys","callback","options","dependencies","hasTriggeredRef","_options","_deps","memoisedCB","cbRef","memoisedOptions","proxy","listener","isKeyUp","enableOnFormTags","activeElement","contains","isContentEditable","enableOnContentEditable","handleKeyDown","event","keydown","keyup","handleKeyUp","domNode","removeEventListener","useRecordHotkeys","setKeys","isRecording","setIsRecording","handler","newKeys","stop","start"],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare type Hotkey = KeyboardModifiers & {
|
|
|
14
14
|
keys?: string[];
|
|
15
15
|
scopes?: Scopes;
|
|
16
16
|
};
|
|
17
|
-
export declare type HotkeysEvent = Hotkey
|
|
17
|
+
export declare type HotkeysEvent = Hotkey;
|
|
18
18
|
export declare type HotkeyCallback = (keyboardEvent: KeyboardEvent, hotkeysEvent: HotkeysEvent) => void;
|
|
19
19
|
export declare type Trigger = boolean | ((keyboardEvent: KeyboardEvent, hotkeysEvent: HotkeysEvent) => boolean);
|
|
20
20
|
export declare type Options = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-hotkeys-hook",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.6-1",
|
|
4
4
|
"repository": "https://JohannesKlauss@github.com/JohannesKlauss/react-keymap-hook.git",
|
|
5
5
|
"homepage": "https://johannesklauss.github.io/react-hotkeys-hook/",
|
|
6
6
|
"author": "Johannes Klauss",
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"build": "tsdx build",
|
|
29
29
|
"test": "jest",
|
|
30
|
-
"publish": "np"
|
|
30
|
+
"publish": "np",
|
|
31
|
+
"format": "prettier ./src/**/*.{ts,tsx} --write",
|
|
32
|
+
"lint": "eslint ./src/**/*.{ts,tsx} --fix && prettier ./src/**/*.{ts,tsx} --check"
|
|
31
33
|
},
|
|
32
34
|
"babel": {
|
|
33
35
|
"presets": [
|
|
@@ -42,6 +44,35 @@
|
|
|
42
44
|
"singleQuote": true,
|
|
43
45
|
"trailingComma": "es5"
|
|
44
46
|
},
|
|
47
|
+
"eslintConfig": {
|
|
48
|
+
"env": {
|
|
49
|
+
"browser": true,
|
|
50
|
+
"es2021": true
|
|
51
|
+
},
|
|
52
|
+
"extends": [
|
|
53
|
+
"eslint:recommended",
|
|
54
|
+
"plugin:react/recommended",
|
|
55
|
+
"plugin:@typescript-eslint/recommended"
|
|
56
|
+
],
|
|
57
|
+
"parser": "@typescript-eslint/parser",
|
|
58
|
+
"parserOptions": {
|
|
59
|
+
"ecmaFeatures": {
|
|
60
|
+
"jsx": true
|
|
61
|
+
},
|
|
62
|
+
"ecmaVersion": "latest",
|
|
63
|
+
"sourceType": "module"
|
|
64
|
+
},
|
|
65
|
+
"plugins": [
|
|
66
|
+
"react",
|
|
67
|
+
"@typescript-eslint"
|
|
68
|
+
],
|
|
69
|
+
"rules": {
|
|
70
|
+
"react/react-in-jsx-scope": "off",
|
|
71
|
+
"@typescript-eslint/no-empty-function": "off",
|
|
72
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
73
|
+
"@typescript-eslint/ban-ts-comment": "off"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
45
76
|
"devDependencies": {
|
|
46
77
|
"@babel/core": "7.20.12",
|
|
47
78
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
@@ -50,16 +81,18 @@
|
|
|
50
81
|
"@babel/preset-react": "7.18.6",
|
|
51
82
|
"@babel/preset-typescript": "7.18.6",
|
|
52
83
|
"@testing-library/jest-dom": "5.16.5",
|
|
53
|
-
"@testing-library/react": "
|
|
84
|
+
"@testing-library/react": "14.0.0",
|
|
54
85
|
"@testing-library/react-hooks": "8.0.1",
|
|
55
86
|
"@testing-library/user-event": "14.4.3",
|
|
56
87
|
"@types/jest": "29.4.0",
|
|
57
|
-
"@types/react": "18.0.
|
|
58
|
-
"@types/react-dom": "18.0.
|
|
88
|
+
"@types/react": "18.0.28",
|
|
89
|
+
"@types/react-dom": "18.0.11",
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "5.52.0",
|
|
91
|
+
"@typescript-eslint/parser": "5.52.0",
|
|
59
92
|
"eslint-plugin-prettier": "4.2.1",
|
|
60
|
-
"jest": "29.4.
|
|
61
|
-
"jest-environment-jsdom": "29.4.
|
|
62
|
-
"prettier": "2.8.
|
|
93
|
+
"jest": "29.4.3",
|
|
94
|
+
"jest-environment-jsdom": "29.4.3",
|
|
95
|
+
"prettier": "2.8.4",
|
|
63
96
|
"react": "18.2.0",
|
|
64
97
|
"react-dom": "18.2.0",
|
|
65
98
|
"react-test-renderer": "18.2.0",
|
|
@@ -70,5 +103,9 @@
|
|
|
70
103
|
"peerDependencies": {
|
|
71
104
|
"react": ">=16.8.1",
|
|
72
105
|
"react-dom": ">=16.8.1"
|
|
106
|
+
},
|
|
107
|
+
"dependencies": {
|
|
108
|
+
"eslint": "^8.34.0",
|
|
109
|
+
"eslint-plugin-react": "^7.32.2"
|
|
73
110
|
}
|
|
74
111
|
}
|
|
@@ -2,8 +2,8 @@ import { createContext, ReactNode, useContext } from 'react'
|
|
|
2
2
|
import { Hotkey } from './types'
|
|
3
3
|
|
|
4
4
|
type BoundHotkeysProxyProviderType = {
|
|
5
|
-
addHotkey: (hotkey: Hotkey) => void
|
|
6
|
-
removeHotkey: (hotkey: Hotkey) => void
|
|
5
|
+
addHotkey: (hotkey: Hotkey) => void
|
|
6
|
+
removeHotkey: (hotkey: Hotkey) => void
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
const BoundHotkeysProxyProvider = createContext<BoundHotkeysProxyProviderType | undefined>(undefined)
|
|
@@ -19,5 +19,9 @@ interface Props {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export default function BoundHotkeysProxyProviderProvider({ addHotkey, removeHotkey, children }: Props) {
|
|
22
|
-
return
|
|
22
|
+
return (
|
|
23
|
+
<BoundHotkeysProxyProvider.Provider value={{ addHotkey, removeHotkey }}>
|
|
24
|
+
{children}
|
|
25
|
+
</BoundHotkeysProxyProvider.Provider>
|
|
26
|
+
)
|
|
23
27
|
}
|
package/src/HotkeysProvider.tsx
CHANGED
|
@@ -29,9 +29,11 @@ interface Props {
|
|
|
29
29
|
children: ReactNode
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
export const HotkeysProvider = ({initiallyActiveScopes = ['*'], children}: Props) => {
|
|
33
|
-
const [internalActiveScopes, setInternalActiveScopes] = useState(
|
|
34
|
-
|
|
32
|
+
export const HotkeysProvider = ({ initiallyActiveScopes = ['*'], children }: Props) => {
|
|
33
|
+
const [internalActiveScopes, setInternalActiveScopes] = useState(
|
|
34
|
+
initiallyActiveScopes?.length > 0 ? initiallyActiveScopes : ['*']
|
|
35
|
+
)
|
|
36
|
+
const [boundHotkeys, setBoundHotkeys] = useState<Hotkey[]>([])
|
|
35
37
|
|
|
36
38
|
const enableScope = useCallback((scope: string) => {
|
|
37
39
|
setInternalActiveScopes((prev) => {
|
|
@@ -45,10 +47,10 @@ export const HotkeysProvider = ({initiallyActiveScopes = ['*'], children}: Props
|
|
|
45
47
|
|
|
46
48
|
const disableScope = useCallback((scope: string) => {
|
|
47
49
|
setInternalActiveScopes((prev) => {
|
|
48
|
-
if (prev.filter(s => s !== scope).length === 0) {
|
|
50
|
+
if (prev.filter((s) => s !== scope).length === 0) {
|
|
49
51
|
return ['*']
|
|
50
52
|
} else {
|
|
51
|
-
return prev.filter(s => s !== scope)
|
|
53
|
+
return prev.filter((s) => s !== scope)
|
|
52
54
|
}
|
|
53
55
|
})
|
|
54
56
|
}, [])
|
|
@@ -56,10 +58,10 @@ export const HotkeysProvider = ({initiallyActiveScopes = ['*'], children}: Props
|
|
|
56
58
|
const toggleScope = useCallback((scope: string) => {
|
|
57
59
|
setInternalActiveScopes((prev) => {
|
|
58
60
|
if (prev.includes(scope)) {
|
|
59
|
-
if (prev.filter(s => s !== scope).length === 0) {
|
|
61
|
+
if (prev.filter((s) => s !== scope).length === 0) {
|
|
60
62
|
return ['*']
|
|
61
63
|
} else {
|
|
62
|
-
return prev.filter(s => s !== scope)
|
|
64
|
+
return prev.filter((s) => s !== scope)
|
|
63
65
|
}
|
|
64
66
|
} else {
|
|
65
67
|
if (prev.includes('*')) {
|
|
@@ -76,11 +78,13 @@ export const HotkeysProvider = ({initiallyActiveScopes = ['*'], children}: Props
|
|
|
76
78
|
}, [])
|
|
77
79
|
|
|
78
80
|
const removeBoundHotkey = useCallback((hotkey: Hotkey) => {
|
|
79
|
-
setBoundHotkeys((prev) => prev.filter(h => !deepEqual(h, hotkey)))
|
|
81
|
+
setBoundHotkeys((prev) => prev.filter((h) => !deepEqual(h, hotkey)))
|
|
80
82
|
}, [])
|
|
81
83
|
|
|
82
84
|
return (
|
|
83
|
-
<HotkeysContext.Provider
|
|
85
|
+
<HotkeysContext.Provider
|
|
86
|
+
value={{ enabledScopes: internalActiveScopes, hotkeys: boundHotkeys, enableScope, disableScope, toggleScope }}
|
|
87
|
+
>
|
|
84
88
|
<BoundHotkeysProxyProviderProvider addHotkey={addBoundHotkey} removeHotkey={removeBoundHotkey}>
|
|
85
89
|
{children}
|
|
86
90
|
</BoundHotkeysProxyProviderProvider>
|
package/src/deepEqual.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
export default function deepEqual(x: any, y: any): boolean {
|
|
2
2
|
//@ts-ignore
|
|
3
|
-
return
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
: (x === y)
|
|
3
|
+
return x && y && typeof x === 'object' && typeof y === 'object'
|
|
4
|
+
? Object.keys(x).length === Object.keys(y).length &&
|
|
5
|
+
//@ts-ignore
|
|
6
|
+
Object.keys(x).reduce((isEqual, key) => isEqual && deepEqual(x[key], y[key]), true)
|
|
7
|
+
: x === y
|
|
9
8
|
}
|
package/src/index.ts
CHANGED
|
@@ -4,11 +4,4 @@ import { HotkeysProvider, useHotkeysContext } from './HotkeysProvider'
|
|
|
4
4
|
import { isHotkeyPressed } from './isHotkeyPressed'
|
|
5
5
|
import useRecordHotkeys from './useRecordHotkeys'
|
|
6
6
|
|
|
7
|
-
export {
|
|
8
|
-
useHotkeys,
|
|
9
|
-
useRecordHotkeys,
|
|
10
|
-
useHotkeysContext,
|
|
11
|
-
isHotkeyPressed,
|
|
12
|
-
HotkeysProvider,
|
|
13
|
-
Options,
|
|
14
|
-
}
|
|
7
|
+
export { useHotkeys, useRecordHotkeys, useHotkeysContext, isHotkeyPressed, HotkeysProvider, Options }
|
package/src/isHotkeyPressed.ts
CHANGED
|
@@ -1,8 +1,35 @@
|
|
|
1
1
|
import { isHotkeyModifier, mapKey } from './parseHotkeys'
|
|
2
|
+
;(() => {
|
|
3
|
+
if (typeof document !== 'undefined') {
|
|
4
|
+
document.addEventListener('keydown', (e) => {
|
|
5
|
+
if (e.key === undefined) {
|
|
6
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
7
|
+
return
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])
|
|
11
|
+
})
|
|
12
|
+
|
|
13
|
+
document.addEventListener('keyup', (e) => {
|
|
14
|
+
if (e.key === undefined) {
|
|
15
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
16
|
+
return
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])
|
|
20
|
+
})
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
if (typeof window !== 'undefined') {
|
|
24
|
+
window.addEventListener('blur', () => {
|
|
25
|
+
currentlyPressedKeys.clear()
|
|
26
|
+
})
|
|
27
|
+
}
|
|
28
|
+
})()
|
|
2
29
|
|
|
3
30
|
const currentlyPressedKeys: Set<string> = new Set<string>()
|
|
4
31
|
|
|
5
|
-
export function isHotkeyPressed(key: string | string[], splitKey
|
|
32
|
+
export function isHotkeyPressed(key: string | string[], splitKey = ','): boolean {
|
|
6
33
|
const hotkeyArray = Array.isArray(key) ? key : key.split(splitKey)
|
|
7
34
|
|
|
8
35
|
return hotkeyArray.every((hotkey) => currentlyPressedKeys.has(hotkey.trim().toLowerCase()))
|
|
@@ -17,10 +44,10 @@ export function pushToCurrentlyPressedKeys(key: string | string[]): void {
|
|
|
17
44
|
Otherwise the set will hold all ever pressed keys while the meta key is down which leads to wrong results.
|
|
18
45
|
*/
|
|
19
46
|
if (currentlyPressedKeys.has('meta')) {
|
|
20
|
-
currentlyPressedKeys.forEach(key => !isHotkeyModifier(key) && currentlyPressedKeys.delete(key.toLowerCase()))
|
|
47
|
+
currentlyPressedKeys.forEach((key) => !isHotkeyModifier(key) && currentlyPressedKeys.delete(key.toLowerCase()))
|
|
21
48
|
}
|
|
22
49
|
|
|
23
|
-
hotkeyArray.forEach(hotkey => currentlyPressedKeys.add(hotkey.toLowerCase()))
|
|
50
|
+
hotkeyArray.forEach((hotkey) => currentlyPressedKeys.add(hotkey.toLowerCase()))
|
|
24
51
|
}
|
|
25
52
|
|
|
26
53
|
export function removeFromCurrentlyPressedKeys(key: string | string[]): void {
|
|
@@ -34,34 +61,6 @@ export function removeFromCurrentlyPressedKeys(key: string | string[]): void {
|
|
|
34
61
|
if (key === 'meta') {
|
|
35
62
|
currentlyPressedKeys.clear()
|
|
36
63
|
} else {
|
|
37
|
-
hotkeyArray.forEach(hotkey => currentlyPressedKeys.delete(hotkey.toLowerCase()))
|
|
64
|
+
hotkeyArray.forEach((hotkey) => currentlyPressedKeys.delete(hotkey.toLowerCase()))
|
|
38
65
|
}
|
|
39
66
|
}
|
|
40
|
-
|
|
41
|
-
(() => {
|
|
42
|
-
if (typeof document !== 'undefined') {
|
|
43
|
-
document.addEventListener('keydown', e => {
|
|
44
|
-
if (e.key === undefined) {
|
|
45
|
-
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
46
|
-
return
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
document.addEventListener('keyup', e => {
|
|
53
|
-
if (e.key === undefined) {
|
|
54
|
-
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
55
|
-
return
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)])
|
|
59
|
-
})
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
if (typeof window !== 'undefined') {
|
|
63
|
-
window.addEventListener('blur', () => {
|
|
64
|
-
currentlyPressedKeys.clear()
|
|
65
|
-
})
|
|
66
|
-
}
|
|
67
|
-
})()
|