UNPKG

@wordpress/components

Version:
90 lines (83 loc) 2.26 kB
import { createElement, Fragment } from "@wordpress/element"; /** * WordPress dependencies */ import { useRef, Children } from '@wordpress/element'; import { useKeyboardShortcut } from '@wordpress/compose'; /** * Internal dependencies */ function KeyboardShortcut(_ref) { let { target, callback, shortcut, bindGlobal, eventName } = _ref; useKeyboardShortcut(shortcut, callback, { bindGlobal, target, eventName }); return null; } /** * `KeyboardShortcuts` is a component which handles keyboard sequences during the lifetime of the rendering element. * * When passed children, it will capture key events which occur on or within the children. If no children are passed, events are captured on the document. * * It uses the [Mousetrap](https://craig.is/killing/mice) library to implement keyboard sequence bindings. * * ```jsx * import { KeyboardShortcuts } from '@wordpress/components'; * import { useState } from '@wordpress/element'; * * const MyKeyboardShortcuts = () => { * const [ isAllSelected, setIsAllSelected ] = useState( false ); * const selectAll = () => { * setIsAllSelected( true ); * }; * * return ( * <div> * <KeyboardShortcuts * shortcuts={ { * 'mod+a': selectAll, * } } * /> * [cmd/ctrl + A] Combination pressed? { isAllSelected ? 'Yes' : 'No' } * </div> * ); * }; * ``` */ function KeyboardShortcuts(_ref2) { let { children, shortcuts, bindGlobal, eventName } = _ref2; const target = useRef(null); const element = Object.entries(shortcuts !== null && shortcuts !== void 0 ? shortcuts : {}).map(_ref3 => { let [shortcut, callback] = _ref3; return createElement(KeyboardShortcut, { key: shortcut, shortcut: shortcut, callback: callback, bindGlobal: bindGlobal, eventName: eventName, target: target }); }); // Render as non-visual if there are no children pressed. Keyboard // events will be bound to the document instead. if (!Children.count(children)) { return createElement(Fragment, null, element); } return createElement("div", { ref: target }, element, children); } export default KeyboardShortcuts; //# sourceMappingURL=index.js.map