Parcourir la source

Improve keyboard handling

Use keyboard shortcut on toggling maskedtextinput visibility.
master
TheoryOfNekomata il y a 11 mois
Parent
révision
12ec7d4207
1 fichiers modifiés avec 15 ajouts et 1 suppressions
  1. +15
    -1
      categories/freeform/react/src/components/MaskedTextInput/index.tsx

+ 15
- 1
categories/freeform/react/src/components/MaskedTextInput/index.tsx Voir le fichier

@@ -60,6 +60,7 @@ export const MaskedTextInput = React.forwardRef<
style, style,
length, length,
disabled, disabled,
onKeyUp,
...etcProps ...etcProps
}: MaskedTextInputProps, }: MaskedTextInputProps,
forwardedRef, forwardedRef,
@@ -70,6 +71,17 @@ export const MaskedTextInput = React.forwardRef<
const id = idProp ?? defaultId; const id = idProp ?? defaultId;
const [visible, setVisible] = React.useState(false); const [visible, setVisible] = React.useState(false);


const handleKeyUp: React.KeyboardEventHandler<MaskedTextInputDerivedElement> = React.useCallback((e) => {
if (e.ctrlKey && e.code === 'Space') {
setVisible((prev) => !prev);
}
onKeyUp?.(e);
}, [onKeyUp]);

const handleToggleVisible = React.useCallback(() => {
setVisible((prev) => !prev);
}, []);

return ( return (
<div <div
className={clsx( className={clsx(
@@ -121,6 +133,7 @@ export const MaskedTextInput = React.forwardRef<
aria-labelledby={labelId} aria-labelledby={labelId}
type={!visible ? 'password' : 'text'} type={!visible ? 'password' : 'text'}
data-testid="input" data-testid="input"
onKeyUp={handleKeyUp}
className={clsx( className={clsx(
'bg-negative rounded-inherit w-full peer block font-inherit', 'bg-negative rounded-inherit w-full peer block font-inherit',
'focus:outline-0', 'focus:outline-0',
@@ -188,6 +201,7 @@ export const MaskedTextInput = React.forwardRef<
disabled={disabled} disabled={disabled}
type="button" type="button"
data-testid="indicator" data-testid="indicator"
tabIndex={-1}
className={clsx( className={clsx(
'text-center z-[1] focus:outline-0 flex items-center justify-center aspect-square absolute bottom-0 right-0 select-none text-primary group-focus-within:text-secondary', 'text-center z-[1] focus:outline-0 flex items-center justify-center aspect-square absolute bottom-0 right-0 select-none text-primary group-focus-within:text-secondary',
{ {
@@ -196,7 +210,7 @@ export const MaskedTextInput = React.forwardRef<
'w-16': size === 'large', 'w-16': size === 'large',
}, },
)} )}
onClick={() => { setVisible((b) => !b); }}
onClick={handleToggleVisible}
> >
<svg <svg
className="w-6 h-6 fill-none stroke-current stroke-2 linejoin-round linecap-round" className="w-6 h-6 fill-none stroke-current stroke-2 linejoin-round linecap-round"


Chargement…
Annuler
Enregistrer