Files
CPLv4.0/services/fetchTDRReferenceCurve.ts
ISA 6b6b6cc9b8 feat: Referenzkurve-Button sendet API-Aufruf an Backend (KTR)
- handleSetReference um fetch-Aufruf ergänzt
- Unterscheidung von Entwicklungs- und Produktionsumgebung via NEXT_PUBLIC_API_BASE_URL
- Fehlerbehandlung und Alert bei Erfolg/Misserfolg eingebaut
2025-03-31 10:05:36 +02:00

28 lines
863 B
TypeScript

// /services/fetchTDRReferenceCurve.ts
export const fetchTDRReferenceCurve = async (
slot: number
): Promise<any[] | null> => {
// ✅ Erst aus localStorage lesen
const local = localStorage.getItem(`ref-curve-slot${slot}`);
if (local) {
console.log(`📦 Lade Referenzkurve für Slot ${slot} aus localStorage`);
return JSON.parse(local);
}
// 🔁 Fallback: Datei oder Produktion-API
const isDev = process.env.NEXT_PUBLIC_NODE_ENV === "development";
const url = isDev
? `/CPLmockData/tdr-reference-curves/slot${slot}.json`
: `${window.location.origin}/CPL?Service/empty.acp&TDR=${slot}`;
try {
const res = await fetch(url);
if (!res.ok) throw new Error(`HTTP ${res.status}`);
return await res.json();
} catch (error) {
console.error(`❌ Fehler beim Laden von Slot ${slot}:`, error);
return null;
}
};