All files / src/components/forms TextGotoSelect.tsx

24.32% Statements 9/37
0% Branches 0/12
0% Functions 0/11
22.22% Lines 8/36

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 1562x             2x 2x 2x 2x 2x                           2x         2x                                                                                                                                                                                                                                                          
import React, {
  useEffect,
  useMemo,
  useRef,
  useState,
  useCallback,
} from "react";
import l10n from "shared/lib/lang/l10n";
import styled from "styled-components";
import { FormField, FormRow } from "ui/form/layout/FormLayout";
import { NumberInput } from "ui/form/NumberInput";
import { ToggleButtonGroup } from "ui/form/ToggleButtonGroup";
 
interface TextGotoValue {
  offsetX: number;
  offsetY: number;
  relative: boolean;
}
 
interface TextGotoSelectProps {
  value: TextGotoValue;
  onChange: (newValue: TextGotoValue) => void;
  onBlur: () => void;
}
 
const Form = styled.form`
  min-width: 200px;
  padding-top: 5px;
`;
 
export const TextGotoSelect = ({
  value,
  onChange,
  onBlur,
}: TextGotoSelectProps) => {
  const [internalValue, setValue] = useState(value);
  const timerRef = useRef<ReturnType<typeof setTimeout> | undefined>(undefined);
 
  const options = useMemo(
    () => [
      {
        value: false,
        label: l10n("FIELD_SET_TO"),
      },
      {
        value: true,
        label: l10n("FIELD_MOVE_BY"),
      },
    ],
    [],
  );
 
  const debouncedLeave = useCallback(() => {
    if (timerRef.current) {
      clearTimeout(timerRef.current);
    }
    timerRef.current = setTimeout(() => {
      onChange(internalValue);
      onBlur();
    }, 250);
  }, [internalValue, onBlur, onChange]);
 
  useEffect(() => {
    return () => {
      // Cleanup timer
      if (timerRef.current) {
        clearTimeout(timerRef.current);
      }
    };
  }, []);
 
  const onFocus = useCallback(() => {
    if (timerRef.current) {
      clearTimeout(timerRef.current);
    }
  }, []);
 
  const onFocusOut = useCallback(
    (event: React.FocusEvent<HTMLFormElement, Element>) => {
      if (event.currentTarget.contains(event.relatedTarget)) {
        return;
      }
      debouncedLeave();
    },
    [debouncedLeave],
  );
 
  const onChangeRelative = useCallback(
    (newRelative: boolean) => {
      setValue({
        ...internalValue,
        relative: newRelative,
      });
    },
    [internalValue],
  );
 
  const onChangeX = useCallback(
    (event: React.ChangeEvent<HTMLInputElement>) => {
      setValue({
        ...internalValue,
        offsetX: parseInt(event.currentTarget.value, 10),
      });
    },
    [internalValue],
  );
 
  const onChangeY = useCallback(
    (event: React.ChangeEvent<HTMLInputElement>) => {
      setValue({
        ...internalValue,
        offsetY: parseInt(event.currentTarget.value, 10),
      });
    },
    [internalValue],
  );
 
  return (
    <Form onFocus={onFocus} onBlur={onFocusOut}>
      <FormRow>
        <ToggleButtonGroup
          name="relative"
          value={internalValue.relative}
          options={options}
          onChange={onChangeRelative}
        />
      </FormRow>
      <FormRow>
        <FormField name="gotoX" label={l10n("FIELD_X")}>
          <NumberInput
            id="gotoX"
            name="gotoX"
            autoFocus
            placeholder="x"
            min={internalValue.relative ? -32 : 0}
            max={32}
            value={internalValue.offsetX}
            onChange={onChangeX}
          />
        </FormField>
        <FormField name="gotoY" label={l10n("FIELD_Y")}>
          <NumberInput
            id="gotoY"
            name="gotoY"
            placeholder="y"
            min={internalValue.relative ? -32 : 0}
            max={32}
            value={internalValue.offsetY}
            onChange={onChangeY}
          />
        </FormField>
      </FormRow>
    </Form>
  );
};