343 lines
11 KiB
TypeScript
343 lines
11 KiB
TypeScript
"use client";
|
|
// /components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx
|
|
import React from "react";
|
|
import DateRangePicker from "./DateRangePicker";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import { RootState } from "@/redux/store";
|
|
import {
|
|
setLoopMeasurementCurveChartData,
|
|
setSelectedMode,
|
|
setSelectedSlotType,
|
|
setChartOpen,
|
|
setLoading,
|
|
} from "@/redux/slices/kabelueberwachungChartSlice";
|
|
import { setBrushRange } from "@/redux/slices/brushSlice";
|
|
import { setChartTitle } from "@/redux/slices/loopChartTypeSlice";
|
|
import { Listbox } from "@headlessui/react";
|
|
|
|
//-----------------------------------------------------------------------------------useLoopChartLoader
|
|
export const useLoopChartLoader = () => {
|
|
const dispatch = useDispatch();
|
|
const { vonDatum, bisDatum, selectedMode, selectedSlotType, slotNumber } =
|
|
useSelector((state: RootState) => state.kabelueberwachungChartSlice);
|
|
const hasShownNoDataAlert = React.useRef(false);
|
|
|
|
const formatDate = (dateString: string) => {
|
|
const [year, month, day] = dateString.split("-");
|
|
return `${year};${month};${day}`;
|
|
};
|
|
|
|
const getApiUrl = (
|
|
mode: "DIA0" | "DIA1" | "DIA2",
|
|
type: number,
|
|
slotNumber: number
|
|
) => {
|
|
const typeFolder =
|
|
type === 3 ? "isolationswiderstand" : "schleifenwiderstand";
|
|
|
|
let url: string;
|
|
|
|
if (process.env.NODE_ENV === "development") {
|
|
url = `/api/cpl/slotDataAPIHandler?slot=${slotNumber}&messart=${typeFolder}&dia=${mode}&vonDatum=${vonDatum}&bisDatum=${bisDatum}`;
|
|
} else {
|
|
url = `${window.location.origin}/CPL?seite.ACP&${mode}=${formatDate(
|
|
vonDatum
|
|
)};${formatDate(bisDatum)};${slotNumber};${type};`;
|
|
}
|
|
|
|
console.log("API URL:", url); // Hier wird die URL in der Konsole ausgegeben
|
|
return url;
|
|
};
|
|
|
|
const loadLoopChartData = async () => {
|
|
const type = selectedSlotType === "schleifenwiderstand" ? 4 : 3;
|
|
if (slotNumber === null) return;
|
|
|
|
dispatch(setLoading(true));
|
|
dispatch(setChartOpen(false));
|
|
dispatch(setLoopMeasurementCurveChartData([]));
|
|
|
|
const startTime = Date.now();
|
|
const MIN_LOADING_TIME_MS = 1000;
|
|
|
|
try {
|
|
const apiUrl = getApiUrl(selectedMode, type, slotNumber);
|
|
const response = await fetch(apiUrl);
|
|
const data = await response.json();
|
|
|
|
const waitTime = Math.max(
|
|
0,
|
|
MIN_LOADING_TIME_MS - (Date.now() - startTime)
|
|
);
|
|
await new Promise((res) => setTimeout(res, waitTime));
|
|
|
|
if (Array.isArray(data) && data.length > 0) {
|
|
dispatch(setLoopMeasurementCurveChartData(data));
|
|
dispatch(setChartOpen(true));
|
|
} else {
|
|
dispatch(setLoopMeasurementCurveChartData([]));
|
|
dispatch(setChartOpen(false));
|
|
if (!hasShownNoDataAlert.current) {
|
|
alert("⚠️ Keine Messdaten im gewählten Zeitraum gefunden");
|
|
hasShownNoDataAlert.current = true; // ⬅️ Nur einmal zeigen
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.error("❌ Fehler beim Laden:", err);
|
|
alert("❌ Fehler beim Laden.");
|
|
} finally {
|
|
dispatch(setLoading(false));
|
|
}
|
|
};
|
|
|
|
return { loadLoopChartData };
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------------LoopChartActionBar
|
|
const LoopChartActionBar: React.FC = () => {
|
|
const dispatch = useDispatch();
|
|
|
|
const {
|
|
vonDatum,
|
|
bisDatum,
|
|
selectedMode,
|
|
selectedSlotType,
|
|
|
|
slotNumber,
|
|
|
|
isLoading,
|
|
} = useSelector((state: RootState) => state.kabelueberwachungChartSlice);
|
|
|
|
const getApiUrl = (
|
|
mode: "DIA0" | "DIA1" | "DIA2",
|
|
type: number,
|
|
slotNumber: number
|
|
) => {
|
|
const typeFolder =
|
|
type === 3 ? "isolationswiderstand" : "schleifenwiderstand";
|
|
|
|
const baseUrl =
|
|
process.env.NODE_ENV === "development"
|
|
? `/api/cpl/slotDataAPIHandler?slot=${slotNumber}&messart=${typeFolder}&dia=${mode}&vonDatum=${vonDatum}&bisDatum=${bisDatum}`
|
|
: `${window.location.origin}/CPL?seite.ACP&${mode}=${formatDate(
|
|
vonDatum
|
|
)};${formatDate(bisDatum)};${slotNumber};${type};`;
|
|
console.log("baseUrl", baseUrl);
|
|
|
|
return baseUrl;
|
|
};
|
|
|
|
const formatDate = (dateString: string) => {
|
|
const [year, month, day] = dateString.split("-");
|
|
return `${year};${month};${day}`;
|
|
};
|
|
|
|
const handleFetchData = async () => {
|
|
const type = selectedSlotType === "schleifenwiderstand" ? 4 : 3;
|
|
|
|
if (slotNumber === null) {
|
|
alert("⚠️ Bitte zuerst einen Steckplatz auswählen!");
|
|
return;
|
|
}
|
|
|
|
const apiUrl = getApiUrl(selectedMode, type, slotNumber);
|
|
if (!apiUrl) return;
|
|
|
|
dispatch(setLoading(true));
|
|
dispatch(setChartOpen(false));
|
|
dispatch(setLoopMeasurementCurveChartData([]));
|
|
|
|
const MIN_LOADING_TIME_MS = 1000;
|
|
const startTime = Date.now();
|
|
|
|
try {
|
|
const response = await fetch(apiUrl, {
|
|
method: "GET",
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
|
|
if (!response.ok) throw new Error(`Fehler: ${response.status}`);
|
|
|
|
const jsonData = await response.json();
|
|
const elapsedTime = Date.now() - startTime;
|
|
const waitTime = Math.max(0, MIN_LOADING_TIME_MS - elapsedTime);
|
|
await new Promise((resolve) => setTimeout(resolve, waitTime));
|
|
//------------------------
|
|
console.log("▶️ Lade Daten für:");
|
|
console.log(" Slot:", slotNumber);
|
|
console.log(" Typ:", selectedSlotType, "→", type);
|
|
console.log(" Modus:", selectedMode);
|
|
console.log(" Von:", vonDatum);
|
|
console.log(" Bis:", bisDatum);
|
|
console.log(" URL:", apiUrl);
|
|
console.log(" Daten:", jsonData);
|
|
|
|
//-----------------------
|
|
|
|
if (Array.isArray(jsonData) && jsonData.length > 0) {
|
|
dispatch(setLoopMeasurementCurveChartData(jsonData));
|
|
dispatch(setChartOpen(true));
|
|
} else {
|
|
alert("⚠️ Keine Messdaten im gewählten Zeitraum gefunden.");
|
|
dispatch(setLoopMeasurementCurveChartData([]));
|
|
dispatch(setChartOpen(false));
|
|
}
|
|
} catch (err) {
|
|
console.error("❌ Fehler beim Laden der Daten:", err);
|
|
alert("❌ Fehler beim Laden der Daten.");
|
|
} finally {
|
|
dispatch(setLoading(false));
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex justify-between items-center p-2 bg-gray-100 rounded-lg space-x-2">
|
|
<div className="flex items-center">
|
|
<label className="text-sm font-semibold">
|
|
Steckplatz {slotNumber ?? "-"}
|
|
</label>
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-2">
|
|
<DateRangePicker />
|
|
|
|
<Listbox
|
|
value={selectedMode}
|
|
onChange={(value) => {
|
|
dispatch(setSelectedMode(value));
|
|
dispatch(setBrushRange({ startIndex: 0, endIndex: 0 }));
|
|
}}
|
|
>
|
|
<div className="relative w-48">
|
|
<Listbox.Button className="w-full border px-3 py-1 rounded text-left bg-white flex justify-between items-center text-sm">
|
|
<span>
|
|
{
|
|
{
|
|
DIA0: "Alle Messwerte",
|
|
DIA1: "Stündliche Werte",
|
|
DIA2: "Tägliche Werte",
|
|
}[selectedMode]
|
|
}
|
|
</span>
|
|
<svg
|
|
className="w-5 h-5 text-gray-400"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M5.23 7.21a.75.75 0 011.06.02L10 10.585l3.71-3.355a.75.75 0 111.02 1.1l-4.25 3.85a.75.75 0 01-1.02 0l-4.25-3.85a.75.75 0 01.02-1.06z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
</Listbox.Button>
|
|
<Listbox.Options className="absolute z-50 mt-1 w-full border rounded bg-white shadow max-h-60 overflow-auto text-sm">
|
|
{["DIA0", "DIA1", "DIA2"].map((mode) => (
|
|
<Listbox.Option
|
|
key={mode}
|
|
value={mode}
|
|
className={({ selected, active }) =>
|
|
`px-4 py-1 cursor-pointer ${
|
|
selected
|
|
? "bg-littwin-blue text-white"
|
|
: active
|
|
? "bg-gray-200"
|
|
: ""
|
|
}`
|
|
}
|
|
>
|
|
{
|
|
{
|
|
DIA0: "Alle Messwerte",
|
|
DIA1: "Stündliche Werte",
|
|
DIA2: "Tägliche Werte",
|
|
}[mode]
|
|
}
|
|
</Listbox.Option>
|
|
))}
|
|
</Listbox.Options>
|
|
</div>
|
|
</Listbox>
|
|
|
|
<Listbox
|
|
value={selectedSlotType}
|
|
onChange={(value) => {
|
|
dispatch(setSelectedSlotType(value));
|
|
dispatch(
|
|
setChartTitle(
|
|
value === "isolationswiderstand"
|
|
? "Isolationsmessung"
|
|
: "Schleifenmessung"
|
|
)
|
|
);
|
|
}}
|
|
>
|
|
<div className="relative w-56">
|
|
<Listbox.Button className="w-full border px-3 py-1 rounded text-left bg-white flex justify-between items-center text-sm">
|
|
<span>
|
|
{
|
|
{
|
|
isolationswiderstand: "Isolationswiderstand",
|
|
schleifenwiderstand: "Schleifenwiderstand",
|
|
}[selectedSlotType]
|
|
}
|
|
</span>
|
|
<svg
|
|
className="w-5 h-5 text-gray-400"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M5.23 7.21a.75.75 0 011.06.02L10 10.585l3.71-3.355a.75.75 0 111.02 1.1l-4.25 3.85a.75.75 0 01-1.02 0l-4.25-3.85a.75.75 0 01.02-1.06z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
</Listbox.Button>
|
|
<Listbox.Options className="absolute z-50 mt-1 w-full border rounded bg-white shadow max-h-60 overflow-auto text-sm">
|
|
{["isolationswiderstand", "schleifenwiderstand"].map((type) => (
|
|
<Listbox.Option
|
|
key={type}
|
|
value={type}
|
|
className={({ selected, active }) =>
|
|
`px-4 py-1 cursor-pointer ${
|
|
selected
|
|
? "bg-littwin-blue text-white"
|
|
: active
|
|
? "bg-gray-200"
|
|
: ""
|
|
}`
|
|
}
|
|
>
|
|
{
|
|
{
|
|
isolationswiderstand: "Isolationswiderstand",
|
|
schleifenwiderstand: "Schleifenwiderstand",
|
|
}[type]
|
|
}
|
|
</Listbox.Option>
|
|
))}
|
|
</Listbox.Options>
|
|
</div>
|
|
</Listbox>
|
|
|
|
<button
|
|
onClick={handleFetchData}
|
|
className="px-4 py-1 bg-littwin-blue text-white rounded text-sm"
|
|
>
|
|
Daten laden
|
|
</button>
|
|
|
|
{isLoading && (
|
|
<div className="flex items-center space-x-2 text-sm text-gray-500">
|
|
<div className="w-4 h-4 border-2 border-t-2 border-blue-500 rounded-full animate-spin" />
|
|
<span>Lade Daten...</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoopChartActionBar;
|