Files
CPLv4.0/components/main/einausgaenge/DigitalInputs.tsx
ISA 60634140ca fix: Alle Icons in digitalen Ein- und Ausgängen lokal eingebunden
- Icons input, login, output und switch lokal installiert und verwendet
- Keine Internet-Abhängigkeit mehr für Icon-Anzeige
- Projekt ist vollständig offlinefähig
2025-04-29 13:58:18 +02:00

107 lines
4.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
// /components/main/einausgaenge/DigitalInputs.tsx
import React from "react";
import { useSelector } from "react-redux";
import { RootState } from "../../../redux/store";
import { Icon } from "@iconify/react";
import settingsIcon from "@iconify/icons-mdi/settings";
import inputIcon from "@iconify/icons-mdi/input";
import loginIcon from "@iconify/icons-mdi/login";
type Props = {
openInputModal: (input: any) => void;
inputRange: { start: number; end: number };
};
export default function DigitalInputs({ openInputModal, inputRange }: Props) {
const digitalInputs = useSelector(
(state: RootState) => state.digitalInputsSlice.inputs
);
const inputs = digitalInputs.slice(inputRange.start, inputRange.end);
return (
<div className="bg-white shadow-md border border-gray-200 p-3 rounded-lg w-full">
<h2 className="text-sm font-bold mb-3 flex items-center laptop:text-xs">
<Icon
icon={inputIcon}
className="text-littwin-blue mr-2 text-xl laptop:text-lg"
/>
Meldungseingänge {inputRange.start + 1} {inputRange.end}
</h2>
<table className="w-full text-xs border-collapse laptop:text-[10px]">
<thead className="bg-gray-100 border-b">
<tr>
<th className="px-1 py-1 text-left laptop:px-0.5 laptop:py-0.5">
Eingang
</th>
<th className="px-1 py-1 text-left laptop:px-0.5 laptop:py-0.5">
Zustand
</th>
<th className="px-1 py-1 text-left laptop:px-0.5 laptop:py-0.5">
Bezeichnung
</th>
<th className="px-1 py-1 text-left laptop:px-0.5 laptop:py-0.5">
Aktion
</th>
</tr>
</thead>
<tbody>
{inputs.map((input) => (
<tr key={input.id} className="border-b">
<td className="flex items-center px-1 py-1 laptop:px-0.5 laptop:py-0.5">
<Icon
icon={loginIcon}
className="text-gray-600 mr-1 text-base laptop:text-sm"
/>
{input.id}
</td>
<td className="px-1 py-1 laptop:px-0.5 laptop:py-0.5">
{input.eingangOffline ? (
<div className="relative group inline-block">
<span className="text-red-500 text-2xl laptop:text-sm font-bold">
</span>
<div className="absolute bottom-full translate-x-4 translate-y-4 w-max bg-gray-400 text-xs laptop:text-[10px] text-white rounded opacity-0 group-hover:opacity-100 transition p-1 z-10">
Eingang inaktiv
</div>
</div>
) : input.status ? (
<div className="relative group inline-block">
<span className="text-red-500 text-2xl laptop:text-sm">
</span>
<div className="absolute bottom-full translate-x-4 translate-y-4 w-max bg-gray-400 text-xs laptop:text-[10px] text-white rounded opacity-0 group-hover:opacity-100 transition p-1 z-10">
Eingang Aus
</div>
</div>
) : (
<div className="relative group inline-block">
<span className="text-green-500 text-2xl laptop:text-sm">
</span>
<div className="absolute bottom-full translate-x-4 translate-y-4 w-max bg-gray-400 text-xs laptop:text-[10px] text-white rounded opacity-0 group-hover:opacity-100 transition p-1 z-10">
Eingang Ein
</div>
</div>
)}
</td>
<td className="px-1 py-1 laptop:px-0.5 laptop:py-0.5">
{input.label}
</td>
<td className="px-1 py-1 laptop:px-0.5 laptop:py-0.5">
<Icon
icon={settingsIcon}
className="text-gray-400 text-base cursor-pointer"
onClick={() => openInputModal(input)}
/>
</td>
</tr>
))}
</tbody>
</table>
</div>
);
}