IP von window und nicht von .env.local, weil in CHIPTOOL kann die IP geändert werden
This commit is contained in:
@@ -13,7 +13,8 @@ import XioPM2Status from "../../components/modulesStatus/XioPM2Status";
|
|||||||
import { Icon } from "@iconify/react";
|
import { Icon } from "@iconify/react";
|
||||||
|
|
||||||
function Dashboard() {
|
function Dashboard() {
|
||||||
const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
//const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
||||||
|
const apiUrl = `https://${window.ip}:443`;
|
||||||
const [last20Messages, setLast20Messages] = useState([]);
|
const [last20Messages, setLast20Messages] = useState([]);
|
||||||
const [kueOnline, setkueOnline] = useState([]);
|
const [kueOnline, setkueOnline] = useState([]);
|
||||||
const [ip, setIp] = useState("");
|
const [ip, setIp] = useState("");
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ import React, { useState, useEffect } from "react";
|
|||||||
import Kue705FO from "../../components/modules/Kue705FO";
|
import Kue705FO from "../../components/modules/Kue705FO";
|
||||||
|
|
||||||
function Kabelueberwachung() {
|
function Kabelueberwachung() {
|
||||||
const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
//const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
||||||
|
const apiUrl = `https://${window.ip}:443`;
|
||||||
const [activeRack, setActiveRack] = useState(1); // Track the active rack
|
const [activeRack, setActiveRack] = useState(1); // Track the active rack
|
||||||
const [kueIso, setKueIso] = useState([]); // State to store isolation values
|
const [kueIso, setKueIso] = useState([]); // State to store isolation values
|
||||||
const [kueName, setKueName] = useState([]); // State to store the KUE names
|
const [kueName, setKueName] = useState([]); // State to store the KUE names
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ import { loadWindowVariables } from "../utils/loadWindowVariables"; // Importier
|
|||||||
import SettingsModal from "./modales/SettingsModal";
|
import SettingsModal from "./modales/SettingsModal";
|
||||||
|
|
||||||
function Header() {
|
function Header() {
|
||||||
const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
// const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
||||||
|
const apiUrl = `https://${window.ip}:443`;
|
||||||
const [stationsname, setStationsname] = useState("Lädt..."); // Platzhalter
|
const [stationsname, setStationsname] = useState("Lädt..."); // Platzhalter
|
||||||
const [cplStatus, setCplStatus] = useState("Lädt...");
|
const [cplStatus, setCplStatus] = useState("Lädt...");
|
||||||
const [showSettingsModal, setShowSettingsModal] = useState(false);
|
const [showSettingsModal, setShowSettingsModal] = useState(false);
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ function KueModal({ showModal, onClose, slot, onModulNameChange }) {
|
|||||||
|
|
||||||
// Falls Änderungen vorhanden sind, die fetch-Requests auslösen
|
// Falls Änderungen vorhanden sind, die fetch-Requests auslösen
|
||||||
if (Object.keys(changes).length > 0) {
|
if (Object.keys(changes).length > 0) {
|
||||||
let url = `${process.env.NEXT_PUBLIC_API_BASE_URL}/cpl?Service/kueDetail.HTML&slot=${slot}`;
|
let url = `https://${window.ip}:443/cpl?Service/kueDetail.HTML&slot=${slot}`;
|
||||||
|
|
||||||
Object.keys(changes).forEach((paramKey) => {
|
Object.keys(changes).forEach((paramKey) => {
|
||||||
url += `&${paramKey}${slot}=${encodeURIComponent(changes[paramKey])}`;
|
url += `&${paramKey}${slot}=${encodeURIComponent(changes[paramKey])}`;
|
||||||
@@ -136,7 +136,7 @@ function KueModal({ showModal, onClose, slot, onModulNameChange }) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const handleDisplayEinschalten = () => {
|
const handleDisplayEinschalten = () => {
|
||||||
const url = `${process.env.NEXT_PUBLIC_API_BASE_URL}/cpl?Service/kueDetail.HTML&KSD${slot}=1`;
|
const url = `https://${window.ip}:443/cpl?Service/kueDetail.HTML&KSD${slot}=1`;
|
||||||
fetch(url, { method: "GET" })
|
fetch(url, { method: "GET" })
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
|
|||||||
@@ -114,7 +114,9 @@ function Kue705FO({
|
|||||||
}
|
}
|
||||||
|
|
||||||
let slotFormat = slot < 10 ? `0${slot}` : `${slot}`;
|
let slotFormat = slot < 10 ? `0${slot}` : `${slot}`;
|
||||||
const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
|
||||||
|
//const apiUrl = process.env.NEXT_PUBLIC_API_BASE_URL;
|
||||||
|
const apiUrl = `https://${window.ip}:443`;
|
||||||
|
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
fetch(
|
fetch(
|
||||||
|
|||||||
Reference in New Issue
Block a user