All files / src/components/common/Input Input.tsx

87.09% Statements 27/31
74.19% Branches 46/62
80% Functions 8/10
89.28% Lines 25/28

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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261                                                172x                               3571x 3571x 3571x 3571x     3571x   3571x     8x 8x     3571x     4x 4x     3571x                                         1x                                                                                                                                                 9x 9x                                                                                                           172x               2834x 2834x 2834x 2834x         2988x                       106x 106x   106x                                    
import * as React from "react";
import { palette } from "@palette";
import { useFormContext, Controller } from "react-hook-form";
import { TextFieldProps, TextField, Box, InputAdornment, Stack } from "@mui/material";
import { Text } from "@common/Text";
import { VisaLogo } from "@assets/logos";
import { Tooltip, TooltipProps } from "@common/Tooltip/Tooltip";
import { capitalizeEachWord } from "@utils/index";
 
export type InputProps = TextFieldProps & {
  label?: string | React.ReactNode;
  size?: "small" | "medium";
  error?: boolean;
  inputPrefix?: string | JSX.Element;
  inputSuffix?: string | React.ReactNode;
  paymentTag?: "visa";
  startIcon?: React.ReactNode;
  endIcon?: React.ReactNode;
  currency?: "usd";
  tooltipProps?: TooltipProps;
  onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
  focusViewColor?: string;
};
 
export const Input: React.FC<InputProps> = ({
  label,
  size = "medium",
  error,
  inputPrefix,
  inputSuffix,
  paymentTag,
  startIcon,
  endIcon,
  currency,
  tooltipProps,
  fullWidth,
  onKeyDown,
  focusViewColor,
  ...rest
}) => {
  const [isFocused, setIsFocused] = React.useState(false);
  const [currentValue, setCurrentValue] = React.useState<string>("");
  const [isAutofill, setIsAutofill] = React.useState<boolean>(false);
  const elementRef = React.useRef<HTMLInputElement>(null);
 
  const shrinkLabel =
    isFocused || Boolean(currentValue) || Boolean(rest.value) || isAutofill;
 
  const handleFocus = (
    event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement, Element>,
  ) => {
    setIsFocused(true);
    if (rest.onFocus) rest.onFocus(event);
  };
 
  const handleBlur = (
    event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement, Element>,
  ) => {
    setIsFocused(false);
    Eif (rest.onBlur) rest.onBlur(event);
  };
 
  return (
    <Box
      display="flex"
      flexDirection="row"
      alignItems="center"
      width={fullWidth ? "100%" : "auto"}
      gap="4px"
    >
      <TextField
        label={label}
        error={error}
        size={size}
        value={currentValue}
        onAnimationStartCapture={(e) => {
          if (e.animationName === "onAutoFillStart") {
            setIsAutofill(true);
          }
        }}
        onAnimationEndCapture={() => {
          setIsAutofill(false);
        }}
        onChange={(e) => setCurrentValue(e.target.value)}
        InputProps={{
          ...((startIcon || inputPrefix) && {
            startAdornment: (
              <InputAdornment position="start">
                {startIcon}
                {shrinkLabel && inputPrefix && (
                  <Text
                    color={palette.neutral[400]}
                    sx={{
                      mr: "0 !important",
                      mt: "16px",
                    }}
                  >
                    {inputPrefix}
                  </Text>
                )}
              </InputAdornment>
            ),
          }),
          ...((paymentTag || currency || endIcon || inputSuffix) && {
            endAdornment: (
              <InputAdornment position="end">
                {shrinkLabel && inputSuffix && (
                  <Text
                    color={palette.neutral[400]}
                    sx={{
                      mr: "2px !important",
                      mt: "16px",
                    }}
                  >
                    {inputSuffix}
                  </Text>
                )}
                {paymentTag === "visa" && <VisaLogo />}
                <Text
                  fontWeight="medium"
                  fontSize="14px"
                  lineHeight="17px"
                  color={palette.gray.main}
                  sx={{ textTransform: "uppercase" }}
                  className="MuiInputBase-currencyIcon"
                >
                  {currency}
                </Text>
                {typeof endIcon === "string" ? (
                  <Text
                    fontWeight="medium"
                    fontSize="14px"
                    lineHeight="17px"
                    color={isFocused ? palette.black[200] : palette.gray.main}
                  >
                    {endIcon}
                  </Text>
                ) : (
                  endIcon
                )}
              </InputAdornment>
            ),
          }),
          ...rest.InputProps,
        }}
        inputProps={{
          "data-testid": `custom-${label}-input`,
          ...rest.inputProps,
        }}
        {...rest}
        helperText={
          rest?.helperText == null ? null : rest?.helperText?.toString()
        }
        inputRef={rest.inputRef ? rest.inputRef : elementRef}
        fullWidth={fullWidth}
        onKeyDown={(e) => {
          e.stopPropagation();
          Iif (onKeyDown) onKeyDown(e);
        }}
        onBlur={handleBlur}
        onFocus={handleFocus}
        InputLabelProps={{
          variant: "filled",
          shrink: shrinkLabel,
          sx: {
            ...(startIcon && {
              left: "30px",
            }),
          },
        }}
        sx={{
          ...(focusViewColor && {
            "& .MuiInputBase-root": {
              border: `2px solid ${focusViewColor} !important`,
              transition: "border 250ms ease",
            },
          }),
          ...(!label && {
            "& .MuiInputBase-root textarea": {
              marginTop: 0,
            },
            "& .MuiInputBase-input": {
              marginTop: "0 !important",
            },
          }),
          ...rest.sx,
        }}
      />
      {tooltipProps?.title && tooltipProps?.children && (
        <Box
          sx={{
            ...(error && { paddingBottom: "14px" }),
          }}
        >
          <Tooltip {...tooltipProps} />
        </Box>
      )}
    </Box>
  );
};
type NormalizeInputFunction = (VAL: string) => string;
export type RHFInputProps = InputProps & {
  name: string;
  helper?: string | JSX.Element | any;
  shouldCapitalizeEachWord?: boolean;
  focusViewColor?: string;
  handleNormalizeInput?: NormalizeInputFunction;
  maxLength?: number;
  isRebranded?: boolean;
};
 
export const RHFInput: React.FC<RHFInputProps> = ({
  name,
  helper,
  shouldCapitalizeEachWord,
  handleNormalizeInput,
  maxLength,
  ...props
}) => {
  const { control } = useFormContext();
  const { label, ...restOfProps } = props;
  const newProps = props.isRebranded ? restOfProps : props;
  return (
    <Controller
      name={name}
      control={control}
      render={({ field: { ref, value, ...rest }, fieldState: { error } }) => {
        return (
          <Stack gap={1}>
            {props.isRebranded && <Text>{props.label}</Text>}
            <Input
              inputRef={ref}
              {...rest}
              error={!!error}
              value={
                shouldCapitalizeEachWord ? capitalizeEachWord(value) : value
              }
              helperText={helper || error?.message}
              onChange={(e) => {
                const value = e.target.value;
                const newValue = maxLength ? value?.slice(0, maxLength) : value;
 
                rest?.onChange({
                  ...e,
                  target: {
                    ...e.target,
                    value: handleNormalizeInput
                      ? handleNormalizeInput(newValue)
                      : newValue,
                  },
                });
              }}
              {...newProps}
            />
          </Stack>
        );
      }}
    />
  );
};