UNPKG

@blueprintjs/core

Version:
104 lines 5.08 kB
/* * Copyright 2021 Palantir Technologies, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import * as React from "react"; import { HOTKEYS_PROVIDER_NOT_FOUND } from "../../common/errors"; import { elementIsTextInput } from "../../common/utils/domUtils"; import { comboMatches, getKeyCombo, parseKeyCombo } from "../../components/hotkeys/hotkeyParser"; import { HotkeysContext } from "../../context"; /** * React hook to register global and local hotkeys for a component. * * @see https://blueprintjs.com/docs/#core/hooks/use-hotkeys * @param keys list of hotkeys to configure * @param options hook options */ export function useHotkeys(keys, options = {}) { const { document = getDefaultDocument(), showDialogKeyCombo = "?" } = options; const localKeys = React.useMemo(() => keys .filter(k => !k.global) .map(k => ({ combo: parseKeyCombo(k.combo), config: k, })), [keys]); const globalKeys = React.useMemo(() => keys .filter(k => k.global) .map(k => ({ combo: parseKeyCombo(k.combo), config: k, })), [keys]); // register keys with global context const [state, dispatch] = React.useContext(HotkeysContext); React.useEffect(() => { if (!state.hasProvider) { console.warn(HOTKEYS_PROVIDER_NOT_FOUND); } }, [state.hasProvider]); // we can still bind the hotkeys if there is no HotkeysProvider, they just won't show up in the dialog React.useEffect(() => { const payload = [...globalKeys.map(k => k.config), ...localKeys.map(k => k.config)]; dispatch({ type: "ADD_HOTKEYS", payload }); return () => dispatch({ type: "REMOVE_HOTKEYS", payload }); }, [dispatch, globalKeys, localKeys]); const invokeNamedCallbackIfComboRecognized = React.useCallback((global, combo, callbackName, e) => { const isTextInput = elementIsTextInput(e.target); for (const key of global ? globalKeys : localKeys) { const { allowInInput = false, disabled = false, preventDefault = false, stopPropagation = false, } = key.config; const shouldIgnore = (isTextInput && !allowInInput) || disabled; if (!shouldIgnore && comboMatches(key.combo, combo)) { if (preventDefault) { e.preventDefault(); } if (stopPropagation) { // set a flag just for unit testing. not meant to be referenced in feature work. e.isPropagationStopped = true; e.stopPropagation(); } key.config[callbackName]?.(e); } } }, [globalKeys, localKeys]); const handleGlobalKeyDown = React.useCallback((e) => { // special case for global keydown: if '?' is pressed, open the hotkeys dialog const combo = getKeyCombo(e); const isTextInput = elementIsTextInput(e.target); if (!isTextInput && comboMatches(parseKeyCombo(showDialogKeyCombo), combo)) { dispatch({ type: "OPEN_DIALOG" }); } else { invokeNamedCallbackIfComboRecognized(true, getKeyCombo(e), "onKeyDown", e); } }, [dispatch, invokeNamedCallbackIfComboRecognized, showDialogKeyCombo]); const handleGlobalKeyUp = React.useCallback((e) => invokeNamedCallbackIfComboRecognized(true, getKeyCombo(e), "onKeyUp", e), [invokeNamedCallbackIfComboRecognized]); const handleLocalKeyDown = React.useCallback((e) => invokeNamedCallbackIfComboRecognized(false, getKeyCombo(e.nativeEvent), "onKeyDown", e.nativeEvent), [invokeNamedCallbackIfComboRecognized]); const handleLocalKeyUp = React.useCallback((e) => invokeNamedCallbackIfComboRecognized(false, getKeyCombo(e.nativeEvent), "onKeyUp", e.nativeEvent), [invokeNamedCallbackIfComboRecognized]); React.useEffect(() => { // document is guaranteed to be defined inside effects document.addEventListener("keydown", handleGlobalKeyDown); document.addEventListener("keyup", handleGlobalKeyUp); return () => { document.removeEventListener("keydown", handleGlobalKeyDown); document.removeEventListener("keyup", handleGlobalKeyUp); }; }, [handleGlobalKeyDown, handleGlobalKeyUp]); return { handleKeyDown: handleLocalKeyDown, handleKeyUp: handleLocalKeyUp }; } function getDefaultDocument() { if (typeof window === "undefined") { return undefined; } return window.document; } //# sourceMappingURL=useHotkeys.js.map