disable keycode back in text area

This commit is contained in:
zeppi 2022-02-04 23:36:08 -05:00 committed by jessopb
parent 9a5f69f0eb
commit 629b928c80
2 changed files with 27 additions and 4 deletions

View file

@ -0,0 +1,20 @@
import { useEffect, useState } from 'react';
export const useActiveElement = () => {
const [active, setActive] = useState(document.activeElement);
const handleFocus = (e) => {
setActive(document.activeElement);
};
useEffect(() => {
document.addEventListener('focusin', handleFocus);
document.addEventListener('focusout', handleFocus);
return () => {
document.removeEventListener('focusin', handleFocus);
document.removeEventListener('focusout', handleFocus);
};
}, []);
return active;
};

View file

@ -1,8 +1,9 @@
import { useEffect } from 'react';
import { useActiveElement } from './use-active-element';
export default function useHistoryNav(history) {
const el = useActiveElement(); // disable if we're in a textarea.
useEffect(() => {
const handleKeyPress = e => {
const handleKeyPress = (e) => {
if ((e.metaKey || e.altKey) && !e.ctrlKey && !e.shiftKey) {
switch (e.code) {
case 'ArrowLeft':
@ -19,7 +20,9 @@ export default function useHistoryNav(history) {
}
}
};
if (!el.type || (el.type && !el.type.startsWith('text'))) {
window.addEventListener('keydown', handleKeyPress);
}
return () => window.removeEventListener('keydown', handleKeyPress);
}, []);
}, [el]);
}