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

0% Statements 0/19
0% Branches 0/16
0% Functions 0/3
0% Lines 0/17

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                                                                                                           
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;
}
 
export const AppSelect: FC<AppSelectProps> = ({ value, onChange }) => {
  const options = ([] as Option[]).concat(
    [
      {
        value: "choose",
        label: l10n("FIELD_CHOOSE_APPLICATION"),
      },
      {
        value: "",
        label: l10n("FIELD_SYSTEM_DEFAULT"),
      },
    ],
    value
      ? {
          value,
          label: Path.basename(value),
        }
      : []
  );
 
  const currentValue =
    options.find((option) => option.value === value) || options[0];
 
  const onSelectOption = async (newValue: SingleValue<Option>) => {
    Iif (newValue) {
      if (newValue.value === "choose") {
        const path = await API.dialog.chooseFile();
        Iif (path) {
          const newPath = Path.normalize(path);
          onChange?.(newPath);
        }
      } else {
        onChange?.(newValue.value);
      }
    }
  };
 
  return (
    <Select options={options} value={currentValue} onChange={onSelectOption} />
  );
};