All files / src/pages/flowsheet-page/flowsheet/PropertiesSidebar/MachineLearning ColumnMappings.tsx

73.84% Statements 48/65
68.18% Branches 30/44
95.23% Functions 20/21
72.58% Lines 45/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 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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388                                                                                          21x 21x 21x     21x   21x   21x 21x   21x 21x   63x   21x 63x   21x   63x   21x 21x     21x   21x   21x     14x   14x                 21x 1x                                                                 1x 1x             1x 6x 2x 3x                 1x 6x 2x 3x                   1x                             1x                             1x                                     21x                                                                   126x                                                                                                                           96x 144x   96x                             78x 78x   78x                                                                 1352x                                                            
import { useMemo, useState } from "react";
import { toast } from "sonner";
import { Button } from "@/ahuora-design-system/ui/button";
import { ScrollArea } from "@/ahuora-design-system/ui/scroll-area";
import {
  Select,
  SelectContent,
  SelectGroup,
  SelectItem,
  SelectSeparator,
  SelectTrigger,
  SelectValue,
} from "@/ahuora-design-system/ui/select";
import { Separator } from "@/ahuora-design-system/ui/separator";
import { Spinner } from "@/ahuora-design-system/ui/spinner";
import { Tabs, TabsList, TabsTrigger } from "@/ahuora-design-system/ui/tabs";
import {
  PropertyTypeEnum,
  useCoreMlCreateSurrogateModelCreateMutation,
  useCoreMlcolumnmappingBulkCreateColumnMappingCreateMutation,
  useCoreMlGetCsvHeaderRetrieveQuery,
} from "@/api/apiStore.gen";
import objs from "@/data/objects.json";
import { useMLTrainRefresh } from "@/hooks/cache/useMLTrainRefresh";
import { useAvailableStreamConnections } from "@/hooks/connections";
import { useFlowsheetAccess } from "@/hooks/flowsheetAccess";
import { useFlowsheetPorts } from "@/hooks/flowsheetObjects";
import type { CsvHeaderPreviewState } from "./UploadCSV";
 
type ColumnMapping = {
  [key: string]: {
    type: PropertyTypeEnum | undefined;
    portIndex: number | undefined;
    propertyKey: string | undefined;
  };
};
 
interface ColumnMappingsProps {
  modelId: number;
  simulationObject: number;
  csvFileName?: string;
  csvHeaderPreview?: CsvHeaderPreviewState | null;
}
 
export default function ColumnMappings(props: ColumnMappingsProps) {
  const access = useFlowsheetAccess();
  const canMutate = access?.can_edit ?? true;
  const { data: csv_header, isLoading } = useCoreMlGetCsvHeaderRetrieveQuery({
    model: props.modelId,
  });
  const { refreshMLTrainDependencies } = useMLTrainRefresh();
  const [bulkCreateMappings] =
    useCoreMlcolumnmappingBulkCreateColumnMappingCreateMutation();
  const { availableInletStreams, availableOutletStreams } =
    useAvailableStreamConnections();
  const ports = useFlowsheetPorts();
 
  const [trainModel] = useCoreMlCreateSurrogateModelCreateMutation();
  const inletPorts = ports?.filter(
    (port) =>
      port.unitOp === props.simulationObject && port.direction === "inlet",
  );
  const inletStreams = availableOutletStreams.filter((stream) =>
    inletPorts?.find((port) => port.stream === stream.id),
  );
  const outletPorts = ports?.filter(
    (port) =>
      port.unitOp === props.simulationObject && port.direction === "outlet",
  );
  const outletStreams = availableInletStreams.filter((stream) =>
    outletPorts?.find((port) => port.stream === stream.id),
  );
 
  const [values, setValues] = useState<ColumnMapping>();
  const resolvedHeaders =
    csv_header?.headers ?? props.csvHeaderPreview?.headers ?? [];
  const isUsingPreviewHeaders =
    !csv_header?.headers?.length && resolvedHeaders.length > 0;
 
  function handleValueChange(param): void {
    const { columnIndex, key, value } = JSON.parse(param);
 
    setValues((val) => ({
      ...val,
      [columnIndex]: {
        ...(values?.[columnIndex] || {}),
        [key]: value,
      },
    }));
  }
 
  const properties = useMemo(() => {
    return Object.entries(objs.stream.properties);
  }, []);
 
  function getTaskErrorMessage(error: unknown) {
    if (typeof error === "string" && error.length > 0) {
      return error;
    }
 
    if (
      error &&
      typeof error === "object" &&
      "message" in error &&
      typeof error.message === "string" &&
      error.message.length > 0
    ) {
      return error.message;
    }
 
    return "Machine learning training did not start successfully.";
  }
 
  async function handleSave() {
    if (!canMutate) {
      return;
    }
    if (!csv_header?.headers?.length) {
      toast.error("CSV headers are still loading", {
        description:
          "Wait for the backend-confirmed headers before saving column mappings.",
      });
      return;
    }
 
    const length = csv_header.headers.length;
    const valueEntries = Object.entries(values || {});
    if (valueEntries.length !== length) {
      toast.error("Please complete mappings", {
        description: "Some column mapping is missing",
      });
      return;
    }
    const inletValues = valueEntries
      .filter(([, value]) => value.type === PropertyTypeEnum.InletProperty)
      .sort((a, b) => +a[0] - +b[0])
      .map(([key, value]) => ({
        propertyKey:
          value.portIndex === -1
            ? csv_header?.headers[+key]
            : value.propertyKey,
        portIndex: value.portIndex,
        column: csv_header?.headers[+key],
      }));
 
    const outletValues = valueEntries
      .filter(([, value]) => value.type === PropertyTypeEnum.OutletProperty)
      .sort((a, b) => +a[0] - +b[0])
      .map(([key, value]) => ({
        propertyKey:
          value.portIndex === -1
            ? csv_header?.headers[+key]
            : value.propertyKey,
        portIndex: value.portIndex,
        column: csv_header?.headers[+key],
      }));
 
    try {
      const res = await bulkCreateMappings({
        bulkCreateColumnMapping: {
          model: props.modelId,
          inlet_mappings: inletValues,
          outlet_mappings: outletValues,
        },
      });
 
      if (res.error) {
        toast.error("Error", {
          description: "Failed to save column mappings",
        });
        return;
      }
 
      const trainResult = await trainModel({
        createSurrogateModelFromColumn: {
          model: props.modelId,
        },
      });
 
      if ("error" in trainResult && trainResult.error) {
        refreshMLTrainDependencies();
        toast.error("Training failed", {
          description: "Machine learning training could not be started.",
        });
        return;
      }
 
      const trainingTask =
        "data" in trainResult &&
        trainResult.data &&
        typeof trainResult.data === "object"
          ? (trainResult.data as { status?: string; error?: unknown })
          : null;
 
      if (trainingTask?.status === "failed") {
        refreshMLTrainDependencies();
        toast.error("Training failed", {
          description: getTaskErrorMessage(trainingTask.error),
        });
      }
    } catch (err) {
      toast.error("Error", {
        description: "Something went wrong during the process",
      });
    }
  }
 
  return (
    <ScrollArea className="h-full">
      <div className="flex flex-col gap-4">
        <div className="flex flex-col gap-2">
          <h1>Column mapping</h1>
          <p className="text-sm">Map columns to according properties</p>
          {props.csvFileName && (
            <p className="text-sm text-muted-foreground">
              Uploaded file: {props.csvFileName}
            </p>
          )}
          {props.csvHeaderPreview?.delimiter && (
            <p className="text-xs text-muted-foreground">
              Detected delimiter: {props.csvHeaderPreview.delimiter}
            </p>
          )}
          {props.csvHeaderPreview?.warnings?.map((warning) => (
            <p key={warning} className="text-xs text-muted-foreground">
              {warning}
            </p>
          ))}
          {isUsingPreviewHeaders && (
            <p className="text-xs text-muted-foreground">
              Showing the local header preview while the backend-confirmed
              headers load.
            </p>
          )}
        </div>
        <Separator />
        <div className="flex flex-col gap-3">
          <h1>Columns</h1>
          <div className="w-max flex flex-col gap-3">
            {!isLoading || resolvedHeaders.length > 0 ? (
              resolvedHeaders.map((column, column_index) => (
                <div
                  key={`${column}_input`}
                  className="flex w-full items-center gap-7"
                >
                  <p className="w-[150px]">{column}</p>
                  <Tabs
                    onValueChange={handleValueChange}
                    className="w-max rounded-lg overflow-hidden"
                  >
                    <TabsList className="grid w-full grid-cols-2">
                      <TabsTrigger
                        value={JSON.stringify({
                          columnIndex: column_index,
                          key: "type",
                          value: PropertyTypeEnum.InletProperty,
                        })}
                        aria-label={`input-${column}`}
                        disabled={!canMutate}
                      >
                        Input
                      </TabsTrigger>
                      <TabsTrigger
                        value={JSON.stringify({
                          columnIndex: column_index,
                          key: "type",
                          value: PropertyTypeEnum.OutletProperty,
                        })}
                        aria-label={`output-${column}`}
                        disabled={!canMutate}
                      >
                        Output
                      </TabsTrigger>
                    </TabsList>
                  </Tabs>
                  <Select
                    onValueChange={handleValueChange}
                    required
                    disabled={!canMutate}
                  >
                    <SelectTrigger
                      className="w-[180px]"
                      aria-label={`select-source-${column}`}
                    >
                      <SelectValue placeholder="Select source" />
                    </SelectTrigger>
                    <SelectContent>
                      <SelectGroup>
                        <SelectItem
                          value={JSON.stringify({
                            columnIndex: column_index,
                            key: "portIndex",
                            value: -1,
                          })}
                          ariaLabel={`custom-property-${column}`}
                          disabled={!canMutate}
                        >
                          Make custom property
                        </SelectItem>
                        <SelectSeparator />
                        {values?.[column_index]?.type ===
                        PropertyTypeEnum.InletProperty
                          ? inletStreams.map((item) => {
                              const portIndex = inletPorts?.find(
                                (port) => port.stream === item.id,
                              ).index;
                              return (
                                <SelectItem
                                  key={item.id}
                                  value={JSON.stringify({
                                    columnIndex: column_index,
                                    key: "portIndex",
                                    value: portIndex,
                                  })}
                                  ariaLabel={`${item.componentName}-${column}`}
                                >
                                  {item.componentName}
                                </SelectItem>
                              );
                            })
                          : outletStreams.map((item) => {
                              const portIndex = outletPorts?.find(
                                (port) => port.stream === item.id,
                              ).index;
                              return (
                                <SelectItem
                                  key={item.id}
                                  value={JSON.stringify({
                                    columnIndex: column_index,
                                    key: "portIndex",
                                    value: portIndex,
                                  })}
                                  ariaLabel={`${item.componentName}-${column}`}
                                >
                                  {item.componentName}
                                </SelectItem>
                              );
                            })}
                      </SelectGroup>
                    </SelectContent>
                  </Select>
 
                  {values?.[column_index]?.portIndex !== -1 && (
                    <Select
                      onValueChange={handleValueChange}
                      required
                      disabled={!canMutate}
                    >
                      <SelectTrigger
                        className="w-[150px]"
                        aria-label={`select-property-${column}`}
                      >
                        <SelectValue placeholder="Select property" />
                      </SelectTrigger>
                      <SelectContent>
                        <SelectGroup>
                          {properties.map(([key, value], index) => (
                            <SelectItem
                              key={key + index}
                              value={JSON.stringify({
                                columnIndex: column_index,
                                key: "propertyKey",
                                value: key,
                              })}
                              ariaLabel={`${value.displayName}-${column}`}
                            >
                              {value.displayName}
                            </SelectItem>
                          ))}
                        </SelectGroup>
                      </SelectContent>
                    </Select>
                  )}
                </div>
              ))
            ) : (
              <Spinner className="icon-large mt-5" />
            )}
          </div>
        </div>
        <Button className="mt-4" onClick={handleSave} disabled={!canMutate}>
          Next
        </Button>
      </div>
    </ScrollArea>
  );
}