All files / src/components/ui/form Select.tsx

95.6% Statements 87/91
67.85% Branches 19/28
94.23% Functions 49/52
95.34% Lines 82/86

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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 50014x 14x 14x 14x 14x 14x 14x 14x                       14x       22x 46x 153x                                                                     14x   14x   2x 2x 2x           10x                 4x             4x                                       2x 2x 2x 2x 2x       2x         2x 2x                 2x                                                   2x 2x 2x           2x       2x       2x       2x               2x               2x                           14x                         14x               14x               14x                 14x       14x                 14x                     14x         61x                     14x                   14x                         14x                 14x       14x 73x     73x 73x 73x               14x       12x                       14x                     14x 1x 1x 1x                                                             14x   42x           243x                     5x         42x 42x 42x   42x       42x         42x 42x                 42x                                                 42x 42x 42x           42x       42x       42x       42x                      
import styled from "styled-components";
import React, { FC, JSX, ReactNode } from "react";
import { setDefault } from "shared/lib/helpers/setDefault";
import { SearchIcon } from "ui/icons/Icons";
import L10NText from "./L10NText";
import API from "renderer/lib/api";
import l10n from "shared/lib/lang/l10n";
import { CreatableSelectWindowed, SelectWindowed } from "./SelectWindowed";
 
export interface Option {
  value: string;
  label: string;
}
 
export interface OptGroup {
  label: string;
  options: Option[];
}
 
export const findSelectOption = <TOption extends Option>(
  options: readonly (TOption | { options: readonly TOption[] })[],
  value: string | undefined,
): TOption | undefined =>
  options
    .flatMap((option) => ("options" in option ? option.options : option))
    .find((option) => option.value === value);
 
interface OptionLabelWithPreviewProps {
  preview: ReactNode;
  info?: ReactNode;
  children: ReactNode;
}
 
interface OptionLabelWithInfoProps {
  info: ReactNode;
  children: ReactNode;
}
 
interface SingleValueWithPreviewProps {
  preview?: ReactNode;
  children: ReactNode;
}
 
interface FormatFolderLabelProps {
  label?: string;
}
 
export interface SelectCommonProps {
  placeholder?: JSX.Element;
  autoFocus?: boolean;
  menuIsOpen?: boolean;
  backspaceRemovesValue?: boolean;
  controlShouldRenderValue?: boolean;
  isClearable?: boolean;
  onBlur?: () => void;
  maxMenuHeight?: number;
  menuPlacement?: "auto" | "bottom" | "top";
  menuPortalTarget?: HTMLElement | null;
}
 
const menuPortalEl = document.getElementById("MenuPortal");
 
export const Select: typeof SelectWindowed = styled(SelectWindowed).attrs(
  (props) => {
    const rowHeight = API.env === "web" && window.innerWidth < 840 ? 38 : 26;
    const groupHeadingHeight = 28.75;
    return {
      className: "CustomSelect",
      classNamePrefix: props.classNamePrefix
        ? `${props.classNamePrefix} CustomSelect`
        : "CustomSelect",
      styles: {
        option: (base) => ({
          ...base,
          height: rowHeight,
        }),
        group: (base) => ({
          ...base,
          paddingTop: 0,
          paddingBottom: 0,
        }),
        groupHeading: (base) => ({
          ...base,
          display: "flex",
          alignItems: "center",
          height: groupHeadingHeight,
          marginBottom: 0,
        }),
        menuList: (base) => ({
          ...base,
          paddingTop: 0,
          paddingBottom: 0,
        }),
      },
      inputId: props.name,
      menuPlacement: props.menuPlacement ?? "auto",
      menuPortalTarget: setDefault(props.menuPortalTarget, menuPortalEl),
      windowThreshold: 0,
    };
  },
)`
  position: relative;
  width: 100%;
  min-width: 78px;
 
  .CustomSelect__control {
    height: 28px;
    min-height: 28px;
    background: ${(props) => props.theme.colors.input.background};
    color: ${(props) => props.theme.colors.input.text};
    border: 1px solid ${(props) => props.theme.colors.input.border};
    font-size: ${(props) => props.theme.typography.fontSize};
    border-radius: ${(props) => props.theme.borderRadius}px;
  }
 
  .CustomSelect__control:hover {
    border: 1px solid ${(props) => props.theme.colors.input.border};
  }
 
  .CustomSelect__control--is-focused {
    outline: none;
    border: 1px solid ${(props) => props.theme.colors.highlight} !important;
    box-shadow: 0 0 0px 2px ${(props) => props.theme.colors.highlight} !important;
    transition: box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.71, 2.65);
  }
 
  .CustomSelect__value-container {
    padding: 0 3px;
  }
 
  .CustomSelect__single-value {
    color: ${(props) => props.theme.colors.input.text};
    width: 100%;
  }
 
  .CustomSelect__placeholder {
    margin: 0;
    margin-left: 2px;
  }
 
  .CustomSelect__indicator-separator {
    display: none;
  }
 
  .CustomSelect__dropdown-indicator {
    padding: 0;
    width: 20px;
    display: flex;
    justify-content: center;
  }
 
  .CustomSelect__dropdown-indicator svg {
    width: 16px;
    height: 16px;
  }
 
  .CustomSelect__menu-list {
    background: ${(props) => props.theme.colors.menu.background};
    color: ${(props) => props.theme.colors.text};
    font-size: ${(props) => props.theme.typography.menuFontSize};
    border-radius: 4px;
  }
 
  .CustomSelect__option {
    padding: 5px 10px;
    background: ${(props) => props.theme.colors.menu.background};
  }
 
  .CustomSelect__option--is-selected {
    color: ${(props) => props.theme.colors.highlight};
  }
 
  .CustomSelect__option--is-focused {
    background: ${(props) => props.theme.colors.menu.hoverBackground};
  }
 
  .CustomSelect__option:active {
    background: ${(props) => props.theme.colors.menu.activeBackground};
  }
 
  &.CustomSelect--is-disabled {
    opacity: 0.5;
  }
 
  .CustomSelect__input {
    color: ${(props) => props.theme.colors.text};
  }
 
  input:focus {
    box-shadow: none !important;
  }
 
  ${() =>
    API.env === "web" &&
    `@media (max-width: 840px) {
    .CustomSelect__control {
      height: 38px;
      font-size: 14px;
    }
 
    .CustomSelect__option {
      padding: 10px;
      font-size: 14px;
    }
  }`}
`;
 
const ValuePreview = styled.div`
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
 
  canvas {
    max-width: 22px;
    max-height: 22px;
  }
`;
 
export const OptionLabelHoverContent = styled.div`
  flex-shrink: 0;
  opacity: 0;
  .CustomSelect__option:hover & {
    opacity: 1;
  }
`;
 
const OptionLabelWithPreviewWrapper = styled.div`
  display: flex;
  white-space: nowrap;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
`;
 
const OptionLabelPreview = styled.div`
  height: 1px;
  margin-right: 2px;
 
  svg {
    max-width: 14px;
  }
`;
 
const OptionLabelPreviewOffset = styled.div`
  transform: translate(-3px, -10px);
`;
 
const OptionLabelWithInfoWrapper = styled.div`
  display: flex;
  white-space: nowrap;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  justify-content: space-between;
`;
 
const OptionLabelInfo = styled.div`
  flex-grow: 1;
  text-align: right;
  opacity: 0.5;
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: no-wrap;
  padding-left: 5px;
`;
 
export const OptionLabelWithPreview: FC<OptionLabelWithPreviewProps> = ({
  preview,
  info,
  children,
}) => (
  <OptionLabelWithPreviewWrapper>
    <OptionLabelPreview>
      <OptionLabelPreviewOffset>
        <ValuePreview>{preview}</ValuePreview>
      </OptionLabelPreviewOffset>
    </OptionLabelPreview>
    {children}
    {info && <OptionLabelInfo>{info}</OptionLabelInfo>}
  </OptionLabelWithPreviewWrapper>
);
 
export const OptionLabelWithInfo: FC<OptionLabelWithInfoProps> = ({
  info,
  children,
}) => (
  <OptionLabelWithInfoWrapper>
    {children}
    <OptionLabelInfo>{info}</OptionLabelInfo>
  </OptionLabelWithInfoWrapper>
);
 
const SingleValueWithPreviewWrapper = styled.div`
  position: absolute;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  display: flex;
  white-space: nowrap;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
`;
 
const SingleValuePreview = styled.div`
  height: 1px;
  margin-right: 2px;
 
  svg {
    max-width: 14px;
  }
`;
 
const SingleValuePreviewOffset = styled.div`
  transform: translate(-3px, -11px);
`;
 
export const FormatFolderLabel = ({ label }: FormatFolderLabelProps) => {
  Iif (!label) {
    return null;
  }
  const filePart = label.replace(/.*[\\/]/g, "");
  const pathPart = label.slice(0, -filePart.length);
  return (
    <span>
      {pathPart.length > 0 && <span>{pathPart}</span>}
      {filePart}
    </span>
  );
};
 
export const SingleValueWithPreview: FC<SingleValueWithPreviewProps> = ({
  preview,
  children,
}) => (
  <SingleValueWithPreviewWrapper>
    {preview && (
      <SingleValuePreview>
        <SingleValuePreviewOffset>
          <ValuePreview>{preview}</ValuePreview>
        </SingleValuePreviewOffset>
      </SingleValuePreview>
    )}
    {children}
  </SingleValueWithPreviewWrapper>
);
 
export const selectMenuStyleProps = {
  autoFocus: true,
  menuIsOpen: true,
  placeholder: <L10NText l10nKey="TOOLBAR_SEARCH" />,
  backspaceRemovesValue: false,
  controlShouldRenderValue: false,
  isClearable: false,
  menuPortalTarget: null,
  components: { DropdownIndicator: () => <SearchIcon /> },
};
 
export const SelectMenu = styled.div`
  background: ${(props) => props.theme.colors.menu.background};
  border-radius: ${(props) => props.theme.borderRadius}px;
  box-shadow: ${(props) => props.theme.colors.menu.boxShadow};
  margin-top: 5px;
  padding-top: 5px;
 
  .CustomSelect__control {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    min-width: 240px;
    margin: 5px;
    margin-top: 0;
 
    svg {
      width: 12px;
      height: 12px;
      margin-right: 5px;
      fill: #999;
    }
  }
 
  .CustomSelect__menu {
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
    position: static;
    box-shadow: none;
    background-color: transparent;
  }
`;
 
export const CreatableSelect: typeof CreatableSelectWindowed = styled(
  CreatableSelectWindowed,
).attrs((props) => ({
  className: "CustomSelect",
  classNamePrefix: props.classNamePrefix
    ? `${props.classNamePrefix} CustomSelect`
    : "CustomSelect",
  styles: {
    option: (base) => ({
      ...base,
      height: 26,
    }),
  },
  inputId: props.name,
  menuPlacement: "auto",
  menuPortalTarget: setDefault(props.menuPortalTarget, menuPortalEl),
  windowThreshold: 0,
  formatCreateLabel:
    props.formatCreateLabel ??
    ((inputValue: string) => l10n("FIELD_CREATE_NAMED", { name: inputValue })),
}))`
  .CustomSelect__control {
    height: 28px;
    min-height: 28px;
    background: ${(props) => props.theme.colors.input.background};
    color: ${(props) => props.theme.colors.input.text};
    border: 1px solid ${(props) => props.theme.colors.input.border};
    font-size: 11px;
    border-radius: ${(props) => props.theme.borderRadius}px;
  }
 
  .CustomSelect__control:hover {
    border: 1px solid ${(props) => props.theme.colors.input.border};
  }
 
  .CustomSelect__control--is-focused {
    outline: none;
    border: 1px solid ${(props) => props.theme.colors.highlight} !important;
    box-shadow: 0 0 0px 2px ${(props) => props.theme.colors.highlight} !important;
    transition: box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.71, 2.65);
  }
 
  .CustomSelect__value-container {
    padding: 0 3px;
  }
 
  .CustomSelect__single-value {
    color: ${(props) => props.theme.colors.input.text};
  }
 
  .CustomSelect__placeholder {
    margin: 0;
    margin-left: 2px;
  }
 
  .CustomSelect__indicator-separator {
    display: none;
  }
 
  .CustomSelect__dropdown-indicator {
    padding: 0;
    width: 20px;
    display: flex;
    justify-content: center;
  }
 
  .CustomSelect__dropdown-indicator svg {
    width: 16px;
    height: 16px;
  }
 
  .CustomSelect__menu-list {
    background: ${(props) => props.theme.colors.menu.background};
    color: ${(props) => props.theme.colors.text};
    font-size: ${(props) => props.theme.typography.menuFontSize};
    border-radius: 4px;
  }
 
  .CustomSelect__option {
    padding: 5px 10px;
    background: ${(props) => props.theme.colors.menu.background};
  }
 
  .CustomSelect__option--is-selected {
    color: ${(props) => props.theme.colors.highlight};
  }
 
  .CustomSelect__option--is-focused {
    background: ${(props) => props.theme.colors.menu.hoverBackground};
  }
 
  .CustomSelect__option:active {
    background: ${(props) => props.theme.colors.menu.activeBackground};
  }
 
  &.CustomSelect--is-disabled {
    opacity: 0.5;
  }
 
  input:focus {
    box-shadow: none !important;
  }
`;