All files / src/components/Autocomplete Autocomplete.tsx

0% Statements 0/21
0% Branches 0/33
0% Functions 0/7
0% Lines 0/20

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                                                                                                                                                                                                                                                                                                                                           
import { Box, Autocomplete as MUIAutocomplete, SxProps, TextField, TooltipProps } from '@mui/material';
import React, { ChangeEvent } from 'react';
import Icon from '../Icon/Icon';
import IconTooltip from '../IconTooltip';
import { DropdownItem as Option } from '../types';
import '../Select/styles.scss';
import './styles.scss';
 
export type ValueType = string | Option | undefined;
 
export interface Props {
  onChange: (value: ValueType) => void;
  options: ValueType[];
  id?: string;
  label?: string;
  selected?: ValueType;
  filterOptions?: (options: ValueType[], state: object) => ValueType[];
  freeSolo?: boolean;
  disabled?: boolean;
  className?: string;
  hideClearIcon?: boolean;
  isEqual?: (option: ValueType, value: ValueType) => void;
  placeholder?: string;
  errorText?: string;
  tooltipTitle?: TooltipProps['title'];
  required?: boolean;
  noOptionsText?: string;
  loading?: boolean;
  loadingText?: string;
  open?: boolean;
  onOpen?: (event: React.SyntheticEvent) => void;
  onClose?: (event: React.SyntheticEvent) => void;
  sx?: SxProps;
  renderOption?: (props: React.HTMLAttributes<HTMLLIElement>, option: ValueType) => React.ReactNode;
}
 
const isEmpty = (value: unknown) => ['', undefined].includes(value as string | undefined);
 
export default function Autocomplete({
  id,
  label,
  options,
  onChange,
  selected,
  filterOptions,
  freeSolo,
  disabled,
  className,
  hideClearIcon,
  isEqual,
  placeholder,
  errorText,
  tooltipTitle,
  required,
  noOptionsText,
  loading,
  loadingText,
  open,
  onOpen,
  onClose,
  sx,
  renderOption,
}: Props): JSX.Element {
  const onChangeHandler = (event: ChangeEvent<any>, value: string | null) => {
    if (event) {
      if (value) {
        onChange(value);
      } else {
        onChange('');
      }
    }
  };
 
  const renderInput = (params: object) => (
    <Box className={`auto-complete ${className}`} sx={sx}>
      {label && (
        <label htmlFor={id} className='textfield-label'>
          {label} {required ? '*' : ''}
          {tooltipTitle && <IconTooltip placement='top' title={tooltipTitle} />}
        </label>
      )}
      <TextField
        {...params}
        variant='outlined'
        size='small'
        placeholder={placeholder}
        className={errorText ? 'auto-complete--error' : ''}
      />
      {errorText && (
        <div className='textfield-label-container'>
          <Icon name='error' className='textfield-error-text--icon' />
          <label htmlFor={id} className='textfield-error-text'>
            {errorText}
          </label>
        </div>
      )}
    </Box>
  );
 
  const optionalArgs: any = {};
 
  if (hideClearIcon) {
    optionalArgs.clearIcon = null;
  }
 
  if (isEqual) {
    optionalArgs.isOptionEqualToValue = isEqual;
  } else {
    optionalArgs.isOptionEqualToValue = (option: unknown, value: unknown) =>
      option === value || (isEmpty(option) && isEmpty(value));
  }
 
  return (
    <MUIAutocomplete
      disabled={disabled}
      id={id}
      options={options}
      getOptionLabel={(option: any) => {
        if (typeof option === 'object') {
          return option.label ?? '';
        }
 
        return option ?? '';
      }}
      onChange={onChangeHandler}
      onInputChange={(event: any, value: any) => freeSolo && onChangeHandler(event, value)}
      value={selected}
      filterOptions={filterOptions}
      freeSolo={freeSolo}
      forcePopupIcon={true}
      renderInput={renderInput}
      aria-required={required}
      noOptionsText={noOptionsText}
      loading={loading}
      loadingText={loadingText}
      open={open}
      onOpen={onOpen}
      onClose={onClose}
      popupIcon={
        <Icon
          name={loading ? 'spinner' : open ? 'chevronUp' : 'chevronDown'}
          className='auto-complete--icon-right'
          size='medium'
        />}
      classes={{
        paper: 'auto-complete select',
        listbox: 'options-container',
      }}
      sx={{
        '& .MuiAutocomplete-popupIndicator:hover': {
          background: 'transparent',
        },
        '& .MuiAutocomplete-popupIndicator': {
          background: 'transparent',
          transform: 'none',
        },
        '& .MuiTouchRipple-root': {
          display: 'none',
        },
      }}
      {...optionalArgs}
      renderOption={renderOption}
    />
  );
}