WIP: Refernzkurve wird angezeigt, aber kann nicht gesetzt werden
This commit is contained in:
@@ -6,5 +6,5 @@
|
||||
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
||||
|
||||
*/
|
||||
const webVersion = "1.6.230";
|
||||
const webVersion = "1.6.231";
|
||||
export default webVersion;
|
||||
|
||||
25
pages/api/cpl/tdrReferenceCurveAPIHandler.ts
Normal file
25
pages/api/cpl/tdrReferenceCurveAPIHandler.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
// /api/cpl/tdrReferenceCurveAPIHandler.ts
|
||||
import { NextApiRequest, NextApiResponse } from "next";
|
||||
import path from "path";
|
||||
import { promises as fs } from "fs";
|
||||
|
||||
export default async function handler(
|
||||
req: NextApiRequest,
|
||||
res: NextApiResponse
|
||||
) {
|
||||
const { slot } = req.query;
|
||||
|
||||
const filePath = path.join(
|
||||
process.cwd(),
|
||||
"apiMockData",
|
||||
"tdr-reference-curves",
|
||||
`slot${slot}.json`
|
||||
);
|
||||
|
||||
try {
|
||||
const fileContent = await fs.readFile(filePath, "utf-8");
|
||||
res.status(200).json(JSON.parse(fileContent));
|
||||
} catch (error) {
|
||||
res.status(404).json({ error: "File not found" });
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@ export const fetchTDRReferenceCurveService = async (
|
||||
// 🔁 Fallback: Datei oder Produktion-API
|
||||
const isDev = process.env.NEXT_PUBLIC_NODE_ENV === "development";
|
||||
const url = isDev
|
||||
? `/api/cpl/tdr-reference-curves/slot${slot}.json`
|
||||
? `/api/cpl/tdrReferenceCurveAPIHandler?slot=${slot}`
|
||||
: `${window.location.origin}/CPL?Service/empty.acp&TDR=${slot}`;
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user