- Einheitliches Naming für API-Routen: *APIHandler.ts - Mock-Daten aus /apiMockData/SERVICE/ werden über API bereitgestellt - API-Endpoints sofort erkennbar und verständlich - Projektstruktur deutlich klarer und wartungsfreundlicher
26 lines
611 B
TypeScript
26 lines
611 B
TypeScript
// /pages/api/cpl/last20MessagesAPIHandler.ts
|
|
import { NextApiRequest, NextApiResponse } from "next";
|
|
import path from "path";
|
|
import fs from "fs/promises";
|
|
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse
|
|
) {
|
|
const filePath = path.join(
|
|
process.cwd(),
|
|
"apiMockData",
|
|
"SERVICE",
|
|
"last20MessagesMockData.js"
|
|
);
|
|
|
|
try {
|
|
const data = await fs.readFile(filePath, "utf-8");
|
|
|
|
res.setHeader("Content-Type", "text/javascript"); // wichtig!
|
|
res.status(200).send(data);
|
|
} catch (error) {
|
|
res.status(404).json({ error: "File not found" });
|
|
}
|
|
}
|