digitale Ein- und Ausgänge , noch kein Invertierung

This commit is contained in:
ISA
2025-01-22 11:26:10 +01:00
parent 99953b5241
commit 2d8962eda3
2 changed files with 146 additions and 146 deletions

View File

@@ -20,6 +20,7 @@ function Navigation() {
const menuItems = [
{ name: "Übersicht", path: "/dashboard" },
{ name: "Kabelüberwachung", path: "/kabelueberwachung" },
{ name: "Ein- und Ausgänge", path: "/einausgaenge" },
// Weitere Menüpunkte hier
];

View File

@@ -1,161 +1,160 @@
"use client";
import React, { useState } from "react";
"use client"; // Falls notwendig
import React from "react";
import { Icon } from "@iconify/react";
function Einausgaenge() {
// Beispiel-Daten für Ein- und Ausgänge (kannst du durch deine Daten ersetzen)
const inputs = [
{
id: 1,
name: "Eingang 1",
status: "Aktiv",
description: "Beschreibung 1",
},
{
id: 2,
name: "Eingang 2",
status: "Inaktiv",
description: "Beschreibung 2",
},
{
id: 3,
name: "Eingang 3",
status: "Aktiv",
description: "Beschreibung 3",
},
{
id: 4,
name: "Eingang 4",
status: "Inaktiv",
description: "Beschreibung 4",
},
function EinAusgaenge() {
const digitalInputs = [
{ id: 1, status: "active", description: "100V-Ausfall" },
{ id: 2, status: "inactive", description: "DE2" },
{ id: 3, status: "active", description: "DE3" },
{ id: 4, status: "inactive", description: "DE4" },
{ id: 5, status: "active", description: "DE5" },
{ id: 6, status: "inactive", description: "DE6" },
{ id: 7, status: "active", description: "DE7" },
{ id: 8, status: "inactive", description: "DE8" },
{ id: 9, status: "active", description: "DE9" },
{ id: 10, status: "inactive", description: "DE10" },
{ id: 11, status: "active", description: "DE11" },
{ id: 12, status: "inactive", description: "DE12" },
{ id: 13, status: "active", description: "DE13" },
{ id: 14, status: "inactive", description: "DE14" },
{ id: 15, status: "active", description: "DE15" },
{ id: 16, status: "inactive", description: "DE16" },
{ id: 17, status: "active", description: "DE17" },
{ id: 18, status: "inactive", description: "DE18" },
{ id: 19, status: "active", description: "DE19" },
{ id: 20, status: "inactive", description: "DE20" },
{ id: 21, status: "active", description: "DE21" },
{ id: 22, status: "inactive", description: "DE22" },
{ id: 23, status: "active", description: "DE23" },
{ id: 24, status: "inactive", description: "DE24" },
{ id: 25, status: "active", description: "DE25" },
{ id: 26, status: "inactive", description: "DE26" },
{ id: 27, status: "active", description: "DE27" },
{ id: 28, status: "inactive", description: "DE28" },
{ id: 29, status: "active", description: "DE29" },
{ id: 30, status: "inactive", description: "DE30" },
{ id: 31, status: "active", description: "DE31" },
{ id: 32, status: "inactive", description: "DE32" },
];
const outputs = [
{
id: 1,
name: "Ausgang 1",
status: "Aktiv",
description: "Beschreibung 1",
},
{
id: 2,
name: "Ausgang 2",
status: "Inaktiv",
description: "Beschreibung 2",
},
{
id: 3,
name: "Ausgang 3",
status: "Aktiv",
description: "Beschreibung 3",
},
{
id: 4,
name: "Ausgang 4",
status: "Inaktiv",
description: "Beschreibung 4",
},
const digitalOutputs = [
{ id: 1, description: "Ausgang1", toggle: true },
{ id: 2, description: "Ausgang2", toggle: false },
{ id: 3, description: "Ausgang3", toggle: true },
{ id: 4, description: "Ausgang4", toggle: false },
// Weitere Einträge
];
// Zustand für aktiven Tab (Ein- oder Ausgänge)
const [activeTab, setActiveTab] = useState("inputs");
// Aufteilen der Eingänge in zwei Gruppen
const inputsGroup1 = digitalInputs.slice(0, 16);
const inputsGroup2 = digitalInputs.slice(16);
return (
<div className="bg-gray-100 min-h-screen p-8">
{/* Tabs für Ein- und Ausgänge */}
<ul className="flex border-b border-gray-200">
<li
className={`mr-1 ${
activeTab === "inputs" ? "border-blue-500 text-blue-600" : ""
}`}
>
<button
onClick={() => setActiveTab("inputs")}
className={`inline-block px-4 py-2 rounded-t-lg ${
activeTab === "inputs"
? "bg-blue-500 text-white"
: "bg-white text-black hover:bg-gray-200"
}`}
>
Eingänge
</button>
</li>
<li
className={`mr-1 ${
activeTab === "outputs" ? "border-blue-500 text-blue-600" : ""
}`}
>
<button
onClick={() => setActiveTab("outputs")}
className={`inline-block px-4 py-2 rounded-t-lg ${
activeTab === "outputs"
? "bg-blue-500 text-white"
: "bg-white text-black hover:bg-gray-200"
}`}
>
Ausgänge
</button>
</li>
</ul>
{/* Inhalt für die aktiven Tabs */}
<div className="mt-4 p-4 bg-white rounded-lg shadow overflow-auto">
{activeTab === "inputs" && (
<div>
<h2 className="text-lg font-bold mb-4">Eingänge</h2>
<table className="min-w-full bg-white border border-gray-300">
<thead>
<tr className="w-full bg-gray-200 text-gray-600 uppercase text-sm leading-normal">
<th className="py-3 px-4 text-left">ID</th>
<th className="py-3 px-4 text-left">Name</th>
<th className="py-3 px-4 text-left">Status</th>
<th className="py-3 px-4 text-left">Beschreibung</th>
</tr>
</thead>
<tbody className="text-gray-600 text-sm">
{inputs.map((input) => (
<tr key={input.id} className="border-b border-gray-200">
<td className="py-3 px-4 text-left">{input.id}</td>
<td className="py-3 px-4 text-left">{input.name}</td>
<td className="py-3 px-4 text-left">{input.status}</td>
<td className="py-3 px-4 text-left">{input.description}</td>
</tr>
))}
</tbody>
</table>
<div className="p-4 ">
<h1 className="text-lg font-semibold mb-4">Ein- und Ausgänge</h1>
<div className="flex gap-4">
{/* Digitale Eingänge */}
<div className="bg-white shadow-md rounded-lg border border-gray-200 p-4 w-3/5 flex-grow flex flex-col">
<h2 className="text-md font-bold mb-4 flex items-center">
<Icon icon="mdi:input" className="text-blue-500 mr-2 text-2xl" />
Digitale Eingänge
</h2>
<div className="grid grid-cols-2 gap-4">
{[inputsGroup1, inputsGroup2].map((group, index) => (
<div key={index} className="flex-grow">
<table className="w-full text-sm border-collapse bg-white rounded-lg">
<thead className="bg-gray-100 border-b">
<tr>
<th className="px-2 py-1 text-left">Eingang</th>
<th className="px-2 py-1 text-left">Zustand</th>
<th className="px-2 py-1 text-left">Bezeichnung</th>
<th className="px-2 py-1 text-left">Aktion</th>
</tr>
</thead>
<tbody>
{group.map((input) => (
<tr key={input.id} className="border-b ">
<td className="flex p-2 xl:py-0 2xl:p-1">
{" "}
<Icon
icon="mdi:input"
className="text-black-500 mr-2 text-xl"
/>
{input.id}
</td>
<td
className={`p-2 xl:py-0 ${
input.status === "active"
? "text-green-500"
: "text-red-500"
}`}
>
{input.status === "active" ? "●" : "⨉"}
</td>
<td className="p-2 xl:py-0 ">{input.description}</td>
<td className="p-2 xl:py-0">
<Icon
icon="mdi:settings"
className="text-gray-400 text-lg cursor-pointer"
/>
</td>
</tr>
))}
</tbody>
</table>
</div>
))}
</div>
)}
</div>
{activeTab === "outputs" && (
<div>
<h2 className="text-lg font-bold mb-4">Ausgänge</h2>
<table className="min-w-full bg-white border border-gray-300">
<thead>
<tr className="w-full bg-gray-200 text-gray-600 uppercase text-sm leading-normal">
<th className="py-3 px-4 text-left">ID</th>
<th className="py-3 px-4 text-left">Name</th>
<th className="py-3 px-4 text-left">Status</th>
<th className="py-3 px-4 text-left">Beschreibung</th>
{/* Digitale Ausgänge */}
<div className="bg-white shadow-md rounded-lg border border-gray-200 p-4 w-2/5 h-[fit-content]">
<h2 className="text-md font-bold mb-4 flex items-center">
<Icon icon="mdi:output" className="text-blue-500 mr-2 text-2xl" />
Digitale Ausgänge
</h2>
<table className="w-full text-sm border-collapse bg-white rounded-lg">
<thead className="bg-gray-100 border-b">
<tr>
<th className="px-2 py-1 text-left">Ausgang</th>
<th className="px-2 py-1 text-left">Bezeichnung</th>
<th className="px-2 py-1 text-left">Schalter</th>
<th className="px-2 py-1 text-left">Aktion</th>
</tr>
</thead>
<tbody>
{digitalOutputs.map((output) => (
<tr key={output.id} className="border-b">
<td className="flex px-2 py-1">
<Icon
icon="mdi:output"
className="text-black-500 mr-2 text-xl"
/>
{output.id}
</td>
<td className="px-2 py-1">{output.description}</td>
<td className="px-2 py-1">
<input
type="checkbox"
checked={output.toggle}
className="w-5 h-5"
/>
</td>
<td className="px-2 py-1">
<Icon
icon="mdi:settings"
className="text-gray-400 text-lg cursor-pointer"
/>
</td>
</tr>
</thead>
<tbody className="text-gray-600 text-sm">
{outputs.map((output) => (
<tr key={output.id} className="border-b border-gray-200">
<td className="py-3 px-4 text-left">{output.id}</td>
<td className="py-3 px-4 text-left">{output.name}</td>
<td className="py-3 px-4 text-left">{output.status}</td>
<td className="py-3 px-4 text-left">
{output.description}
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
))}
</tbody>
</table>
</div>
</div>
</div>
);
}
export default Einausgaenge;
export default EinAusgaenge;