All files / src/pages/flowsheet-page/economics/settings-panel/ui fields.tsx

81.63% Statements 80/98
62.5% Branches 60/96
33.33% Functions 5/15
91.93% Lines 57/62

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                                                286x                 286x                       3146x 286x 286x   286x 286x 572x 286x   318x 286x 318x     328x 286x                                       2860x 14x       314x 340x 1430x       34x                             34x 68x     40x 34x           170x 102x       23x                             1x       23x       46x   1x         23x 1x 1x       24x 24x 115x 1x   23x 25x 69x       46x                                         52x   46x   46x 92x     2x 48x 52x 2x 46x 2x       48x 48x 276x 48x 184x                        
import type { FormEvent } from "react";
import { Input } from "@/ahuora-design-system/ui/input";
import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from "@/ahuora-design-system/ui/select";
import { Spinner } from "@/ahuora-design-system/ui/spinner";
import { Textarea } from "@/ahuora-design-system/ui/textarea";
import type { CostIndexSeriesRead } from "@/api/apiStore.gen";
import {
  FieldLabel,
  FieldMeta,
  FormattedNumericInput,
  type NumericInputFormat,
  type TextInputProps,
} from "../../shared/ui/EconomicsFormFields";
import {
  DEFAULT_INDEX_METHOD,
  NONE_SELECT_VALUE,
} from "../model/settingsOptions";
 
export function TextField({
  id,
  label,
  help,
  defaultBadge,
  error,
  value,
  onChange,
  disabled,
  numericFormat = "plain",
  ...inputProps
}: {
  id: string;
  label: string;
  help?: string;
  defaultBadge?: string;
  error?: string;
  value: string;
  onChange: (value: string) => void;
  disabled?: boolean;
  numericFormat?: NumericInputFormat;
} & TextInputProps) {
  const messageId = error ? `${id}-message` : undefined;
  const helpId = help ? `${id}-help` : undefined;
  const numeric =
    inputProps.inputMode === "decimal" || inputProps.type === "number";
  const handleInput = (event: FormEvent<HTMLInputElement>) =>
    onChange(event.currentTarget.value);
  const inputAriaProps = {
    "aria-describedby":
      [helpId, messageId].filter(Boolean).join(" ") || undefined,
    "aria-invalid": Boolean(error),
  };
  return (
    <div className="space-y-2">
      <FieldLabel htmlFor={id} label={label} help={help} />
      {numeric ? (
        <FormattedNumericInput
          id={id}
          value={value}
          disabled={disabled}
          numericFormat={numericFormat}
          onValueChange={onChange}
          {...inputAriaProps}
          {...inputProps}
        />
      ) : (
        <Input
          id={id}
          value={value}
          disabled={disabled}
          onInput={handleInput}
          onChange={handleInput}
          {...inputAriaProps}
          {...inputProps}
        />
      )}
      {help && (
        <div id={helpId} className="sr-only">
          {help}
        </div>
      )}
      <FieldMeta id={messageId} error={error} defaultBadge={defaultBadge} />
    </div>
  );
}
 
export function NotesField({
  id,
  label,
  help,
  value,
  disabled,
  onChange,
}: {
  id: string;
  label: string;
  help?: string;
  value: string;
  disabled?: boolean;
  onChange: (value: string) => void;
}) {
  const handleInput = (event: FormEvent<HTMLTextAreaElement>) =>
    onChange(event.currentTarget.value);
  return (
    <div className="space-y-2">
      <FieldLabel htmlFor={id} label={label} help={help} />
      <Textarea
        id={id}
        value={value}
        disabled={disabled}
        onInput={handleInput}
        onChange={handleInput}
      />
    </div>
  );
}
 
export function InflationMethodSelect({
  value,
  options,
  disabled,
  error,
  onChange,
}: {
  value: string;
  options: { value: string; label: string; badge?: string }[];
  disabled?: boolean;
  error?: string;
  onChange: (value: string) => void;
}) {
  return (
    <div className="space-y-2">
      <FieldLabel
        htmlFor="economics-inflation-method"
        label="Index method"
        help="Uses Stats NZ CPI all groups by default to adjust capital and operating values to the study basis date. Choose another method when a project-specific index, fixed nominal basis, or manual escalation is more suitable."
      />
      <Select
        value={value}
        disabled={disabled}
        onValueChange={(nextValue) => onChange(nextValue)}
      >
        <SelectTrigger
          id="economics-inflation-method"
          aria-label="Index method"
        >
          <SelectValue placeholder="Index method" />
        </SelectTrigger>
        <SelectContent>
          {options.map((option) => (
            <SelectItem key={option.value} value={option.value}>
              {option.label}
            </SelectItem>
          ))}
        </SelectContent>
      </Select>
      <FieldMeta
        error={error}
        defaultBadge={value === DEFAULT_INDEX_METHOD ? "NZ default" : undefined}
      />
    </div>
  );
}
 
export function IndexSeriesSelect({
  id,
  label,
  help,
  value,
  series,
  disabled,
  defaultBadge,
  onChange,
}: {
  id: string;
  label: string;
  help?: string;
  value: string;
  series: CostIndexSeriesRead[];
  disabled?: boolean;
  defaultBadge?: string;
  onChange: (value: string) => void;
}) {
  return (
    <div className="space-y-2">
      <FieldLabel htmlFor={id} label={label} help={help} />
      <Select
        value={value || NONE_SELECT_VALUE}
        disabled={disabled}
        onValueChange={(nextValue) =>
          onChange(nextValue === NONE_SELECT_VALUE ? "" : nextValue)
        }
      >
        <SelectTrigger id={id} aria-label={label}>
          <SelectValue placeholder={label} />
        </SelectTrigger>
        <SelectContent>
          <SelectItem value={NONE_SELECT_VALUE}>No index series</SelectItem>
          {series.map((item) => (
            <SelectItem key={item.id} value={String(item.id)}>
              {item.name}
            </SelectItem>
          ))}
        </SelectContent>
      </Select>
      <FieldMeta defaultBadge={defaultBadge} />
    </div>
  );
}
 
export function LoadingInline({ label }: { label: string }) {
  return (
    <div className="mt-4 flex items-center gap-2 text-sm text-muted-foreground">
      <Spinner size="small" />
      <span>{label}</span>
    </div>
  );
}