fix: KÜ Firmwareupdate

This commit is contained in:
ISA
2025-07-03 07:36:10 +02:00
parent 937e7b67e9
commit 4245d7a991
8 changed files with 36 additions and 11 deletions

View File

@@ -283,7 +283,11 @@ export default function KueEinstellung({
/>
)}
{isUpdating && (
<ProgressModal visible={isUpdating} progress={progress} />
<ProgressModal
visible={isUpdating}
progress={progress}
slot={slot + 1}
/>
)}
<button
onClick={() => handleDisplayEinschalten(slot)}

View File

@@ -1,18 +1,29 @@
"use client";
// @/components/main/settingsPageComponents/modals/ProgressModal.tsx
import React from "react";
type Props = {
visible: boolean;
progress: number;
slot?: number;
};
const ProgressModal: React.FC<Props> = ({ visible, progress }) => {
const ProgressModal: React.FC<Props> = ({ visible, progress, slot }) => {
if (!visible) return null;
return (
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 ">
<div className="bg-white p-6 rounded shadow-md text-center w-80">
<h2 className="text-lg font-bold mb-4">Firmwareupdate läuft...</h2>
{/*
<h2 className="text-lg font-bold mb-4">
Firmwareupdate
{typeof slot === "number" ? ` KÜ ${slot}` : ""} läuft ...
</h2>
*/}
<h2 className="text-lg font-bold mb-4">
Firmwareupdate läuft ...
{typeof slot === "number" ? ` ` : ""}
</h2>
<div className="w-full bg-gray-200 rounded-full h-4">
<div
className="bg-blue-500 h-4 rounded-full transition-all duration-100"