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

0% Statements 0/20
0% Branches 0/21
0% Functions 0/4
0% Lines 0/18

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                                                                                                                         
import React, { FC } from "react";
import Path from "path";
import { Select, Option } from "./Select";
import l10n from "shared/lib/lang/l10n";
import API from "renderer/lib/api";
import { SingleValue } from "react-select";
 
interface AppSelectProps {
  value?: string;
  onChange?: (newValue: string) => void;
  presetOptions?: Option[];
}
 
export const AppSelect: FC<AppSelectProps> = ({
  value,
  onChange,
  presetOptions = [
    {
      value: "",
      label: l10n("FIELD_SYSTEM_DEFAULT"),
    },
  ],
}) => {
  const options = ([] as Option[]).concat(
    [
      {
        value: "choose",
        label: l10n("FIELD_CHOOSE_APPLICATION"),
      },
      ...presetOptions,
    ],
    value && !presetOptions.some((option) => option.value === value)
      ? {
          value,
          label: Path.basename(value),
        }
      : [],
  );
 
  const currentValue =
    options.find((option) => option.value === value) || options[0];
 
  const onSelectOption = async (newValue: SingleValue<Option>) => {
    if (newValue) {
      if (newValue.value === "choose") {
        const path = await API.dialog.chooseFile();
        if (path) {
          const newPath = Path.normalize(path);
          onChange?.(newPath);
        }
      } else {
        onChange?.(newValue.value);
      }
    }
  };
 
  return (
    <Select options={options} value={currentValue} onChange={onSelectOption} />
  );
};