39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
export const goTDR = (
|
|
slotIndex: number,
|
|
setLoading: (loading: boolean) => void
|
|
) => {
|
|
if (slotIndex >= 32) {
|
|
return;
|
|
}
|
|
|
|
//const slotFormat = slotIndex < 10 ? `${slotIndex}` : `${slotIndex}`;
|
|
|
|
setLoading(true);
|
|
//alert(`TDR wird für Slot ${slotIndex + 1} gestartet...`);
|
|
|
|
fetch(
|
|
//`${window.location.origin}/CPL?Service/Kabelueberwachung.html&KTT${slotFormat}=1&slot=${slotIndex}`,
|
|
`${window.location.origin}/CPL?Service/Kabelueberwachung.html&KTT${slotIndex}=1`,
|
|
{
|
|
method: "GET",
|
|
}
|
|
)
|
|
.then((response) => {
|
|
if (response.ok) {
|
|
alert(
|
|
`TDR Messung der KÜ705-FO Strecke ${slotIndex + 1} wurde durchgeführt`
|
|
);
|
|
/* alert(
|
|
`TDR erfolgreich gestartet für Slot format ${Number(slotFormat) + 1}`
|
|
); */
|
|
console.log("TDR erfolgreich gestartet für Slot", slotIndex + 1);
|
|
} else {
|
|
console.error("Fehler beim Senden der TDR-Anfrage");
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
console.error("Fehler:", error);
|
|
})
|
|
.finally(() => setLoading(false));
|
|
};
|