- `isFullScreen` zum Redux-Slice hinzugefügt - `ChartSwitcher.tsx` angepasst, um Redux zu nutzen - `LoopMeasurementChart.tsx` & `TDRChart.tsx` auf Redux umgestellt - Fullscreen-Zustand bleibt jetzt persistent
136 lines
3.7 KiB
TypeScript
136 lines
3.7 KiB
TypeScript
"use client"; // /components/modules/kue705FO/charts/ChartSwitcher.tsx
|
|
import React, { useState } from "react";
|
|
import ReactModal from "react-modal";
|
|
import LoopChartActionBar from "./LoopMeasurementChart/LoopChartActionBar";
|
|
import TDRChartActionBar from "./TDRChart/TDRChartActionBar";
|
|
import LoopMeasurementChart from "./LoopMeasurementChart/LoopMeasurementChart";
|
|
import TDRChart from "./TDRChart/TDRChart";
|
|
import { useSelector, useDispatch } from "react-redux";
|
|
import { RootState } from "../../../../../redux/store";
|
|
import {
|
|
setChartOpen,
|
|
setFullScreen,
|
|
} from "../../../../../redux/slices/kabelueberwachungChartSlice";
|
|
|
|
interface ChartSwitcherProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
}
|
|
|
|
const ChartSwitcher: React.FC<ChartSwitcherProps> = ({ isOpen, onClose }) => {
|
|
const dispatch = useDispatch();
|
|
const activeMode = useSelector(
|
|
(state: RootState) => state.kueChartMode.activeMode
|
|
);
|
|
const isFullScreen = useSelector(
|
|
(state: RootState) => state.kabelueberwachungChart.isFullScreen
|
|
);
|
|
|
|
// **Modal schließen + Redux-Status zurücksetzen**
|
|
const handleClose = () => {
|
|
dispatch(setChartOpen(false));
|
|
dispatch(setFullScreen(false));
|
|
onClose();
|
|
};
|
|
|
|
// **Vollbildmodus umschalten**
|
|
const toggleFullScreen = () => {
|
|
dispatch(setFullScreen(!isFullScreen));
|
|
};
|
|
|
|
return (
|
|
<ReactModal
|
|
isOpen={isOpen}
|
|
onRequestClose={handleClose}
|
|
ariaHideApp={false}
|
|
style={{
|
|
overlay: { backgroundColor: "rgba(0, 0, 0, 0.5)" },
|
|
content: {
|
|
top: "50%",
|
|
left: "50%",
|
|
bottom: "auto",
|
|
marginRight: "-50%",
|
|
transform: "translate(-50%, -50%)",
|
|
width: isFullScreen ? "90vw" : "70rem",
|
|
height: isFullScreen ? "90vh" : "35rem",
|
|
padding: "1rem",
|
|
transition: "all 0.3s ease-in-out",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
},
|
|
}}
|
|
>
|
|
{/* Action-Buttons */}
|
|
<div
|
|
style={{
|
|
position: "absolute",
|
|
top: "0.625rem",
|
|
right: "0.625rem",
|
|
display: "flex",
|
|
gap: "0.75rem",
|
|
}}
|
|
>
|
|
{/* Fullscreen-Button */}
|
|
<button
|
|
onClick={toggleFullScreen}
|
|
style={{
|
|
background: "transparent",
|
|
border: "none",
|
|
fontSize: "1.5rem",
|
|
cursor: "pointer",
|
|
}}
|
|
>
|
|
<i
|
|
className={
|
|
isFullScreen ? "bi bi-fullscreen-exit" : "bi bi-arrows-fullscreen"
|
|
}
|
|
></i>
|
|
</button>
|
|
|
|
{/* Schließen-Button */}
|
|
<button
|
|
onClick={handleClose}
|
|
style={{
|
|
background: "transparent",
|
|
border: "none",
|
|
fontSize: "1.5rem",
|
|
cursor: "pointer",
|
|
}}
|
|
>
|
|
<i className="bi bi-x-circle-fill"></i>
|
|
</button>
|
|
</div>
|
|
|
|
{/* Chart-Container */}
|
|
<div
|
|
style={{
|
|
flex: 1,
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
height: "100%",
|
|
}}
|
|
>
|
|
{activeMode === "Schleife" ? (
|
|
<>
|
|
<h3 className="text-lg font-semibold">Schleifenmessung</h3>
|
|
<LoopChartActionBar />
|
|
<div style={{ flex: 1, height: "90%" }}>
|
|
<LoopMeasurementChart isFullScreen={isFullScreen} />
|
|
</div>
|
|
</>
|
|
) : (
|
|
<>
|
|
<h3 className="text-lg font-semibold">TDR-Messung</h3>
|
|
<TDRChartActionBar />
|
|
<div style={{ flex: 1, height: "90%" }}>
|
|
<TDRChart isFullScreen={isFullScreen} />
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</ReactModal>
|
|
);
|
|
};
|
|
|
|
export default ChartSwitcher;
|