All files / src/components/forms TextGotoSelect.tsx

0% Statements 0/38
0% Branches 0/8
0% Functions 0/11
0% Lines 0/37

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                                                                                                                                                                                                                                                                                                             
import React, { useEffect, useMemo, useRef, useState } from "react";
import { 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";
 
export 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>>();
 
  const options = useMemo(
    () => [
      {
        value: false,
        label: l10n("FIELD_SET_TO"),
      },
      {
        value: true,
        label: l10n("FIELD_MOVE_BY"),
      },
    ],
    []
  );
 
  const debouncedLeave = useCallback(() => {
    Iif (timerRef.current) {
      clearTimeout(timerRef.current);
    }
    timerRef.current = setTimeout(() => {
      onChange(internalValue);
      onBlur();
    }, 250);
  }, [internalValue, onBlur, onChange]);
 
  useEffect(() => {
    return () => {
      // Cleanup timer
      Iif (timerRef.current) {
        clearTimeout(timerRef.current);
      }
    };
  }, []);
 
  const onFocus = useCallback(() => {
    Iif (timerRef.current) {
      clearTimeout(timerRef.current);
    }
  }, []);
 
  const onFocusOut = useCallback(
    (event: React.FocusEvent<HTMLFormElement, Element>) => {
      Iif (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>
  );
};