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 | 1412x 1412x 15532x 1412x 1412x 1412x 1412x 2824x 1412x 1564x 1412x 1564x 1622x 1412x 14120x 70x 1552x 1670x 7060x 180x 180x 360x 210x 180x 900x 540x 109x 5x 109x 218x 5x 109x 5x 5x 114x 114x 545x 5x 109x 119x 327x 218x 248x 218x 218x 436x 10x 228x 248x 10x 218x 10x 228x 228x 1308x 228x 872x 6x 6x 10x | 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>
);
}
|