react-hotkeys-hook 4.3.3 → 4.3.5

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.
@@ -199,10 +199,10 @@ var isHotkeyMatchingKeyboardEvent = function isHotkeyMatchingKeyboardEvent(e, ho
199
199
  var pressedKey = pressedKeyUppercase.toLowerCase();
200
200
  if (!ignoreModifiers) {
201
201
  // We check the pressed keys for compatibility with the keyup event. In keyup events the modifier flags are not set.
202
- if (alt === !altKey && alt && pressedKey !== 'alt') {
202
+ if (alt === !altKey && pressedKey !== 'alt') {
203
203
  return false;
204
204
  }
205
- if (shift === !shiftKey && shift && pressedKey !== 'shift') {
205
+ if (shift === !shiftKey && pressedKey !== 'shift') {
206
206
  return false;
207
207
  }
208
208
  // Mod is a special key name that is checking for meta on macOS and ctrl on other platforms
@@ -211,10 +211,10 @@ var isHotkeyMatchingKeyboardEvent = function isHotkeyMatchingKeyboardEvent(e, ho
211
211
  return false;
212
212
  }
213
213
  } else {
214
- if (meta === !metaKey && meta && pressedKey !== 'meta') {
214
+ if (meta === !metaKey && pressedKey !== 'meta') {
215
215
  return false;
216
216
  }
217
- if (ctrl === !ctrlKey && ctrl && pressedKey !== 'ctrl') {
217
+ if (ctrl === !ctrlKey && pressedKey !== 'ctrl') {
218
218
  return false;
219
219
  }
220
220
  }
@@ -367,8 +367,14 @@ function useHotkeys(keys, callback, options, dependencies) {
367
367
  var ref = react.useRef(null);
368
368
  var hasTriggeredRef = react.useRef(false);
369
369
  var _options = !(options instanceof Array) ? options : !(dependencies instanceof Array) ? dependencies : undefined;
370
- var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies : [];
371
- var cb = react.useCallback(callback, [].concat(_deps));
370
+ var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined;
371
+ var memoisedCB = react.useCallback(callback, _deps != null ? _deps : []);
372
+ var cbRef = react.useRef(memoisedCB);
373
+ if (_deps) {
374
+ cbRef.current = memoisedCB;
375
+ } else {
376
+ cbRef.current = callback;
377
+ }
372
378
  var memoisedOptions = useDeepEqualMemo(_options);
373
379
  var _useHotkeysContext = useHotkeysContext(),
374
380
  enabledScopes = _useHotkeysContext.enabledScopes;
@@ -407,7 +413,7 @@ function useHotkeys(keys, callback, options, dependencies) {
407
413
  return;
408
414
  }
409
415
  // Execute the user callback for that hotkey
410
- cb(e, hotkey);
416
+ cbRef.current(e, hotkey);
411
417
  if (!isKeyUp) {
412
418
  hasTriggeredRef.current = true;
413
419
  }
@@ -455,7 +461,7 @@ function useHotkeys(keys, callback, options, dependencies) {
455
461
  });
456
462
  }
457
463
  };
458
- }, [keys, cb, memoisedOptions, enabledScopes]);
464
+ }, [keys, memoisedOptions, enabledScopes]);
459
465
  return ref;
460
466
  }
461
467
 
@@ -1 +1 @@
1
- {"version":3,"file":"react-hotkeys-hook.cjs.development.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 && (alt && pressedKey !== 'alt')) {\n return false\n }\n\n if (shift === !shiftKey && (shift && 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 && (meta && pressedKey !== 'meta')) {\n return false\n }\n\n if (ctrl === !ctrlKey && (ctrl && 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":"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"}
1
+ {"version":3,"file":"react-hotkeys-hook.cjs.development.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,2 +1,2 @@
1
- "use strict";var e=require("react"),t=require("react/jsx-runtime");function n(){return(n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}var o=["shift","alt","meta","mod","ctrl"],r={esc:"escape",return:"enter",".":"period",",":"comma","-":"slash"," ":"space","`":"backquote","#":"backslash","+":"bracketright",ShiftLeft:"shift",ShiftRight:"shift",AltLeft:"alt",AltRight:"alt",MetaLeft:"meta",MetaRight:"meta",ControlLeft:"ctrl",ControlRight:"ctrl"};function u(e){return(r[e]||e).trim().toLowerCase().replace("key","").replace("digit","").replace("numpad","").replace("arrow","")}function i(e,t){return void 0===t&&(t=","),"string"==typeof e?e.split(t):e}function c(e,t){void 0===t&&(t="+");var r=e.toLocaleLowerCase().split(t).map((function(e){return u(e)}));return n({},{alt:r.includes("alt"),ctrl:r.includes("ctrl")||r.includes("control"),shift:r.includes("shift"),meta:r.includes("meta"),mod:r.includes("mod")},{keys:r.filter((function(e){return!o.includes(e)}))})}var a=new Set;function l(e,t){return void 0===t&&(t=","),(Array.isArray(e)?e:e.split(t)).every((function(e){return a.has(e.trim().toLowerCase())}))}function d(e){var t=Array.isArray(e)?e:[e];a.has("meta")&&a.forEach((function(e){return!function(e){return o.includes(e)}(e)&&a.delete(e.toLowerCase())})),t.forEach((function(e){return a.add(e.toLowerCase())}))}function s(e){var t=Array.isArray(e)?e:[e];"meta"===e?a.clear():t.forEach((function(e){return a.delete(e.toLowerCase())}))}function f(e,t){var n=e.target;void 0===t&&(t=!1);var o=n&&n.tagName;return t instanceof Array?Boolean(o&&t&&t.some((function(e){return e.toLowerCase()===o.toLowerCase()}))):Boolean(o&&t&&!0===t)}"undefined"!=typeof document&&(document.addEventListener("keydown",(function(e){void 0!==e.key&&d([u(e.key),u(e.code)])})),document.addEventListener("keyup",(function(e){void 0!==e.key&&s([u(e.key),u(e.code)])}))),"undefined"!=typeof window&&window.addEventListener("blur",(function(){a.clear()}));var v=e.createContext(void 0);function y(e){return t.jsx(v.Provider,{value:{addHotkey:e.addHotkey,removeHotkey:e.removeHotkey},children:e.children})}function p(e,t){return e&&t&&"object"==typeof e&&"object"==typeof t?Object.keys(e).length===Object.keys(t).length&&Object.keys(e).reduce((function(n,o){return n&&p(e[o],t[o])}),!0):e===t}var m=e.createContext({hotkeys:[],enabledScopes:[],toggleScope:function(){},enableScope:function(){},disableScope:function(){}}),k=function(){return e.useContext(m)},h=function(e){e.stopPropagation(),e.preventDefault(),e.stopImmediatePropagation()},b="undefined"!=typeof window?e.useLayoutEffect:e.useEffect;exports.HotkeysProvider=function(n){var o=n.initiallyActiveScopes,r=void 0===o?["*"]:o,u=n.children,i=e.useState((null==r?void 0:r.length)>0?r:["*"]),c=i[0],a=i[1],l=e.useState([]),d=l[0],s=l[1],f=e.useCallback((function(e){a((function(t){return t.includes("*")?[e]:Array.from(new Set([].concat(t,[e])))}))}),[]),v=e.useCallback((function(e){a((function(t){return 0===t.filter((function(t){return t!==e})).length?["*"]:t.filter((function(t){return t!==e}))}))}),[]),k=e.useCallback((function(e){a((function(t){return t.includes(e)?0===t.filter((function(t){return t!==e})).length?["*"]:t.filter((function(t){return t!==e})):t.includes("*")?[e]:Array.from(new Set([].concat(t,[e])))}))}),[]),h=e.useCallback((function(e){s((function(t){return[].concat(t,[e])}))}),[]),b=e.useCallback((function(e){s((function(t){return t.filter((function(t){return!p(t,e)}))}))}),[]);return t.jsx(m.Provider,{value:{enabledScopes:c,hotkeys:d,enableScope:f,disableScope:v,toggleScope:k},children:t.jsx(y,{addHotkey:h,removeHotkey:b,children:u})})},exports.isHotkeyPressed=l,exports.useHotkeys=function(t,n,o,r){var a=e.useRef(null),y=e.useRef(!1),m=o instanceof Array?r instanceof Array?void 0:r:o,w=e.useCallback(n,[].concat(o instanceof Array?o:r instanceof Array?r:[])),g=function(t){var n=e.useRef(void 0);return p(n.current,t)||(n.current=t),n.current}(m),C=k().enabledScopes,L=e.useContext(v);return b((function(){if(!1!==(null==g?void 0:g.enabled)&&(n=null==g?void 0:g.scopes,0===(e=C).length&&n?(console.warn('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>'),1):!n||e.some((function(e){return n.includes(e)}))||e.includes("*"))){var e,n,o=function(e,n){var o;void 0===n&&(n=!1),(!f(e,["input","textarea","select"])||f(e,null==g?void 0:g.enableOnFormTags))&&(null===a.current||document.activeElement===a.current||a.current.contains(document.activeElement)?(null==(o=e.target)||!o.isContentEditable||null!=g&&g.enableOnContentEditable)&&i(t,null==g?void 0:g.splitKey).forEach((function(t){var o,r=c(t,null==g?void 0:g.combinationKey);if(function(e,t,n){void 0===n&&(n=!1);var o=t.alt,r=t.meta,i=t.mod,c=t.shift,a=t.ctrl,d=t.keys,s=e.key,f=e.ctrlKey,v=e.metaKey,y=e.shiftKey,p=e.altKey,m=u(e.code),k=s.toLowerCase();if(!n){if(o===!p&&o&&"alt"!==k)return!1;if(c===!y&&c&&"shift"!==k)return!1;if(i){if(!v&&!f)return!1}else{if(r===!v&&r&&"meta"!==k)return!1;if(a===!f&&a&&"ctrl"!==k)return!1}}return!(!d||1!==d.length||!d.includes(k)&&!d.includes(m))||(d?l(d):!d)}(e,r,null==g?void 0:g.ignoreModifiers)||null!=(o=r.keys)&&o.includes("*")){if(n&&y.current)return;if(function(e,t,n){("function"==typeof n&&n(e,t)||!0===n)&&e.preventDefault()}(e,r,null==g?void 0:g.preventDefault),!function(e,t,n){return"function"==typeof n?n(e,t):!0===n||void 0===n}(e,r,null==g?void 0:g.enabled))return void h(e);w(e,r),n||(y.current=!0)}})):h(e))},r=function(e){void 0!==e.key&&(d(u(e.code)),(void 0===(null==g?void 0:g.keydown)&&!0!==(null==g?void 0:g.keyup)||null!=g&&g.keydown)&&o(e))},v=function(e){void 0!==e.key&&(s(u(e.code)),y.current=!1,null!=g&&g.keyup&&o(e,!0))};return(a.current||(null==m?void 0:m.document)||document).addEventListener("keyup",v),(a.current||(null==m?void 0:m.document)||document).addEventListener("keydown",r),L&&i(t,null==g?void 0:g.splitKey).forEach((function(e){return L.addHotkey(c(e,null==g?void 0:g.combinationKey))})),function(){(a.current||(null==m?void 0:m.document)||document).removeEventListener("keyup",v),(a.current||(null==m?void 0:m.document)||document).removeEventListener("keydown",r),L&&i(t,null==g?void 0:g.splitKey).forEach((function(e){return L.removeHotkey(c(e,null==g?void 0:g.combinationKey))}))}}}),[t,w,g,C]),a},exports.useHotkeysContext=k,exports.useRecordHotkeys=function(){var t=e.useState(new Set),n=t[0],o=t[1],r=e.useState(!1),i=r[0],c=r[1],a=e.useCallback((function(e){void 0!==e.key&&(e.preventDefault(),e.stopPropagation(),o((function(t){var n=new Set(t);return n.add(u(e.code)),n})))}),[]),l=e.useCallback((function(){"undefined"!=typeof document&&(document.removeEventListener("keydown",a),c(!1))}),[a]);return[n,{start:e.useCallback((function(){o(new Set),"undefined"!=typeof document&&(l(),document.addEventListener("keydown",a),c(!0))}),[a,l]),stop:l,isRecording:i}]};
1
+ "use strict";var e=require("react"),t=require("react/jsx-runtime");function n(){return(n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}var o=["shift","alt","meta","mod","ctrl"],r={esc:"escape",return:"enter",".":"period",",":"comma","-":"slash"," ":"space","`":"backquote","#":"backslash","+":"bracketright",ShiftLeft:"shift",ShiftRight:"shift",AltLeft:"alt",AltRight:"alt",MetaLeft:"meta",MetaRight:"meta",ControlLeft:"ctrl",ControlRight:"ctrl"};function u(e){return(r[e]||e).trim().toLowerCase().replace("key","").replace("digit","").replace("numpad","").replace("arrow","")}function i(e,t){return void 0===t&&(t=","),"string"==typeof e?e.split(t):e}function c(e,t){void 0===t&&(t="+");var r=e.toLocaleLowerCase().split(t).map((function(e){return u(e)}));return n({},{alt:r.includes("alt"),ctrl:r.includes("ctrl")||r.includes("control"),shift:r.includes("shift"),meta:r.includes("meta"),mod:r.includes("mod")},{keys:r.filter((function(e){return!o.includes(e)}))})}var a=new Set;function l(e,t){return void 0===t&&(t=","),(Array.isArray(e)?e:e.split(t)).every((function(e){return a.has(e.trim().toLowerCase())}))}function d(e){var t=Array.isArray(e)?e:[e];a.has("meta")&&a.forEach((function(e){return!function(e){return o.includes(e)}(e)&&a.delete(e.toLowerCase())})),t.forEach((function(e){return a.add(e.toLowerCase())}))}function s(e){var t=Array.isArray(e)?e:[e];"meta"===e?a.clear():t.forEach((function(e){return a.delete(e.toLowerCase())}))}function f(e,t){var n=e.target;void 0===t&&(t=!1);var o=n&&n.tagName;return t instanceof Array?Boolean(o&&t&&t.some((function(e){return e.toLowerCase()===o.toLowerCase()}))):Boolean(o&&t&&!0===t)}"undefined"!=typeof document&&(document.addEventListener("keydown",(function(e){void 0!==e.key&&d([u(e.key),u(e.code)])})),document.addEventListener("keyup",(function(e){void 0!==e.key&&s([u(e.key),u(e.code)])}))),"undefined"!=typeof window&&window.addEventListener("blur",(function(){a.clear()}));var v=e.createContext(void 0);function y(e){return t.jsx(v.Provider,{value:{addHotkey:e.addHotkey,removeHotkey:e.removeHotkey},children:e.children})}function p(e,t){return e&&t&&"object"==typeof e&&"object"==typeof t?Object.keys(e).length===Object.keys(t).length&&Object.keys(e).reduce((function(n,o){return n&&p(e[o],t[o])}),!0):e===t}var m=e.createContext({hotkeys:[],enabledScopes:[],toggleScope:function(){},enableScope:function(){},disableScope:function(){}}),k=function(){return e.useContext(m)},h=function(e){e.stopPropagation(),e.preventDefault(),e.stopImmediatePropagation()},b="undefined"!=typeof window?e.useLayoutEffect:e.useEffect;exports.HotkeysProvider=function(n){var o=n.initiallyActiveScopes,r=void 0===o?["*"]:o,u=n.children,i=e.useState((null==r?void 0:r.length)>0?r:["*"]),c=i[0],a=i[1],l=e.useState([]),d=l[0],s=l[1],f=e.useCallback((function(e){a((function(t){return t.includes("*")?[e]:Array.from(new Set([].concat(t,[e])))}))}),[]),v=e.useCallback((function(e){a((function(t){return 0===t.filter((function(t){return t!==e})).length?["*"]:t.filter((function(t){return t!==e}))}))}),[]),k=e.useCallback((function(e){a((function(t){return t.includes(e)?0===t.filter((function(t){return t!==e})).length?["*"]:t.filter((function(t){return t!==e})):t.includes("*")?[e]:Array.from(new Set([].concat(t,[e])))}))}),[]),h=e.useCallback((function(e){s((function(t){return[].concat(t,[e])}))}),[]),b=e.useCallback((function(e){s((function(t){return t.filter((function(t){return!p(t,e)}))}))}),[]);return t.jsx(m.Provider,{value:{enabledScopes:c,hotkeys:d,enableScope:f,disableScope:v,toggleScope:k},children:t.jsx(y,{addHotkey:h,removeHotkey:b,children:u})})},exports.isHotkeyPressed=l,exports.useHotkeys=function(t,n,o,r){var a=e.useRef(null),y=e.useRef(!1),m=o instanceof Array?r instanceof Array?void 0:r:o,w=o instanceof Array?o:r instanceof Array?r:void 0,g=e.useCallback(n,null!=w?w:[]),C=e.useRef(g);C.current=w?g:n;var L=function(t){var n=e.useRef(void 0);return p(n.current,t)||(n.current=t),n.current}(m),S=k().enabledScopes,E=e.useContext(v);return b((function(){if(!1!==(null==L?void 0:L.enabled)&&(n=null==L?void 0:L.scopes,0===(e=S).length&&n?(console.warn('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>'),1):!n||e.some((function(e){return n.includes(e)}))||e.includes("*"))){var e,n,o=function(e,n){var o;void 0===n&&(n=!1),(!f(e,["input","textarea","select"])||f(e,null==L?void 0:L.enableOnFormTags))&&(null===a.current||document.activeElement===a.current||a.current.contains(document.activeElement)?(null==(o=e.target)||!o.isContentEditable||null!=L&&L.enableOnContentEditable)&&i(t,null==L?void 0:L.splitKey).forEach((function(t){var o,r=c(t,null==L?void 0:L.combinationKey);if(function(e,t,n){void 0===n&&(n=!1);var o=t.alt,r=t.meta,i=t.mod,c=t.shift,a=t.ctrl,d=t.keys,s=e.key,f=e.ctrlKey,v=e.metaKey,y=e.shiftKey,p=e.altKey,m=u(e.code),k=s.toLowerCase();if(!n){if(o===!p&&"alt"!==k)return!1;if(c===!y&&"shift"!==k)return!1;if(i){if(!v&&!f)return!1}else{if(r===!v&&"meta"!==k)return!1;if(a===!f&&"ctrl"!==k)return!1}}return!(!d||1!==d.length||!d.includes(k)&&!d.includes(m))||(d?l(d):!d)}(e,r,null==L?void 0:L.ignoreModifiers)||null!=(o=r.keys)&&o.includes("*")){if(n&&y.current)return;if(function(e,t,n){("function"==typeof n&&n(e,t)||!0===n)&&e.preventDefault()}(e,r,null==L?void 0:L.preventDefault),!function(e,t,n){return"function"==typeof n?n(e,t):!0===n||void 0===n}(e,r,null==L?void 0:L.enabled))return void h(e);C.current(e,r),n||(y.current=!0)}})):h(e))},r=function(e){void 0!==e.key&&(d(u(e.code)),(void 0===(null==L?void 0:L.keydown)&&!0!==(null==L?void 0:L.keyup)||null!=L&&L.keydown)&&o(e))},v=function(e){void 0!==e.key&&(s(u(e.code)),y.current=!1,null!=L&&L.keyup&&o(e,!0))};return(a.current||(null==m?void 0:m.document)||document).addEventListener("keyup",v),(a.current||(null==m?void 0:m.document)||document).addEventListener("keydown",r),E&&i(t,null==L?void 0:L.splitKey).forEach((function(e){return E.addHotkey(c(e,null==L?void 0:L.combinationKey))})),function(){(a.current||(null==m?void 0:m.document)||document).removeEventListener("keyup",v),(a.current||(null==m?void 0:m.document)||document).removeEventListener("keydown",r),E&&i(t,null==L?void 0:L.splitKey).forEach((function(e){return E.removeHotkey(c(e,null==L?void 0:L.combinationKey))}))}}}),[t,L,S]),a},exports.useHotkeysContext=k,exports.useRecordHotkeys=function(){var t=e.useState(new Set),n=t[0],o=t[1],r=e.useState(!1),i=r[0],c=r[1],a=e.useCallback((function(e){void 0!==e.key&&(e.preventDefault(),e.stopPropagation(),o((function(t){var n=new Set(t);return n.add(u(e.code)),n})))}),[]),l=e.useCallback((function(){"undefined"!=typeof document&&(document.removeEventListener("keydown",a),c(!1))}),[a]);return[n,{start:e.useCallback((function(){o(new Set),"undefined"!=typeof document&&(l(),document.addEventListener("keydown",a),c(!0))}),[a,l]),stop:l,isRecording:i}]};
2
2
  //# sourceMappingURL=react-hotkeys-hook.cjs.production.min.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"react-hotkeys-hook.cjs.production.min.js","sources":["../src/parseHotkeys.ts","../src/isHotkeyPressed.ts","../src/validators.ts","../src/BoundHotkeysProxyProvider.tsx","../src/deepEqual.ts","../src/HotkeysProvider.tsx","../src/useHotkeys.ts","../src/useDeepEqualMemo.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 && (alt && pressedKey !== 'alt')) {\n return false\n }\n\n if (shift === !shiftKey && (shift && 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 && (meta && pressedKey !== 'meta')) {\n return false\n }\n\n if (ctrl === !ctrlKey && (ctrl && 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 { 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 { 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 { 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","return",".",",","-"," ","`","#","+","ShiftLeft","ShiftRight","AltLeft","AltRight","MetaLeft","MetaRight","ControlLeft","ControlRight","mapKey","key","trim","toLowerCase","replace","parseKeysHookInput","keys","splitKey","split","parseHotkey","hotkey","combinationKey","toLocaleLowerCase","map","k","alt","includes","ctrl","shift","meta","mod","filter","currentlyPressedKeys","Set","isHotkeyPressed","Array","isArray","every","has","pushToCurrentlyPressedKeys","hotkeyArray","forEach","isHotkeyModifier","add","removeFromCurrentlyPressedKeys","clear","isHotkeyEnabledOnTag","enabledOnTags","target","targetTagName","tagName","Boolean","some","tag","document","addEventListener","e","undefined","code","window","BoundHotkeysProxyProvider","createContext","BoundHotkeysProxyProviderProvider","_jsx","Provider","value","addHotkey","removeHotkey","children","deepEqual","x","y","Object","length","reduce","isEqual","HotkeysContext","hotkeys","enabledScopes","toggleScope","enableScope","disableScope","useHotkeysContext","useContext","stopPropagation","preventDefault","stopImmediatePropagation","useSafeLayoutEffect","useLayoutEffect","useEffect","initiallyActiveScopes","useState","internalActiveScopes","setInternalActiveScopes","boundHotkeys","setBoundHotkeys","useCallback","scope","prev","from","s","addBoundHotkey","removeBoundHotkey","h","callback","options","dependencies","ref","useRef","hasTriggeredRef","_options","cb","memoisedOptions","current","useDeepEqualMemo","proxy","enabled","scopes","activeScopes","console","warn","listener","isKeyUp","enableOnFormTags","activeElement","contains","_e$target","isContentEditable","enableOnContentEditable","ignoreModifiers","pressedKeyUppercase","ctrlKey","metaKey","shiftKey","altKey","keyCode","pressedKey","isHotkeyMatchingKeyboardEvent","_hotkey$keys","maybePreventDefault","isHotkeyEnabled","handleKeyDown","event","keydown","keyup","handleKeyUp","removeEventListener","setKeys","isRecording","setIsRecording","handler","newKeys","stop","start"],"mappings":"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"}
1
+ {"version":3,"file":"react-hotkeys-hook.cjs.production.min.js","sources":["../src/parseHotkeys.ts","../src/isHotkeyPressed.ts","../src/validators.ts","../src/BoundHotkeysProxyProvider.tsx","../src/deepEqual.ts","../src/HotkeysProvider.tsx","../src/useHotkeys.ts","../src/useDeepEqualMemo.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 { 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 { 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 { 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","return",".",",","-"," ","`","#","+","ShiftLeft","ShiftRight","AltLeft","AltRight","MetaLeft","MetaRight","ControlLeft","ControlRight","mapKey","key","trim","toLowerCase","replace","parseKeysHookInput","keys","splitKey","split","parseHotkey","hotkey","combinationKey","toLocaleLowerCase","map","k","alt","includes","ctrl","shift","meta","mod","filter","currentlyPressedKeys","Set","isHotkeyPressed","Array","isArray","every","has","pushToCurrentlyPressedKeys","hotkeyArray","forEach","isHotkeyModifier","add","removeFromCurrentlyPressedKeys","clear","isHotkeyEnabledOnTag","enabledOnTags","target","targetTagName","tagName","Boolean","some","tag","document","addEventListener","e","undefined","code","window","BoundHotkeysProxyProvider","createContext","BoundHotkeysProxyProviderProvider","_jsx","Provider","value","addHotkey","removeHotkey","children","deepEqual","x","y","Object","length","reduce","isEqual","HotkeysContext","hotkeys","enabledScopes","toggleScope","enableScope","disableScope","useHotkeysContext","useContext","stopPropagation","preventDefault","stopImmediatePropagation","useSafeLayoutEffect","useLayoutEffect","useEffect","initiallyActiveScopes","useState","internalActiveScopes","setInternalActiveScopes","boundHotkeys","setBoundHotkeys","useCallback","scope","prev","from","s","addBoundHotkey","removeBoundHotkey","h","callback","options","dependencies","ref","useRef","hasTriggeredRef","_options","_deps","memoisedCB","cbRef","current","memoisedOptions","useDeepEqualMemo","proxy","enabled","scopes","activeScopes","console","warn","listener","isKeyUp","enableOnFormTags","activeElement","contains","_e$target","isContentEditable","enableOnContentEditable","ignoreModifiers","pressedKeyUppercase","ctrlKey","metaKey","shiftKey","altKey","keyCode","pressedKey","isHotkeyMatchingKeyboardEvent","_hotkey$keys","maybePreventDefault","isHotkeyEnabled","handleKeyDown","event","keydown","keyup","handleKeyUp","removeEventListener","setKeys","isRecording","setIsRecording","handler","newKeys","stop","start"],"mappings":"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"}
@@ -197,10 +197,10 @@ var isHotkeyMatchingKeyboardEvent = function isHotkeyMatchingKeyboardEvent(e, ho
197
197
  var pressedKey = pressedKeyUppercase.toLowerCase();
198
198
  if (!ignoreModifiers) {
199
199
  // We check the pressed keys for compatibility with the keyup event. In keyup events the modifier flags are not set.
200
- if (alt === !altKey && alt && pressedKey !== 'alt') {
200
+ if (alt === !altKey && pressedKey !== 'alt') {
201
201
  return false;
202
202
  }
203
- if (shift === !shiftKey && shift && pressedKey !== 'shift') {
203
+ if (shift === !shiftKey && pressedKey !== 'shift') {
204
204
  return false;
205
205
  }
206
206
  // Mod is a special key name that is checking for meta on macOS and ctrl on other platforms
@@ -209,10 +209,10 @@ var isHotkeyMatchingKeyboardEvent = function isHotkeyMatchingKeyboardEvent(e, ho
209
209
  return false;
210
210
  }
211
211
  } else {
212
- if (meta === !metaKey && meta && pressedKey !== 'meta') {
212
+ if (meta === !metaKey && pressedKey !== 'meta') {
213
213
  return false;
214
214
  }
215
- if (ctrl === !ctrlKey && ctrl && pressedKey !== 'ctrl') {
215
+ if (ctrl === !ctrlKey && pressedKey !== 'ctrl') {
216
216
  return false;
217
217
  }
218
218
  }
@@ -365,8 +365,14 @@ function useHotkeys(keys, callback, options, dependencies) {
365
365
  var ref = useRef(null);
366
366
  var hasTriggeredRef = useRef(false);
367
367
  var _options = !(options instanceof Array) ? options : !(dependencies instanceof Array) ? dependencies : undefined;
368
- var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies : [];
369
- var cb = useCallback(callback, [].concat(_deps));
368
+ var _deps = options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined;
369
+ var memoisedCB = useCallback(callback, _deps != null ? _deps : []);
370
+ var cbRef = useRef(memoisedCB);
371
+ if (_deps) {
372
+ cbRef.current = memoisedCB;
373
+ } else {
374
+ cbRef.current = callback;
375
+ }
370
376
  var memoisedOptions = useDeepEqualMemo(_options);
371
377
  var _useHotkeysContext = useHotkeysContext(),
372
378
  enabledScopes = _useHotkeysContext.enabledScopes;
@@ -405,7 +411,7 @@ function useHotkeys(keys, callback, options, dependencies) {
405
411
  return;
406
412
  }
407
413
  // Execute the user callback for that hotkey
408
- cb(e, hotkey);
414
+ cbRef.current(e, hotkey);
409
415
  if (!isKeyUp) {
410
416
  hasTriggeredRef.current = true;
411
417
  }
@@ -453,7 +459,7 @@ function useHotkeys(keys, callback, options, dependencies) {
453
459
  });
454
460
  }
455
461
  };
456
- }, [keys, cb, memoisedOptions, enabledScopes]);
462
+ }, [keys, memoisedOptions, enabledScopes]);
457
463
  return ref;
458
464
  }
459
465
 
@@ -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 && (alt && pressedKey !== 'alt')) {\n return false\n }\n\n if (shift === !shiftKey && (shift && 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 && (meta && pressedKey !== 'meta')) {\n return false\n }\n\n if (ctrl === !ctrlKey && (ctrl && 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":"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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 '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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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hotkeys-hook",
3
- "version": "4.3.3",
3
+ "version": "4.3.5",
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",
@@ -65,7 +65,7 @@
65
65
  "react-test-renderer": "18.2.0",
66
66
  "tsdx": "0.14.1",
67
67
  "tslib": "2.5.0",
68
- "typescript": "4.9.4"
68
+ "typescript": "4.9.5"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "react": ">=16.8.1",
package/src/useHotkeys.ts CHANGED
@@ -32,9 +32,17 @@ export default function useHotkeys<T extends HTMLElement>(
32
32
  const hasTriggeredRef = useRef(false)
33
33
 
34
34
  const _options: Options | undefined = !(options instanceof Array) ? (options as Options) : !(dependencies instanceof Array) ? (dependencies as Options) : undefined
35
- const _deps: DependencyList = options instanceof Array ? options : dependencies instanceof Array ? dependencies : []
35
+ const _deps: DependencyList | undefined = options instanceof Array ? options : dependencies instanceof Array ? dependencies : undefined
36
+
37
+ const memoisedCB = useCallback(callback, _deps ?? [])
38
+ const cbRef = useRef<HotkeyCallback>(memoisedCB);
39
+
40
+ if(_deps) {
41
+ cbRef.current = memoisedCB;
42
+ } else {
43
+ cbRef.current = callback;
44
+ }
36
45
 
37
- const cb = useCallback(callback, [..._deps])
38
46
  const memoisedOptions = useDeepEqualMemo(_options)
39
47
 
40
48
  const { enabledScopes } = useHotkeysContext()
@@ -79,7 +87,7 @@ export default function useHotkeys<T extends HTMLElement>(
79
87
  }
80
88
 
81
89
  // Execute the user callback for that hotkey
82
- cb(e, hotkey)
90
+ cbRef.current(e, hotkey)
83
91
 
84
92
  if (!isKeyUp) {
85
93
  hasTriggeredRef.current = true
@@ -135,7 +143,7 @@ export default function useHotkeys<T extends HTMLElement>(
135
143
  parseKeysHookInput(keys, memoisedOptions?.splitKey).forEach((key) => proxy.removeHotkey(parseHotkey(key, memoisedOptions?.combinationKey)))
136
144
  }
137
145
  }
138
- }, [keys, cb, memoisedOptions, enabledScopes])
146
+ }, [keys, memoisedOptions, enabledScopes])
139
147
 
140
148
  return ref
141
149
  }
package/src/validators.ts CHANGED
@@ -55,11 +55,11 @@ export const isHotkeyMatchingKeyboardEvent = (e: KeyboardEvent, hotkey: Hotkey,
55
55
 
56
56
  if (!ignoreModifiers) {
57
57
  // We check the pressed keys for compatibility with the keyup event. In keyup events the modifier flags are not set.
58
- if (alt === !altKey && (alt && pressedKey !== 'alt')) {
58
+ if (alt === !altKey && pressedKey !== 'alt') {
59
59
  return false
60
60
  }
61
61
 
62
- if (shift === !shiftKey && (shift && pressedKey !== 'shift')) {
62
+ if (shift === !shiftKey && pressedKey !== 'shift') {
63
63
  return false
64
64
  }
65
65
 
@@ -69,11 +69,11 @@ export const isHotkeyMatchingKeyboardEvent = (e: KeyboardEvent, hotkey: Hotkey,
69
69
  return false
70
70
  }
71
71
  } else {
72
- if (meta === !metaKey && (meta && pressedKey !== 'meta')) {
72
+ if (meta === !metaKey && pressedKey !== 'meta') {
73
73
  return false
74
74
  }
75
75
 
76
- if (ctrl === !ctrlKey && (ctrl && pressedKey !== 'ctrl')) {
76
+ if (ctrl === !ctrlKey && pressedKey !== 'ctrl') {
77
77
  return false
78
78
  }
79
79
  }