mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
55 lines
No EOL
1.9 KiB
JavaScript
55 lines
No EOL
1.9 KiB
JavaScript
import React from 'react';
|
|
|
|
function isEditingContent(event) {
|
|
var element = event.target;
|
|
var tagName = element.tagName;
|
|
return element.isContentEditable || tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA';
|
|
}
|
|
|
|
export function useDocSearchKeyboardEvents(_ref) {
|
|
var isOpen = _ref.isOpen,
|
|
onOpen = _ref.onOpen,
|
|
onClose = _ref.onClose,
|
|
onInput = _ref.onInput,
|
|
searchButtonRef = _ref.searchButtonRef;
|
|
React.useEffect(function () {
|
|
function onKeyDown(event) {
|
|
var _event$key;
|
|
|
|
function open() {
|
|
// We check that no other DocSearch modal is showing before opening
|
|
// another one.
|
|
if (!document.body.classList.contains('DocSearch--active')) {
|
|
onOpen();
|
|
}
|
|
}
|
|
|
|
if (event.keyCode === 27 && isOpen || // The `Cmd+K` shortcut both opens and closes the modal.
|
|
// We need to check for `event.key` because it can be `undefined` with
|
|
// Chrome's autofill feature.
|
|
// See https://github.com/paperjs/paper.js/issues/1398
|
|
((_event$key = event.key) === null || _event$key === void 0 ? void 0 : _event$key.toLowerCase()) === 'k' && (event.metaKey || event.ctrlKey) || // The `/` shortcut opens but doesn't close the modal because it's
|
|
// a character.
|
|
!isEditingContent(event) && event.key === '/' && !isOpen) {
|
|
event.preventDefault();
|
|
|
|
if (isOpen) {
|
|
onClose();
|
|
} else if (!document.body.classList.contains('DocSearch--active')) {
|
|
open();
|
|
}
|
|
}
|
|
|
|
if (searchButtonRef && searchButtonRef.current === document.activeElement && onInput) {
|
|
if (/[a-zA-Z0-9]/.test(String.fromCharCode(event.keyCode))) {
|
|
onInput(event);
|
|
}
|
|
}
|
|
}
|
|
|
|
window.addEventListener('keydown', onKeyDown);
|
|
return function () {
|
|
window.removeEventListener('keydown', onKeyDown);
|
|
};
|
|
}, [isOpen, onOpen, onClose, onInput, searchButtonRef]);
|
|
} |