react-hotkeys-hook 4.3.4 → 4.3.6-0
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 +50 -41
- 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 +50 -41
- package/dist/react-hotkeys-hook.esm.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +46 -9
- 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 +13 -11
- package/src/types.ts +1 -1
- package/src/useHotkeys.ts +38 -15
- package/src/useRecordHotkeys.ts +2 -2
- package/src/validators.ts +6 -4
|
@@ -27,14 +27,16 @@ 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
|
return (mappedKeys[key] || key).trim().toLowerCase().replace('key', '').replace('digit', '').replace('numpad', '').replace('arrow', '');
|
|
@@ -73,6 +75,29 @@ function parseHotkey(hotkey, combinationKey) {
|
|
|
73
75
|
});
|
|
74
76
|
}
|
|
75
77
|
|
|
78
|
+
(function () {
|
|
79
|
+
if (typeof document !== 'undefined') {
|
|
80
|
+
document.addEventListener('keydown', function (e) {
|
|
81
|
+
if (e.key === undefined) {
|
|
82
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
pushToCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
86
|
+
});
|
|
87
|
+
document.addEventListener('keyup', function (e) {
|
|
88
|
+
if (e.key === undefined) {
|
|
89
|
+
// Synthetic event (e.g., Chrome autofill). Ignore.
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
removeFromCurrentlyPressedKeys([mapKey(e.key), mapKey(e.code)]);
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
if (typeof window !== 'undefined') {
|
|
96
|
+
window.addEventListener('blur', function () {
|
|
97
|
+
currentlyPressedKeys.clear();
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
})();
|
|
76
101
|
var currentlyPressedKeys = /*#__PURE__*/new Set();
|
|
77
102
|
function isHotkeyPressed(key, splitKey) {
|
|
78
103
|
if (splitKey === void 0) {
|
|
@@ -114,29 +139,6 @@ function removeFromCurrentlyPressedKeys(key) {
|
|
|
114
139
|
});
|
|
115
140
|
}
|
|
116
141
|
}
|
|
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
142
|
|
|
141
143
|
function maybePreventDefault(e, hotkey, preventDefault) {
|
|
142
144
|
if (typeof preventDefault === 'function' && preventDefault(e, hotkey) || preventDefault === true) {
|
|
@@ -251,9 +253,9 @@ function BoundHotkeysProxyProviderProvider(_ref) {
|
|
|
251
253
|
|
|
252
254
|
function deepEqual(x, y) {
|
|
253
255
|
//@ts-ignore
|
|
254
|
-
return x && y && typeof x === 'object' && typeof y === 'object'
|
|
256
|
+
return x && y && typeof x === 'object' && typeof y === 'object' ? Object.keys(x).length === Object.keys(y).length &&
|
|
255
257
|
//@ts-ignore
|
|
256
|
-
|
|
258
|
+
Object.keys(x).reduce(function (isEqual, key) {
|
|
257
259
|
return isEqual && deepEqual(x[key], y[key]);
|
|
258
260
|
}, true) : x === y;
|
|
259
261
|
}
|
|
@@ -365,8 +367,14 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
365
367
|
var ref = useRef(null);
|
|
366
368
|
var hasTriggeredRef = useRef(false);
|
|
367
369
|
var _options = !(options instanceof Array) ? options : !(dependencies instanceof Array) ? dependencies : undefined;
|
|
368
|
-
var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies :
|
|
369
|
-
var
|
|
370
|
+
var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined;
|
|
371
|
+
var memoisedCB = useCallback(callback, _deps != null ? _deps : []);
|
|
372
|
+
var cbRef = useRef(memoisedCB);
|
|
373
|
+
if (_deps) {
|
|
374
|
+
cbRef.current = memoisedCB;
|
|
375
|
+
} else {
|
|
376
|
+
cbRef.current = callback;
|
|
377
|
+
}
|
|
370
378
|
var memoisedOptions = useDeepEqualMemo(_options);
|
|
371
379
|
var _useHotkeysContext = useHotkeysContext(),
|
|
372
380
|
enabledScopes = _useHotkeysContext.enabledScopes;
|
|
@@ -405,7 +413,7 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
405
413
|
return;
|
|
406
414
|
}
|
|
407
415
|
// Execute the user callback for that hotkey
|
|
408
|
-
|
|
416
|
+
cbRef.current(e, hotkey);
|
|
409
417
|
if (!isKeyUp) {
|
|
410
418
|
hasTriggeredRef.current = true;
|
|
411
419
|
}
|
|
@@ -433,10 +441,11 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
433
441
|
listener(event, true);
|
|
434
442
|
}
|
|
435
443
|
};
|
|
444
|
+
var domNode = ref.current || (_options == null ? void 0 : _options.document) || document;
|
|
436
445
|
// @ts-ignore
|
|
437
|
-
|
|
446
|
+
domNode.addEventListener('keyup', handleKeyUp);
|
|
438
447
|
// @ts-ignore
|
|
439
|
-
|
|
448
|
+
domNode.addEventListener('keydown', handleKeyDown);
|
|
440
449
|
if (proxy) {
|
|
441
450
|
parseKeysHookInput(keys, memoisedOptions == null ? void 0 : memoisedOptions.splitKey).forEach(function (key) {
|
|
442
451
|
return proxy.addHotkey(parseHotkey(key, memoisedOptions == null ? void 0 : memoisedOptions.combinationKey));
|
|
@@ -444,16 +453,16 @@ function useHotkeys(keys, callback, options, dependencies) {
|
|
|
444
453
|
}
|
|
445
454
|
return function () {
|
|
446
455
|
// @ts-ignore
|
|
447
|
-
|
|
456
|
+
domNode.removeEventListener('keyup', handleKeyUp);
|
|
448
457
|
// @ts-ignore
|
|
449
|
-
|
|
458
|
+
domNode.removeEventListener('keydown', handleKeyDown);
|
|
450
459
|
if (proxy) {
|
|
451
460
|
parseKeysHookInput(keys, memoisedOptions == null ? void 0 : memoisedOptions.splitKey).forEach(function (key) {
|
|
452
461
|
return proxy.removeHotkey(parseHotkey(key, memoisedOptions == null ? void 0 : memoisedOptions.combinationKey));
|
|
453
462
|
});
|
|
454
463
|
}
|
|
455
464
|
};
|
|
456
|
-
}, [keys,
|
|
465
|
+
}, [keys, memoisedOptions, enabledScopes]);
|
|
457
466
|
return ref;
|
|
458
467
|
}
|
|
459
468
|
|
|
@@ -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 = options instanceof Array ? options : dependencies instanceof Array ? dependencies : []\n\n const cb = useCallback(callback, [..._deps])\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 cb(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, cb, 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","cb","memoisedOptions","proxy","listener","isKeyUp","enableOnFormTags","activeElement","contains","isContentEditable","enableOnContentEditable","handleKeyDown","event","keydown","keyup","handleKeyUp","removeEventListener","useRecordHotkeys","setKeys","isRecording","setIsRecording","handler","newKeys","stop","start"],"mappings":";;;;;;;;;;;;;;;;;;AAEA,IAAMA,wBAAwB,GAAG,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC;AAExE,IAAMC,UAAU,GAA2B;EACzCC,GAAG,EAAE,QAAQ;EACb,UAAQ,OAAO;EACf,GAAG,EAAE,QAAQ;EACb,GAAG,EAAE,OAAO;EACZ,GAAG,EAAE,OAAO;EACZ,GAAG,EAAE,OAAO;EACZ,GAAG,EAAE,WAAW;EAChB,GAAG,EAAE,WAAW;EAChB,GAAG,EAAE,cAAc;EACnB,WAAW,EAAE,OAAO;EACpB,YAAY,EAAE,OAAO;EACrB,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,KAAK;EACjB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,aAAa,EAAE,MAAM;EACrB,cAAc,EAAE;CACjB;SAEeC,MAAM,CAACC,GAAW;EAChC,OAAO,CAACH,UAAU,CAACG,GAAG,CAAC,IAAIA,GAAG,EAC3BC,IAAI,EAAE,CACNC,WAAW,EAAE,CACbC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAClBA,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CACpBA,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CACrBA,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC;AACzB;SAEgBC,gBAAgB,CAACJ,GAAW;EAC1C,OAAOJ,wBAAwB,CAACS,QAAQ,CAACL,GAAG,CAAC;AAC/C;SAEgBM,kBAAkB,CAACC,IAAU,EAAEC;MAAAA;IAAAA,WAAmB,GAAG;;EACnE,IAAI,OAAOD,IAAI,KAAK,QAAQ,EAAE;IAC5B,OAAOA,IAAI,CAACE,KAAK,CAACD,QAAQ,CAAC;;EAG7B,OAAOD,IAAI;AACb;SAEgBG,WAAW,CAACC,MAAc,EAAEC;MAAAA;IAAAA,iBAAyB,GAAG;;EACtE,IAAML,IAAI,GAAGI,MAAM,CAChBE,iBAAiB,EAAE,CACnBJ,KAAK,CAACG,cAAc,CAAC,CACrBE,GAAG,CAAC,UAAAC,CAAC;IAAA,OAAIhB,MAAM,CAACgB,CAAC,CAAC;IAAC;EAEtB,IAAMC,SAAS,GAAsB;IACnCC,GAAG,EAAEV,IAAI,CAACF,QAAQ,CAAC,KAAK,CAAC;IACzBa,IAAI,EAAEX,IAAI,CAACF,QAAQ,CAAC,MAAM,CAAC,IAAIE,IAAI,CAACF,QAAQ,CAAC,SAAS,CAAC;IACvDc,KAAK,EAAEZ,IAAI,CAACF,QAAQ,CAAC,OAAO,CAAC;IAC7Be,IAAI,EAAEb,IAAI,CAACF,QAAQ,CAAC,MAAM,CAAC;IAC3BgB,GAAG,EAAEd,IAAI,CAACF,QAAQ,CAAC,KAAK;GACzB;EAED,IAAMiB,cAAc,GAAGf,IAAI,CAACgB,MAAM,CAAC,UAACR,CAAC;IAAA,OAAK,CAACnB,wBAAwB,CAACS,QAAQ,CAACU,CAAC,CAAC;IAAC;EAEhF,oBACKC,SAAS;IACZT,IAAI,EAAEe;;AAEV;;AChEA,IAAME,oBAAoB,gBAAgB,IAAIC,GAAG,EAAU;AAE3D,SAAgBC,eAAe,CAAC1B,GAAsB,EAAEQ;MAAAA;IAAAA,WAAmB,GAAG;;EAC5E,IAAMmB,WAAW,GAAGC,KAAK,CAACC,OAAO,CAAC7B,GAAG,CAAC,GAAGA,GAAG,GAAGA,GAAG,CAACS,KAAK,CAACD,QAAQ,CAAC;EAElE,OAAOmB,WAAW,CAACG,KAAK,CAAC,UAACnB,MAAM;IAAA,OAAKa,oBAAoB,CAACO,GAAG,CAACpB,MAAM,CAACV,IAAI,EAAE,CAACC,WAAW,EAAE,CAAC;IAAC;AAC7F;AAEA,SAAgB8B,0BAA0B,CAAChC,GAAsB;EAC/D,IAAM2B,WAAW,GAAGC,KAAK,CAACC,OAAO,CAAC7B,GAAG,CAAC,GAAGA,GAAG,GAAG,CAACA,GAAG,CAAC;;;;;;EAOpD,IAAIwB,oBAAoB,CAACO,GAAG,CAAC,MAAM,CAAC,EAAE;IACpCP,oBAAoB,CAACS,OAAO,CAAC,UAAAjC,GAAG;MAAA,OAAI,CAACI,gBAAgB,CAACJ,GAAG,CAAC,IAAIwB,oBAAoB,UAAO,CAACxB,GAAG,CAACE,WAAW,EAAE,CAAC;MAAC;;EAG/GyB,WAAW,CAACM,OAAO,CAAC,UAAAtB,MAAM;IAAA,OAAIa,oBAAoB,CAACU,GAAG,CAACvB,MAAM,CAACT,WAAW,EAAE,CAAC;IAAC;AAC/E;AAEA,SAAgBiC,8BAA8B,CAACnC,GAAsB;EACnE,IAAM2B,WAAW,GAAGC,KAAK,CAACC,OAAO,CAAC7B,GAAG,CAAC,GAAGA,GAAG,GAAG,CAACA,GAAG,CAAC;;;;;;EAOpD,IAAIA,GAAG,KAAK,MAAM,EAAE;IAClBwB,oBAAoB,CAACY,KAAK,EAAE;GAC7B,MAAM;IACLT,WAAW,CAACM,OAAO,CAAC,UAAAtB,MAAM;MAAA,OAAIa,oBAAoB,UAAO,CAACb,MAAM,CAACT,WAAW,EAAE,CAAC;MAAC;;AAEpF;AAEA,CAAC;EACC,IAAI,OAAOmC,QAAQ,KAAK,WAAW,EAAE;IACnCA,QAAQ,CAACC,gBAAgB,CAAC,SAAS,EAAE,UAAAC,CAAC;MACpC,IAAIA,CAAC,CAACvC,GAAG,KAAKwC,SAAS,EAAE;;QAEvB;;MAGFR,0BAA0B,CAAC,CAACjC,MAAM,CAACwC,CAAC,CAACvC,GAAG,CAAC,EAAED,MAAM,CAACwC,CAAC,CAACE,IAAI,CAAC,CAAC,CAAC;KAC5D,CAAC;IAEFJ,QAAQ,CAACC,gBAAgB,CAAC,OAAO,EAAE,UAAAC,CAAC;MAClC,IAAIA,CAAC,CAACvC,GAAG,KAAKwC,SAAS,EAAE;;QAEvB;;MAGFL,8BAA8B,CAAC,CAACpC,MAAM,CAACwC,CAAC,CAACvC,GAAG,CAAC,EAAED,MAAM,CAACwC,CAAC,CAACE,IAAI,CAAC,CAAC,CAAC;KAChE,CAAC;;EAGJ,IAAI,OAAOC,MAAM,KAAK,WAAW,EAAE;IACjCA,MAAM,CAACJ,gBAAgB,CAAC,MAAM,EAAE;MAC9Bd,oBAAoB,CAACY,KAAK,EAAE;KAC7B,CAAC;;AAEN,CAAC,GAAG;;SC9DYO,mBAAmB,CAACJ,CAAgB,EAAE5B,MAAc,EAAEiC,cAAwB;EAC5F,IAAK,OAAOA,cAAc,KAAK,UAAU,IAAIA,cAAc,CAACL,CAAC,EAAE5B,MAAM,CAAC,IAAKiC,cAAc,KAAK,IAAI,EAAE;IAClGL,CAAC,CAACK,cAAc,EAAE;;AAEtB;AAEA,SAAgBC,eAAe,CAACN,CAAgB,EAAE5B,MAAc,EAAEmC,OAAiB;EACjF,IAAI,OAAOA,OAAO,KAAK,UAAU,EAAE;IACjC,OAAOA,OAAO,CAACP,CAAC,EAAE5B,MAAM,CAAC;;EAG3B,OAAOmC,OAAO,KAAK,IAAI,IAAIA,OAAO,KAAKN,SAAS;AAClD;AAEA,SAAgBO,+BAA+B,CAACC,EAAiB;EAC/D,OAAOC,oBAAoB,CAACD,EAAE,EAAE,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,CAAC,CAAC;AAClE;AAEA,SAAgBC,oBAAoB,OAA4BC;MAAzBC,MAAM,QAANA,MAAM;EAAA,IAAmBD;IAAAA,gBAAsC,KAAK;;EACzG,IAAME,aAAa,GAAGD,MAAM,IAAKA,MAAsB,CAACE,OAAO;EAE/D,IAAIH,aAAa,YAAYtB,KAAK,EAAE;IAClC,OAAO0B,OAAO,CAACF,aAAa,IAAIF,aAAa,IAAIA,aAAa,CAACK,IAAI,CAAC,UAAAC,GAAG;MAAA,OAAIA,GAAG,CAACtD,WAAW,EAAE,KAAKkD,aAAa,CAAClD,WAAW,EAAE;MAAC,CAAC;;EAGhI,OAAOoD,OAAO,CAACF,aAAa,IAAIF,aAAa,IAAIA,aAAa,KAAK,IAAI,CAAC;AAC1E;AAEA,SAAgBO,aAAa,CAACC,YAAsB,EAAEC,MAAe;EACnE,IAAID,YAAY,CAACE,MAAM,KAAK,CAAC,IAAID,MAAM,EAAE;IACvCE,OAAO,CAACC,IAAI,CACV,2KAA2K,CAC5K;IAED,OAAO,IAAI;;EAGb,IAAI,CAACH,MAAM,EAAE;IACX,OAAO,IAAI;;EAGb,OAAOD,YAAY,CAACH,IAAI,CAAC,UAAAQ,KAAK;IAAA,OAAIJ,MAAM,CAACtD,QAAQ,CAAC0D,KAAK,CAAC;IAAC,IAAIL,YAAY,CAACrD,QAAQ,CAAC,GAAG,CAAC;AACzF;AAEA,AAAO,IAAM2D,6BAA6B,GAAG,SAAhCA,6BAA6B,CAAIzB,CAAgB,EAAE5B,MAAc,EAAEsD;MAAAA;IAAAA,kBAA2B,KAAK;;EAC9G,IAAQhD,GAAG,GAAmCN,MAAM,CAA5CM,GAAG;IAAEG,IAAI,GAA6BT,MAAM,CAAvCS,IAAI;IAAEC,GAAG,GAAwBV,MAAM,CAAjCU,GAAG;IAAEF,KAAK,GAAiBR,MAAM,CAA5BQ,KAAK;IAAED,IAAI,GAAWP,MAAM,CAArBO,IAAI;IAAEX,IAAI,GAAKI,MAAM,CAAfJ,IAAI;EACzC,IAAa2D,mBAAmB,GAA+C3B,CAAC,CAAxEvC,GAAG;IAAuByC,IAAI,GAAyCF,CAAC,CAA9CE,IAAI;IAAE0B,OAAO,GAAgC5B,CAAC,CAAxC4B,OAAO;IAAEC,OAAO,GAAuB7B,CAAC,CAA/B6B,OAAO;IAAEC,QAAQ,GAAa9B,CAAC,CAAtB8B,QAAQ;IAAEC,MAAM,GAAK/B,CAAC,CAAZ+B,MAAM;EAE1E,IAAMC,OAAO,GAAGxE,MAAM,CAAC0C,IAAI,CAAC;EAC5B,IAAM+B,UAAU,GAAGN,mBAAmB,CAAChE,WAAW,EAAE;EAEpD,IAAI,CAAC+D,eAAe,EAAE;;IAEpB,IAAIhD,GAAG,KAAK,CAACqD,MAAM,IAAIE,UAAU,KAAK,KAAK,EAAE;MAC3C,OAAO,KAAK;;IAGd,IAAIrD,KAAK,KAAK,CAACkD,QAAQ,IAAIG,UAAU,KAAK,OAAO,EAAE;MACjD,OAAO,KAAK;;;IAId,IAAInD,GAAG,EAAE;MACP,IAAI,CAAC+C,OAAO,IAAI,CAACD,OAAO,EAAE;QACxB,OAAO,KAAK;;KAEf,MAAM;MACL,IAAI/C,IAAI,KAAK,CAACgD,OAAO,IAAII,UAAU,KAAK,MAAM,EAAE;QAC9C,OAAO,KAAK;;MAGd,IAAItD,IAAI,KAAK,CAACiD,OAAO,IAAIK,UAAU,KAAK,MAAM,EAAE;QAC9C,OAAO,KAAK;;;;;;EAOlB,IAAIjE,IAAI,IAAIA,IAAI,CAACqD,MAAM,KAAK,CAAC,KAAKrD,IAAI,CAACF,QAAQ,CAACmE,UAAU,CAAC,IAAIjE,IAAI,CAACF,QAAQ,CAACkE,OAAO,CAAC,CAAC,EAAE;IACtF,OAAO,IAAI;GACZ,MAAM,IAAIhE,IAAI,EAAE;;IAEf,OAAOmB,eAAe,CAACnB,IAAI,CAAC;GAC7B,MAAM,IAAI,CAACA,IAAI,EAAE;;IAEhB,OAAO,IAAI;;;EAIb,OAAO,KAAK;AACd,CAAC;;ACvFD,IAAMkE,yBAAyB,gBAAGC,aAAa,CAA4ClC,SAAS,CAAC;AAErG,AAAO,IAAMmC,oBAAoB,GAAG,SAAvBA,oBAAoB;EAC/B,OAAOC,UAAU,CAACH,yBAAyB,CAAC;AAC9C,CAAC;AAQD,SAAwBI,iCAAiC;MAAGC,SAAS,QAATA,SAAS;IAAEC,YAAY,QAAZA,YAAY;IAAEC,QAAQ,QAARA,QAAQ;EAC3F,oBAAOC,IAAC,yBAAyB,CAAC,QAAQ;IAAC,KAAK,EAAE;MAACH,SAAS,EAATA,SAAS;MAAEC,YAAY,EAAZA;KAAc;IAAA,UAAEC;IAA8C;AAC9H;;SCtBwBE,SAAS,CAACC,CAAM,EAAEC,CAAM;;EAE9C,OAAQD,CAAC,IAAIC,CAAC,IAAI,OAAOD,CAAC,KAAK,QAAQ,IAAI,OAAOC,CAAC,KAAK;;IAEnDC,MAAM,CAAC9E,IAAI,CAAC4E,CAAC,CAAC,CAACvB,MAAM,KAAKyB,MAAM,CAAC9E,IAAI,CAAC6E,CAAC,CAAC,CAACxB,MAAM,IAAKyB,MAAM,CAAC9E,IAAI,CAAC4E,CAAC,CAAC,CAACG,MAAM,CAAC,UAASC,OAAO,EAAEvF,GAAG;IAChG,OAAOuF,OAAO,IAAIL,SAAS,CAACC,CAAC,CAACnF,GAAG,CAAC,EAAEoF,CAAC,CAACpF,GAAG,CAAC,CAAC;GAC5C,EAAE,IAAI,CAAC,GACLmF,CAAC,KAAKC,CAAE;AACf;;ACMA,IAAMI,cAAc,gBAAGd,aAAa,CAAqB;EACvDe,OAAO,EAAE,EAAE;EACXC,aAAa,EAAE,EAAE;EACjBC,WAAW,EAAE,yBAAQ;EACrBC,WAAW,EAAE,yBAAQ;EACrBC,YAAY,EAAE;CACf,CAAC;AAEF,IAAaC,iBAAiB,GAAG,SAApBA,iBAAiB;EAC5B,OAAOlB,UAAU,CAACY,cAAc,CAAC;AACnC,CAAC;AAOD,IAAaO,eAAe,GAAG,SAAlBA,eAAe;mCAAKC,qBAAqB;IAArBA,qBAAqB,sCAAG,CAAC,GAAG,CAAC;IAAEhB,QAAQ,QAARA,QAAQ;EACtE,gBAAwDiB,QAAQ,CAAC,CAAAD,qBAAqB,oBAArBA,qBAAqB,CAAEpC,MAAM,IAAG,CAAC,GAAGoC,qBAAqB,GAAG,CAAC,GAAG,CAAC,CAAC;IAA5HE,oBAAoB;IAAEC,uBAAuB;EACpD,iBAAwCF,QAAQ,CAAW,EAAE,CAAC;IAAvDG,YAAY;IAAEC,eAAe;EAEpC,IAAMT,WAAW,GAAGU,WAAW,CAAC,UAACvC,KAAa;IAC5CoC,uBAAuB,CAAC,UAACI,IAAI;MAC3B,IAAIA,IAAI,CAAClG,QAAQ,CAAC,GAAG,CAAC,EAAE;QACtB,OAAO,CAAC0D,KAAK,CAAC;;MAGhB,OAAOnC,KAAK,CAAC4E,IAAI,CAAC,IAAI/E,GAAG,WAAK8E,IAAI,GAAExC,KAAK,GAAE,CAAC;KAC7C,CAAC;GACH,EAAE,EAAE,CAAC;EAEN,IAAM8B,YAAY,GAAGS,WAAW,CAAC,UAACvC,KAAa;IAC7CoC,uBAAuB,CAAC,UAACI,IAAI;MAC3B,IAAIA,IAAI,CAAChF,MAAM,CAAC,UAAAkF,CAAC;QAAA,OAAIA,CAAC,KAAK1C,KAAK;QAAC,CAACH,MAAM,KAAK,CAAC,EAAE;QAC9C,OAAO,CAAC,GAAG,CAAC;OACb,MAAM;QACL,OAAO2C,IAAI,CAAChF,MAAM,CAAC,UAAAkF,CAAC;UAAA,OAAIA,CAAC,KAAK1C,KAAK;UAAC;;KAEvC,CAAC;GACH,EAAE,EAAE,CAAC;EAEN,IAAM4B,WAAW,GAAGW,WAAW,CAAC,UAACvC,KAAa;IAC5CoC,uBAAuB,CAAC,UAACI,IAAI;MAC3B,IAAIA,IAAI,CAAClG,QAAQ,CAAC0D,KAAK,CAAC,EAAE;QACxB,IAAIwC,IAAI,CAAChF,MAAM,CAAC,UAAAkF,CAAC;UAAA,OAAIA,CAAC,KAAK1C,KAAK;UAAC,CAACH,MAAM,KAAK,CAAC,EAAE;UAC9C,OAAO,CAAC,GAAG,CAAC;SACb,MAAM;UACL,OAAO2C,IAAI,CAAChF,MAAM,CAAC,UAAAkF,CAAC;YAAA,OAAIA,CAAC,KAAK1C,KAAK;YAAC;;OAEvC,MAAM;QACL,IAAIwC,IAAI,CAAClG,QAAQ,CAAC,GAAG,CAAC,EAAE;UACtB,OAAO,CAAC0D,KAAK,CAAC;;QAGhB,OAAOnC,KAAK,CAAC4E,IAAI,CAAC,IAAI/E,GAAG,WAAK8E,IAAI,GAAExC,KAAK,GAAE,CAAC;;KAE/C,CAAC;GACH,EAAE,EAAE,CAAC;EAEN,IAAM2C,cAAc,GAAGJ,WAAW,CAAC,UAAC3F,MAAc;IAChD0F,eAAe,CAAC,UAACE,IAAI;MAAA,iBAASA,IAAI,GAAE5F,MAAM;KAAC,CAAC;GAC7C,EAAE,EAAE,CAAC;EAEN,IAAMgG,iBAAiB,GAAGL,WAAW,CAAC,UAAC3F,MAAc;IACnD0F,eAAe,CAAC,UAACE,IAAI;MAAA,OAAKA,IAAI,CAAChF,MAAM,CAAC,UAAAqF,CAAC;QAAA,OAAI,CAAC1B,SAAS,CAAC0B,CAAC,EAAEjG,MAAM,CAAC;QAAC;MAAC;GACnE,EAAE,EAAE,CAAC;EAEN,oBACEsE,IAAC,cAAc,CAAC,QAAQ;IAAC,KAAK,EAAE;MAACS,aAAa,EAAEQ,oBAAoB;MAAET,OAAO,EAAEW,YAAY;MAAER,WAAW,EAAXA,WAAW;MAAEC,YAAY,EAAZA,YAAY;MAAEF,WAAW,EAAXA;KAAa;IAAA,uBACnIV,IAAC,iCAAiC;MAAC,SAAS,EAAEyB,cAAe;MAAC,YAAY,EAAEC,iBAAkB;MAAA,UAC3F3B;;IAEqB;AAE9B,CAAC;;SCrFuB6B,gBAAgB,CAAIC,KAAQ;EAClD,IAAMC,GAAG,GAAGC,MAAM,CAAgBxE,SAAS,CAAC;EAE5C,IAAI,CAAC0C,SAAS,CAAC6B,GAAG,CAACE,OAAO,EAAEH,KAAK,CAAC,EAAE;IAClCC,GAAG,CAACE,OAAO,GAAGH,KAAK;;EAGrB,OAAOC,GAAG,CAACE,OAAO;AACpB;;ACKA,IAAMC,eAAe,GAAG,SAAlBA,eAAe,CAAI3E,CAAgB;EACvCA,CAAC,CAAC2E,eAAe,EAAE;EACnB3E,CAAC,CAACK,cAAc,EAAE;EAClBL,CAAC,CAAC4E,wBAAwB,EAAE;AAC9B,CAAC;AAED,IAAMC,mBAAmB,GAAG,OAAO1E,MAAM,KAAK,WAAW,GAAG2E,eAAe,GAAGC,SAAS;AAEvF,SAAwBC,UAAU,CAChChH,IAAU,EACViH,QAAwB,EACxBC,OAAkC,EAClCC,YAAuC;EAEvC,IAAMX,GAAG,GAAGC,MAAM,CAAa,IAAI,CAAC;EACpC,IAAMW,eAAe,GAAGX,MAAM,CAAC,KAAK,CAAC;EAErC,IAAMY,QAAQ,GAAwB,EAAEH,OAAO,YAAY7F,KAAK,CAAC,GAAI6F,OAAmB,GAAG,EAAEC,YAAY,YAAY9F,KAAK,CAAC,GAAI8F,YAAwB,GAAGlF,SAAS;EACnK,IAAMqF,KAAK,GAAmBJ,OAAO,YAAY7F,KAAK,GAAG6F,OAAO,GAAGC,YAAY,YAAY9F,KAAK,GAAG8F,YAAY,GAAG,EAAE;EAEpH,IAAMI,EAAE,GAAGxB,WAAW,CAACkB,QAAQ,YAAMK,KAAK,EAAE;EAC5C,IAAME,eAAe,GAAGlB,gBAAgB,CAACe,QAAQ,CAAC;EAElD,yBAA0B9B,iBAAiB,EAAE;IAArCJ,aAAa,sBAAbA,aAAa;EACrB,IAAMsC,KAAK,GAAGrD,oBAAoB,EAAE;EAEpCyC,mBAAmB,CAAC;IAClB,IAAI,CAAAW,eAAe,oBAAfA,eAAe,CAAEjF,OAAO,MAAK,KAAK,IAAI,CAACW,aAAa,CAACiC,aAAa,EAAEqC,eAAe,oBAAfA,eAAe,CAAEpE,MAAM,CAAC,EAAE;MAChG;;IAGF,IAAMsE,QAAQ,GAAG,SAAXA,QAAQ,CAAI1F,CAAgB,EAAE2F;;UAAAA;QAAAA,UAAmB,KAAK;;MAC1D,IAAInF,+BAA+B,CAACR,CAAC,CAAC,IAAI,CAACU,oBAAoB,CAACV,CAAC,EAAEwF,eAAe,oBAAfA,eAAe,CAAEI,gBAAgB,CAAC,EAAE;QACrG;;;;MAKF,IAAIpB,GAAG,CAACE,OAAO,KAAK,IAAI,IAAI5E,QAAQ,CAAC+F,aAAa,KAAKrB,GAAG,CAACE,OAAO,IAAI,CAACF,GAAG,CAACE,OAAO,CAACoB,QAAQ,CAAChG,QAAQ,CAAC+F,aAAa,CAAC,EAAE;QACnHlB,eAAe,CAAC3E,CAAC,CAAC;QAElB;;MAGF,IAAM,aAAAA,CAAC,CAACY,MAAsB,aAAxB,UAA0BmF,iBAAiB,IAAI,EAACP,eAAe,YAAfA,eAAe,CAAEQ,uBAAuB,GAAG;QAC/F;;MAGFjI,kBAAkB,CAACC,IAAI,EAAEwH,eAAe,oBAAfA,eAAe,CAAEvH,QAAQ,CAAC,CAACyB,OAAO,CAAC,UAACjC,GAAG;;QAC9D,IAAMW,MAAM,GAAGD,WAAW,CAACV,GAAG,EAAE+H,eAAe,oBAAfA,eAAe,CAAEnH,cAAc,CAAC;QAEhE,IAAIoD,6BAA6B,CAACzB,CAAC,EAAE5B,MAAM,EAAEoH,eAAe,oBAAfA,eAAe,CAAE9D,eAAe,CAAC,oBAAItD,MAAM,CAACJ,IAAI,aAAX,aAAaF,QAAQ,CAAC,GAAG,CAAC,EAAE;UAC5G,IAAI6H,OAAO,IAAIP,eAAe,CAACV,OAAO,EAAE;YACtC;;UAGFtE,mBAAmB,CAACJ,CAAC,EAAE5B,MAAM,EAAEoH,eAAe,oBAAfA,eAAe,CAAEnF,cAAc,CAAC;UAE/D,IAAI,CAACC,eAAe,CAACN,CAAC,EAAE5B,MAAM,EAAEoH,eAAe,oBAAfA,eAAe,CAAEjF,OAAO,CAAC,EAAE;YACzDoE,eAAe,CAAC3E,CAAC,CAAC;YAElB;;;UAIFuF,EAAE,CAACvF,CAAC,EAAE5B,MAAM,CAAC;UAEb,IAAI,CAACuH,OAAO,EAAE;YACZP,eAAe,CAACV,OAAO,GAAG,IAAI;;;OAGnC,CAAC;KACH;IAED,IAAMuB,aAAa,GAAG,SAAhBA,aAAa,CAAIC,KAAoB;MACzC,IAAIA,KAAK,CAACzI,GAAG,KAAKwC,SAAS,EAAE;;QAE3B;;MAGFR,0BAA0B,CAACjC,MAAM,CAAC0I,KAAK,CAAChG,IAAI,CAAC,CAAC;MAE9C,IAAK,CAAAsF,eAAe,oBAAfA,eAAe,CAAEW,OAAO,MAAKlG,SAAS,IAAI,CAAAuF,eAAe,oBAAfA,eAAe,CAAEY,KAAK,MAAK,IAAI,IAAKZ,eAAe,YAAfA,eAAe,CAAEW,OAAO,EAAE;QAC3GT,QAAQ,CAACQ,KAAK,CAAC;;KAElB;IAED,IAAMG,WAAW,GAAG,SAAdA,WAAW,CAAIH,KAAoB;MACvC,IAAIA,KAAK,CAACzI,GAAG,KAAKwC,SAAS,EAAE;;QAE3B;;MAGFL,8BAA8B,CAACpC,MAAM,CAAC0I,KAAK,CAAChG,IAAI,CAAC,CAAC;MAElDkF,eAAe,CAACV,OAAO,GAAG,KAAK;MAE/B,IAAIc,eAAe,YAAfA,eAAe,CAAEY,KAAK,EAAE;QAC1BV,QAAQ,CAACQ,KAAK,EAAE,IAAI,CAAC;;KAExB;;IAGD,CAAC1B,GAAG,CAACE,OAAO,KAAIW,QAAQ,oBAARA,QAAQ,CAAEvF,QAAQ,KAAIA,QAAQ,EAAEC,gBAAgB,CAAC,OAAO,EAAEsG,WAAW,CAAC;;IAEtF,CAAC7B,GAAG,CAACE,OAAO,KAAIW,QAAQ,oBAARA,QAAQ,CAAEvF,QAAQ,KAAIA,QAAQ,EAAEC,gBAAgB,CAAC,SAAS,EAAEkG,aAAa,CAAC;IAE1F,IAAIR,KAAK,EAAE;MACT1H,kBAAkB,CAACC,IAAI,EAAEwH,eAAe,oBAAfA,eAAe,CAAEvH,QAAQ,CAAC,CAACyB,OAAO,CAAC,UAACjC,GAAG;QAAA,OAAKgI,KAAK,CAAClD,SAAS,CAACpE,WAAW,CAACV,GAAG,EAAE+H,eAAe,oBAAfA,eAAe,CAAEnH,cAAc,CAAC,CAAC;QAAC;;IAG1I,OAAO;;MAEL,CAACmG,GAAG,CAACE,OAAO,KAAIW,QAAQ,oBAARA,QAAQ,CAAEvF,QAAQ,KAAIA,QAAQ,EAAEwG,mBAAmB,CAAC,OAAO,EAAED,WAAW,CAAC;;MAEzF,CAAC7B,GAAG,CAACE,OAAO,KAAIW,QAAQ,oBAARA,QAAQ,CAAEvF,QAAQ,KAAIA,QAAQ,EAAEwG,mBAAmB,CAAC,SAAS,EAAEL,aAAa,CAAC;MAE7F,IAAIR,KAAK,EAAE;QACT1H,kBAAkB,CAACC,IAAI,EAAEwH,eAAe,oBAAfA,eAAe,CAAEvH,QAAQ,CAAC,CAACyB,OAAO,CAAC,UAACjC,GAAG;UAAA,OAAKgI,KAAK,CAACjD,YAAY,CAACrE,WAAW,CAACV,GAAG,EAAE+H,eAAe,oBAAfA,eAAe,CAAEnH,cAAc,CAAC,CAAC;UAAC;;KAE9I;GACF,EAAE,CAACL,IAAI,EAAEuH,EAAE,EAAEC,eAAe,EAAErC,aAAa,CAAC,CAAC;EAE9C,OAAOqB,GAAG;AACZ;;SCzIwB+B,gBAAgB;EACtC,gBAAwB7C,QAAQ,CAAC,IAAIxE,GAAG,EAAU,CAAC;IAA5ClB,IAAI;IAAEwI,OAAO;EACpB,iBAAsC9C,QAAQ,CAAC,KAAK,CAAC;IAA9C+C,WAAW;IAAEC,cAAc;EAElC,IAAMC,OAAO,GAAG5C,WAAW,CAAC,UAACmC,KAAoB;IAC/C,IAAIA,KAAK,CAACzI,GAAG,KAAKwC,SAAS,EAAE;;MAE3B;;IAGFiG,KAAK,CAAC7F,cAAc,EAAE;IACtB6F,KAAK,CAACvB,eAAe,EAAE;IAEvB6B,OAAO,CAAC,UAAAxC,IAAI;MACV,IAAM4C,OAAO,GAAG,IAAI1H,GAAG,CAAC8E,IAAI,CAAC;MAE7B4C,OAAO,CAACjH,GAAG,CAACnC,MAAM,CAAC0I,KAAK,CAAChG,IAAI,CAAC,CAAC;MAE/B,OAAO0G,OAAO;KACf,CAAC;GACH,EAAE,EAAE,CAAC;EAEN,IAAMC,IAAI,GAAG9C,WAAW,CAAC;IACvB,IAAI,OAAOjE,QAAQ,KAAK,WAAW,EAAE;MACnCA,QAAQ,CAACwG,mBAAmB,CAAC,SAAS,EAAEK,OAAO,CAAC;MAEhDD,cAAc,CAAC,KAAK,CAAC;;GAExB,EAAE,CAACC,OAAO,CAAC,CAAC;EAEb,IAAMG,KAAK,GAAG/C,WAAW,CAAC;IACxByC,OAAO,CAAC,IAAItH,GAAG,EAAU,CAAC;IAE1B,IAAI,OAAOY,QAAQ,KAAK,WAAW,EAAE;MACnC+G,IAAI,EAAE;MAEN/G,QAAQ,CAACC,gBAAgB,CAAC,SAAS,EAAE4G,OAAO,CAAC;MAE7CD,cAAc,CAAC,IAAI,CAAC;;GAEvB,EAAE,CAACC,OAAO,EAAEE,IAAI,CAAC,CAAC;EAEnB,OAAO,CAAC7I,IAAI,EAAE;IAAE8I,KAAK,EAALA,KAAK;IAAED,IAAI,EAAJA,IAAI;IAAEJ,WAAW,EAAXA;GAAa,CAAU;AACtD;;;;"}
|
|
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 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[] {\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 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","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","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","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-0",
|
|
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,25 +81,31 @@
|
|
|
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",
|
|
66
99
|
"tsdx": "0.14.1",
|
|
67
100
|
"tslib": "2.5.0",
|
|
68
|
-
"typescript": "4.9.
|
|
101
|
+
"typescript": "4.9.5"
|
|
69
102
|
},
|
|
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
|
-
})()
|