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

78.57% Statements 33/42
70.31% Branches 45/64
71.42% Functions 10/14
81.08% Lines 30/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 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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333                                                                                                                                          447x 447x 447x             447x     447x   447x       447x 447x 447x               447x 2x 2x 2x     2x       447x 3x 3x 3x 2x       447x 10324x       447x                                                       422x                                                                                                                                                                 447x                         156x         447x 419x 11162x             152x           3x                                                                                                                                            
import React, { ChangeEvent, useState, useMemo, CSSProperties } from "react";
import { DoubleDropDownIcon, SearchEmptyStateIcon } from "@assets/icons";
import { EmptyState } from "@common/EmptyState";
import {
  Input,
  InputAdornment,
  InputProps,
  ListSubheader,
  MenuProps,
  useTheme,
} from "@mui/material";
import Stack from "@mui/material/Stack";
import TextField, { TextFieldProps } from "@mui/material/TextField";
import { palette } from "@palette";
import { CaretDownIcon, CaretUpIcon, MagnifyingGlassIcon } from "@phosphor-icons/react";
import { SelectItem, SelectItemProps } from "./SelectItem";
import { SelectOptionProps } from "./types";
import useSearchbar from "./useSearchbar";
import { TruncateText } from "@common/Text";
 
export type SelectProps = TextFieldProps & {
  options: SelectOptionProps[] | undefined;
  label?: string | React.ReactNode;
  width?: string | number;
  DropIcon?: JSX.Element;
  withSearchBar?: boolean;
  shouldDisplayIcon?: boolean;
  customOptionItem?: React.FC<{ option: SelectOptionProps }>;
  selectItemProps?: Omit<SelectItemProps, "value">;
  sxMenu?: MenuProps["sx"];
  handleDeselect?: () => void;
  onOpen?: () => void;
  MenuProps?: Partial<MenuProps>;
  noWrapper?: boolean;
  focusViewColor?: string;
  isOptionNonClickable?: boolean;
  isOpen?: (open: boolean) => void;
  isCaretIcon?: boolean;
  handleSearch?: (newValue: string) => void;
  SearchInputProps?: Partial<InputProps>;
  styleMenu?: CSSProperties;
  disabled?: boolean;
};
 
export default function Select({
  options = [],
  label,
  value,
  DropIcon,
  fullWidth,
  withSearchBar,
  shouldDisplayIcon = true,
  customOptionItem: CustomOptionItem,
  selectItemProps,
  sxMenu,
  handleDeselect,
  onOpen,
  MenuProps,
  noWrapper = false,
  focusViewColor,
  onScroll,
  isOptionNonClickable,
  isOpen,
  isCaretIcon,
  handleSearch,
  SearchInputProps,
  styleMenu,
  ...props
}: SelectProps) {
  const { sx, SelectProps, ...rest } = props;
  const [open, setOpen] = useState(false);
  const theme = useTheme();
 
  const {
    query,
    options: searchOptions,
    onSearch,
    resetOptions,
  } = useSearchbar({ initialOptions: options, customSearch: handleSearch });
 
  const filteredOptions =
    !withSearchBar || handleSearch ? options : searchOptions;
 
  const onChange = (e: ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
    onSearch(e.target.value);
  };
 
  const showCustomIcon = !SelectProps?.IconComponent;
  const CarretIcon = open ? CaretUpIcon : CaretDownIcon;
  const CustomIconComponent = isCaretIcon ? (
    <CarretIcon size={28} fill="#8F8F8F" />
  ) : DropIcon ? (
    DropIcon
  ) : (
    <DoubleDropDownIcon />
  );
 
  const handleOpenMenu = () => {
    Iif (props?.disabled || isOptionNonClickable) return;
    if (isOpen) isOpen(true);
    Iif (onOpen) {
      onOpen();
    } else {
      setOpen(true);
    }
  };
 
  const closeMenu = () => {
    resetOptions();
    setOpen(false);
    if (isOpen) {
      isOpen(false);
    }
  };
 
  const isEmptyList = useMemo(() => {
    return filteredOptions.filter((o) => !o?.hidden).length === 0;
  }, [filteredOptions]);
 
  const CustomTextFiled = (
    <TextField
      data-testid={`${label}-select-input`}
      select
      value={value || ""}
      variant="outlined"
      label={label}
      sx={{
        "& .MuiSelect-select.MuiInputBase-input.MuiOutlinedInput-input": {
          padding: theme.spacing(0.1),
          background: "inherit",
          ...(label && { paddingTop: "15px" }),
        },
        "& .MuiFilledInput-root": {
          "&:hover": {
            backgroundColor: "inherit",
          },
        },
 
        ...sx,
      }}
      fullWidth={fullWidth}
      SelectProps={{
        open,
        onClose: closeMenu,
        onOpen: handleOpenMenu,
        ...SelectProps,
        ...(showCustomIcon && {
          IconComponent: () =>
            shouldDisplayIcon ? (
              <InputAdornment
                position="end"
                onClick={handleOpenMenu}
                sx={{
                  cursor: props?.disabled ? "default" : "pointer",
                  pointerEvents: props?.disabled ? "none" : "initial",
                }}
              >
                {CustomIconComponent}
              </InputAdornment>
            ) : null,
        }),
        sx: {
          ...(focusViewColor && {
            "& .MuiInputBase-root": {
              border: `2px solid ${focusViewColor} !important`,
              transition: "border 250ms ease",
            },
          }),
          ...sx,
          width: value === "unassigned" ? "fit-content" : "auto",
          ".MuiSelect-outlined .MuiStack-root": {
            cursor:
              (filteredOptions?.length || 0) > 1
                ? "pointer !important"
                : "default !important",
          },
        },
        MenuProps: {
          PaperProps: {
            sx: {
              maxHeight: 250,
              maxWidth: 250,
              ...sxMenu,
            },
            style: { paddingTop: 0, ...styleMenu },
            onScroll: onScroll,
          },
          sx: {
            ...(shouldDisplayIcon === false && {
              display: "none",
            }),
          },
          ...MenuProps,
        },
      }}
      {...rest}
    >
      {withSearchBar ? (
        <SearchInput onChange={onChange} {...SearchInputProps} />
      ) : null}
      {withSearchBar && query && isEmptyList ? (
        <EmptyState
          Icon={<SearchEmptyStateIcon width={48} height={48} />}
          title={{
            main: `No results for "${query}"`,
          }}
          customSize={{
            main: {
              fontSize: "14px",
              lineHeight: "16.8px",
            },
            secondary: {},
          }}
          sx={{
            paddingBlock: "48px",
          }}
        />
      ) : (
        renderOptions(filteredOptions, CustomOptionItem, {
          selectItemProps,
          value,
          handleDeselect: () => {
            setOpen(false);
            if (handleDeselect) handleDeselect();
          },
        })
      )}
    </TextField>
  );
  return noWrapper ? (
    CustomTextFiled
  ) : (
    <Stack width={fullWidth ? "100%" : "auto"}>{CustomTextFiled}</Stack>
  );
}
 
type Params = {
  selectItemProps?: Omit<SelectItemProps, "value">;
  value: unknown;
  handleDeselect: VoidFunction;
};
 
const renderOptions = (
  options?: SelectOptionProps[],
  CustomOptionItem?: React.FC<{ option: SelectOptionProps }>,
  params?: Params,
) => {
  if (!options?.length) return null;
  return options?.map((option) => (
    <SelectItem
      data-testid={`${option.value}-item`}
      key={option.value}
      value={option.value}
      helperText={option.helperText}
      disabled={option.disabled}
      hidden={option.hidden}
      sx={(theme) => ({
        "& div": {
          color: theme.palette.neutral[800],
        },
      })}
      onClick={() => {
        Iif (option?.onClick) {
          option.onClick();
        }
      }}
      {...params?.selectItemProps}
    >
      <Stack
        gap={1}
        direction="row"
        alignItems="center"
        color={palette.black[100]}
        fontWeight={400}
        fontSize="14px"
      >
        {CustomOptionItem ? (
          <CustomOptionItem
            option={{
              ...option,
              selected: params?.value === option.value,
              handleDeselect: params?.handleDeselect,
            }}
          />
        ) : (
          <>
            {option.startIcon}
            <TruncateText lineClamp={1} onHoverShowAll>
              {option.label}
            </TruncateText>
            {option.endIcon}
          </>
        )}
      </Stack>
    </SelectItem>
  ));
};
 
function SearchInput({ onChange, onClick, ...props }: InputProps) {
  return (
    <ListSubheader style={{ padding: 0, lineHeight: "inherit" }}>
      <Input
        {...props}
        startAdornment={
          <InputAdornment
            sx={{
              pl: "13px",
            }}
            position="start"
          >
            <MagnifyingGlassIcon fill="#8F8F8F" size={20} />
          </InputAdornment>
        }
        placeholder="Search"
        onChange={onChange}
        onClick={(e) => undefined} // disable close menu when clicking
        fullWidth
        sx={{
          lineHeight: "inherit",
          height: "44px",
          "& .MuiInputBase-input:placeholder-shown": {
            color: "#8F8F8F",
            fontSize: "14px",
          },
          "& .MuiOutlinedInput-notchedOutline": {
            border: "none",
          },
        }}
      />
    </ListSubheader>
  );
}