feat: Übersicht Seite dark und light mode

This commit is contained in:
ISA
2025-08-18 16:22:01 +02:00
parent 9c411be38c
commit b72b9d665b
6 changed files with 45 additions and 19 deletions

View File

@@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false
NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_EXPORT_STATIC=false
NEXT_PUBLIC_USE_CGI=false NEXT_PUBLIC_USE_CGI=false
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.746 NEXT_PUBLIC_APP_VERSION=1.6.747
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter)

View File

@@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL
NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_EXPORT_STATIC=true
NEXT_PUBLIC_USE_CGI=true NEXT_PUBLIC_USE_CGI=true
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.746 NEXT_PUBLIC_APP_VERSION=1.6.747
NEXT_PUBLIC_CPL_MODE=production NEXT_PUBLIC_CPL_MODE=production

View File

@@ -1,3 +1,8 @@
## [1.6.747] 2025-08-18
- feat: digitale Eingänge light und dark mode
---
## [1.6.746] 2025-08-18 ## [1.6.746] 2025-08-18
- feat: Schaltausgänge dark und light mode - feat: Schaltausgänge dark und light mode

View File

@@ -48,35 +48,56 @@ export default function Last20MessagesTable({ className }: Props) {
return ( return (
<div className={`flex flex-col gap-3 p-4 ${className}`}> <div className={`flex flex-col gap-3 p-4 ${className}`}>
<div className="overflow-auto max-h-[80vh]"> <div className="overflow-auto max-h-[80vh]">
<table className="min-w-full border"> <table className="min-w-full border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<thead className="bg-gray-100 text-left sticky top-0 z-10"> <thead className="bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100 text-left sticky top-0 z-10">
<tr> <tr>
<th className="p-2 border">Prio</th> <th className="p-2 border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<th className="p-2 border">Zeitstempel</th> Prio
<th className="p-2 border">Quelle</th> </th>
<th className="p-2 border">Meldung</th> <th className="p-2 border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<th className="p-2 border">Status</th> Zeitstempel
</th>
<th className="p-2 border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
Quelle
</th>
<th className="p-2 border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
Meldung
</th>
<th className="p-2 border bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
Status
</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{filteredMessages.slice(0, 20).map((msg, index) => ( {filteredMessages.slice(0, 20).map((msg, index) => (
<tr key={index} className="hover:bg-gray-200"> <tr
<td className="border p-2"> key={index}
className="hover:bg-gray-100 dark:hover:bg-gray-800"
>
<td className="border p-2 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<div <div
className="w-4 h-4 rounded" className="w-4 h-4 rounded"
style={{ backgroundColor: msg.c }} style={{ backgroundColor: msg.c }}
></div> ></div>
</td> </td>
<td className="border p-2">{msg.t}</td> <td className="border p-2 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<td className="border p-2">{msg.i}</td> {msg.t}
<td className="border p-2">{msg.m}</td> </td>
<td className="border p-2">{msg.v}</td> <td className="border p-2 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
{msg.i}
</td>
<td className="border p-2 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
{msg.m}
</td>
<td className="border p-2 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
{msg.v}
</td>
</tr> </tr>
))} ))}
</tbody> </tbody>
</table> </table>
{messages.length === 0 && ( {messages.length === 0 && (
<div className="mt-4 text-center text-gray-500 italic"> <div className="mt-4 text-center text-gray-500 italic dark:text-gray-400">
Keine Meldungen im gewählten Zeitraum vorhanden. Keine Meldungen im gewählten Zeitraum vorhanden.
</div> </div>
)} )}

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.746", "version": "1.6.747",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.746", "version": "1.6.747",
"dependencies": { "dependencies": {
"@fontsource/roboto": "^5.1.0", "@fontsource/roboto": "^5.1.0",
"@headlessui/react": "^2.2.4", "@headlessui/react": "^2.2.4",

View File

@@ -1,6 +1,6 @@
{ {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.746", "version": "1.6.747",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",