Modul vorhanden test
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#Next.js Webserver, bleibt localhost auf CPL bei production
|
||||
NEXT_PUBLIC_API_BASE_URL=http://localhost:3000
|
||||
#NEXT_PUBLIC_API_BASE_URL=http://localhost:3000
|
||||
#CPL Webserver für die Entwicklung , um Daten von CPL zu bekommen, hat funktioniert auf dem CPL selbst
|
||||
#NEXT_PUBLIC_API_BASE_URL=https://10.10.0.118:443
|
||||
NEXT_PUBLIC_API_BASE_URL=https://10.10.0.118:443
|
||||
|
||||
@@ -7,6 +7,8 @@ function Kabelueberwachung() {
|
||||
const [kueIso, setKueIso] = useState([]); // State to store isolation values
|
||||
const [kueName, setKueName] = useState([]); // State to store the KUE names
|
||||
const [schleifenwiderstand, setSchleifenwiderstand] = useState([]); // State to store the resistance values
|
||||
//const [kueOnline, setKueOnline] = useState([ 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ]); // Example array for module status
|
||||
const [kueOnline, setKueOnline] = useState([]); // State to store the module status
|
||||
|
||||
// Function to handle rack change
|
||||
const changeRack = (rack) => {
|
||||
@@ -30,21 +32,25 @@ function Kabelueberwachung() {
|
||||
isolationswert: value, // Isolation value for this slot
|
||||
schleifenwiderstand: schleifenwiderstand[index], // Resistance for this slot
|
||||
modulName: kueName[index] || "Unknown", // Name for this slot
|
||||
kueOnlineStatus: kueOnline[index], // Online status for this slot
|
||||
})),
|
||||
rack2: kueIso.slice(8, 16).map((value, index) => ({
|
||||
isolationswert: value,
|
||||
schleifenwiderstand: schleifenwiderstand[8 + index],
|
||||
modulName: kueName[8 + index] || "Unknown",
|
||||
kueOnlineStatus: kueOnline[8 + index], // Online status for this slot
|
||||
})),
|
||||
rack3: kueIso.slice(16, 24).map((value, index) => ({
|
||||
isolationswert: value,
|
||||
schleifenwiderstand: schleifenwiderstand[16 + index],
|
||||
modulName: kueName[16 + index] || "Unknown",
|
||||
kueOnlineStatus: kueOnline[16 + index], // Online status for this slot
|
||||
})),
|
||||
rack4: kueIso.slice(24, 32).map((value, index) => ({
|
||||
isolationswert: value,
|
||||
schleifenwiderstand: schleifenwiderstand[24 + index],
|
||||
modulName: kueName[24 + index] || "Unknown",
|
||||
kueOnlineStatus: kueOnline[24 + index], // Online status for this slot
|
||||
})),
|
||||
};
|
||||
|
||||
@@ -115,6 +121,8 @@ function Kabelueberwachung() {
|
||||
isolationswert={slot.isolationswert}
|
||||
schleifenwiderstand={slot.schleifenwiderstand}
|
||||
modulName={slot.modulName}
|
||||
kueOnline={kueOnline}
|
||||
slotIndex={index + (activeRack - 1) * 8} // Slot index calculation for each rack
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React from "react";
|
||||
import React, { useState } from "react";
|
||||
import { Icon } from "@iconify/react"; // Für Iconify Icons
|
||||
|
||||
function Kue705FO({
|
||||
@@ -6,16 +6,36 @@ function Kue705FO({
|
||||
schleifenwiderstand, // Übergabeparameter für den Schleifenwiderstand
|
||||
modulName, // Übergabeparameter für den Modulnamen
|
||||
kueVersion = "V4.19", // Optionaler Parameter für die Version (Standardwert)
|
||||
kueOnline, // Array für den Modulstatus (1: Modul vorhanden, 0: kein Modul)
|
||||
slotIndex, // Der Index des Slots, für den die Anzeige gilt
|
||||
}) {
|
||||
const [activeButton, setActiveButton] = useState("Schleife");
|
||||
const [displayText, setDisplayText] = useState("Schleifenwiderstand [kOhm]");
|
||||
|
||||
const handleButtonClick = (button) => {
|
||||
if (button === "Schleife") {
|
||||
setActiveButton("Schleife");
|
||||
setDisplayText("Schleifenwiderstand [kOhm]");
|
||||
} else if (button === "TDR") {
|
||||
setActiveButton("TDR");
|
||||
setDisplayText("Entfernung [Km]");
|
||||
}
|
||||
};
|
||||
|
||||
// Überprüfe, ob ein Modul im Slot vorhanden ist
|
||||
const isModulPresent = kueOnline[slotIndex] === 1;
|
||||
|
||||
return (
|
||||
<div className="relative bg-gray-300 w-[116px] h-[390px] border border-gray-400 scale-110 top-3">
|
||||
{isModulPresent ? (
|
||||
<>
|
||||
{/* Hauptkörper - Linker Bereich */}
|
||||
<div className="relative w-[113.202px] h-[242.492px] bg-littwin-blue border-[1.5px] border-gray-400 z-0">
|
||||
{/* Header-Bereich mit Slotnummer und Zahnrad */}
|
||||
<div className="flex items-start justify-between h-[30px] ">
|
||||
{/* Slotnummer */}
|
||||
<div className="relative w-[20px] h-[20px] bg-gray-800 flex items-center justify-center">
|
||||
<span className="text-white text-[10px]">1</span>
|
||||
<span className="text-white text-[10px]">{slotIndex + 1}</span>
|
||||
</div>
|
||||
|
||||
{/* KÜ705-FO Text */}
|
||||
@@ -69,7 +89,7 @@ function Kue705FO({
|
||||
{/* Unterer Bereich - Schleifenwiderstand und Messkurve */}
|
||||
<div className="absolute bottom-1 left-[1.095px] w-[113.182px] h-[130px] bg-gray-300 border-[1.5px] border-gray-400 p-1">
|
||||
<span className="text-black text-[6px] absolute top-[2px] left-1 mt-1">
|
||||
Schleifenwiderstand [kOhm]
|
||||
{displayText}
|
||||
</span>
|
||||
{/* Schleifenwiderstand Anzeige */}
|
||||
<div className="relative w-full h-[45px] bg-gray-100 border border-gray-400 flex items-center justify-center mt-3">
|
||||
@@ -93,14 +113,20 @@ function Kue705FO({
|
||||
{/* Schleife und TDR Buttons nebeneinander */}
|
||||
<div className="flex mt-2 space-x-1">
|
||||
<button
|
||||
onClick={() => console.log("Schleife clicked")}
|
||||
className="w-[50%] h-[25px] bg-littwin-blue text-white text-[10px] flex items-center justify-center"
|
||||
onClick={() => handleButtonClick("Schleife")}
|
||||
className={`w-[50%] h-[25px] text-white text-[10px] flex items-center justify-center ${
|
||||
activeButton === "Schleife"
|
||||
? "bg-littwin-blue"
|
||||
: "bg-gray-400"
|
||||
}`}
|
||||
>
|
||||
Schleife
|
||||
</button>
|
||||
<button
|
||||
onClick={() => console.log("TDR clicked")}
|
||||
className="w-[50%] h-[25px] bg-gray-400 text-white text-[10px] flex items-center justify-center"
|
||||
onClick={() => handleButtonClick("TDR")}
|
||||
className={`w-[50%] h-[25px] text-white text-[10px] flex items-center justify-center ${
|
||||
activeButton === "TDR" ? "bg-littwin-blue" : "bg-gray-400"
|
||||
}`}
|
||||
>
|
||||
TDR
|
||||
</button>
|
||||
@@ -114,6 +140,12 @@ function Kue705FO({
|
||||
Messkurve
|
||||
</button>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<div className="flex items-center justify-center h-full text-gray-500">
|
||||
<p>Kein Modul im Slot {slotIndex + 1}</p>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user