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 | 16x 16x 16x 64x 16x 16x 32x 80x 16x 16x 16x 1x 32x 112x 16x 1x 1x 128x 16x 96x 17x 16x 16x 32x 1x 16x 16x 16x 16x 19x 1x 16x 64x 1x 16x 18x 64x 16x 16x 16x 16x 48x 96x 16x 16x 32x 96x 16x 16x 32x 80x 16x 16x 32x 80x 160x 16x 16x 5x 26x 16x 32x 112x 16x 16x 16x 32x 112x 2x 22x 16x 16x 32x 80x 16x 16x 32x 80x 16x 16x 32x 80x 48x 16x 16x 32x 80x 18x 3x 16x 16x 22x 192x | import type { FormEvent, RefObject } from "react";
import { Button } from "@/ahuora-design-system/ui/button";
import { DialogFooter } from "@/ahuora-design-system/ui/dialog";
import { Label } from "@/ahuora-design-system/ui/label";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/ahuora-design-system/ui/select";
import type {
CostCurveDriverSpec,
CostCurveTemplateRead,
UnitOption,
} from "@/api/apiStore.gen";
import { CostBasisEnum, EvaluationKindEnum } from "@/api/apiStore.gen";
import { UnitSelectField } from "../../shared/ui/EconomicsFormFields";
import {
type CostCurveDraft,
costCurveDraftDefaultsFromTemplate,
defaultFormulaSpecs,
} from "../model/payloads";
import type { SaveState } from "../types";
import { PickerField, TextAreaField, TextField } from "../ui/CostCurveFields";
import { WARNING_INVALID_CLASS } from "../ui/constants";
import { FieldError } from "../ui/FieldError";
import { FormState } from "../ui/FormState";
import { DiscreteVariantSummary } from "./DiscreteVariantSummary";
import { DriverSpecEditor } from "./DriverSpecEditor";
import { EvaluationKindField } from "./EvaluationKindField";
import { NO_SUBTYPE_VALUE, primaryFormulaSymbol } from "./helpers";
import { TemplatePicker } from "./TemplatePicker";
type CostCurveMode = "create" | "edit";
export function CostCurveForm({
formRef,
mode,
curveId,
draft,
fieldMessages,
state,
canEdit,
saving,
categoryLabels,
effectiveCategoryOptions,
hideSubtype,
effectiveSubtypeOptions,
templateOptions,
selectedTemplate,
outputUnitOptions,
defaultDriverUnitOptions,
updateDraft,
setSelectedTemplateKey,
onSubmit,
}: {
formRef: RefObject<HTMLFormElement | null>;
mode: CostCurveMode;
curveId?: number;
draft: CostCurveDraft;
fieldMessages: Record<string, string>;
state: SaveState;
canEdit: boolean;
saving: boolean;
categoryLabels: ReadonlyMap<string, string>;
effectiveCategoryOptions: readonly string[];
hideSubtype: boolean;
effectiveSubtypeOptions: readonly string[];
templateOptions: readonly CostCurveTemplateRead[];
selectedTemplate?: CostCurveTemplateRead;
outputUnitOptions: UnitOption[];
defaultDriverUnitOptions: UnitOption[];
updateDraft: (patch: Partial<CostCurveDraft>) => void;
setSelectedTemplateKey: (value: string) => void;
onSubmit: (event: FormEvent<HTMLFormElement>) => void;
}) {
const modeId = `${mode}-${curveId ?? "new"}`;
const copySelectedTemplate = () => {
Iif (!selectedTemplate) return;
updateDraft({
...costCurveDraftDefaultsFromTemplate(selectedTemplate),
basis_date: "",
});
setSelectedTemplateKey(selectedTemplate.value);
};
return (
<form ref={formRef} className="grid gap-4" onSubmit={onSubmit}>
<div className="grid gap-3 md:grid-cols-2">
<TextField
id={`curve-name-${modeId}`}
label="Curve name"
value={draft.name}
error={fieldMessages.name}
onChange={(value) => updateDraft({ name: value })}
/>
<PickerField
id={`curve-category-${modeId}`}
label="Equipment category"
value={draft.equipment_category}
placeholder="Choose category"
options={effectiveCategoryOptions}
optionLabels={categoryLabels}
error={fieldMessages.equipment_category}
onChange={(value) =>
updateDraft({
equipment_category: value,
equipment_subtype: "",
})
}
/>
{!hideSubtype && (
<PickerField
id={`curve-subtype-${modeId}`}
label="Equipment subtype"
value={draft.equipment_subtype}
placeholder="No subtype"
emptyValue={NO_SUBTYPE_VALUE}
options={effectiveSubtypeOptions}
disabled={effectiveSubtypeOptions.length === 0}
error={fieldMessages.equipment_subtype}
onChange={(value) => {
updateDraft({ equipment_subtype: value });
setSelectedTemplateKey("");
}}
/>
)}
<TemplatePicker
mode={mode}
templateOptions={templateOptions}
selectedTemplate={selectedTemplate}
onTemplateChange={setSelectedTemplateKey}
onCopyTemplate={copySelectedTemplate}
/>
<div className="grid gap-2">
<Label htmlFor={`curve-basis-${modeId}`}>Cost basis</Label>
<Select
value={draft.cost_basis}
onValueChange={(value) =>
updateDraft({ cost_basis: value as CostBasisEnum })
}
>
<SelectTrigger
id={`curve-basis-${modeId}`}
aria-describedby={
fieldMessages.cost_basis
? `curve-basis-${modeId}-error`
: undefined
}
aria-invalid={Boolean(fieldMessages.cost_basis)}
className={WARNING_INVALID_CLASS}
>
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value={CostBasisEnum.Purchase}>purchase</SelectItem>
<SelectItem value={CostBasisEnum.Installed}>installed</SelectItem>
</SelectContent>
</Select>
<FieldError
id={`curve-basis-${modeId}-error`}
message={fieldMessages.cost_basis}
/>
</div>
<EvaluationKindField
id={`curve-evaluation-kind-${modeId}`}
value={draft.evaluation_kind}
disabled={draft.discrete_variants.length > 0}
error={fieldMessages.evaluation_kind}
onChange={(value) =>
updateDraft({
evaluation_kind: value,
required_driver_specs:
draft.required_driver_specs.length > 0
? draft.required_driver_specs
: defaultFormulaSpecs(),
})
}
/>
<UnitSelectField
id={`curve-output-unit-${modeId}`}
label="Output unit"
unit={draft.output_unit}
units={outputUnitOptions}
error={fieldMessages.output_unit}
onUnitChange={(value) => updateDraft({ output_unit: value })}
/>
<TextField
id={`curve-min-${modeId}`}
label="Valid minimum"
value={draft.valid_min}
inputMode="decimal"
error={fieldMessages.valid_min}
onChange={(value) => updateDraft({ valid_min: value })}
/>
<TextField
id={`curve-max-${modeId}`}
label="Valid maximum"
value={draft.valid_max}
inputMode="decimal"
error={fieldMessages.valid_max}
onChange={(value) => updateDraft({ valid_max: value })}
/>
</div>
<TextAreaField
id={`curve-expression-text-${modeId}`}
label="Cost expression"
value={draft.expression_text}
placeholder={
selectedTemplate?.expression_text ||
`${primaryFormulaSymbol(draft.required_driver_specs)} * 2500 + 4000`
}
className="[&::placeholder]:!text-neutral-500"
error={fieldMessages.expression_text}
disabled={draft.evaluation_kind === EvaluationKindEnum.DiscreteFamily}
onChange={(value) => updateDraft({ expression_text: value })}
/>
<DriverSpecEditor
modeId={modeId}
specs={draft.required_driver_specs}
defaultUnitOptions={defaultDriverUnitOptions}
discreteFamily={
draft.evaluation_kind === EvaluationKindEnum.DiscreteFamily
}
error={fieldMessages.required_driver_specs}
onChange={(required_driver_specs: CostCurveDriverSpec[]) =>
updateDraft({ required_driver_specs })
}
/>
{draft.evaluation_kind === EvaluationKindEnum.DiscreteFamily && (
<DiscreteVariantSummary
variants={draft.discrete_variants}
error={fieldMessages.discrete_variants}
/>
)}
<TextAreaField
id={`curve-range-note-${modeId}`}
label="Valid range note"
value={draft.valid_range_note}
error={fieldMessages.valid_range_note}
onChange={(value) => updateDraft({ valid_range_note: value })}
/>
<div className="grid gap-3 md:grid-cols-2">
<TextField
id={`curve-source-${modeId}`}
label="Source reference"
value={draft.source_reference}
error={fieldMessages.source_reference}
onChange={(value) => updateDraft({ source_reference: value })}
/>
<TextField
id={`curve-basis-date-${modeId}`}
label="Basis date"
value={draft.basis_date}
type="date"
error={fieldMessages.basis_date}
onChange={(value) => updateDraft({ basis_date: value })}
/>
</div>
<TextAreaField
id={`curve-notes-${modeId}`}
label="Notes"
value={draft.notes}
error={fieldMessages.notes}
onChange={(value) => updateDraft({ notes: value })}
/>
<FormState state={state} />
<DialogFooter>
<Button type="submit" disabled={!canEdit || saving}>
{saving
? mode === "edit"
? "Saving curve"
: "Creating curve"
: mode === "edit"
? "Save curve"
: "Create curve"}
</Button>
</DialogFooter>
</form>
);
}
|