makearmy-app/app/api/options/material_opacity/route.ts

37 lines
1.4 KiB
TypeScript
Raw Normal View History

2025-09-28 11:15:37 -04:00
// app/api/options/material_opacity/route.ts
export const dynamic = "force-dynamic";
import { NextRequest, NextResponse } from "next/server";
const BASE = (process.env.DIRECTUS_URL || "").replace(/\/$/, "");
export async function GET(req: NextRequest) {
try {
2025-09-28 11:44:34 -04:00
const userAt = req.cookies.get("ma_at")?.value;
if (!userAt) return NextResponse.json({ error: "Not authenticated" }, { status: 401 });
2025-09-28 11:15:37 -04:00
const url = new URL(`${BASE}/items/material_opacity`);
url.searchParams.set("fields", "id,opacity");
2025-09-28 11:44:34 -04:00
url.searchParams.set("sort", "opacity");
2025-09-28 11:15:37 -04:00
const res = await fetch(String(url), {
2025-09-28 11:44:34 -04:00
headers: { Accept: "application/json", Authorization: `Bearer ${userAt}` },
2025-09-28 11:15:37 -04:00
cache: "no-store",
});
const text = await res.text().catch(() => "");
2025-09-28 11:44:34 -04:00
const json = text ? JSON.parse(text) : {};
2025-09-28 11:15:37 -04:00
if (!res.ok) {
2025-09-28 11:44:34 -04:00
return NextResponse.json({ error: `Directus ${res.status}: ${text || res.statusText}` }, { status: res.status });
2025-09-28 11:15:37 -04:00
}
2025-09-28 11:44:34 -04:00
const rows: Array<{ id: number | string; opacity?: string | number }> = json?.data ?? [];
const data = rows
.map(({ id, opacity }) => ({ id, label: String(opacity ?? "") }))
.filter((x) => x.label);
2025-09-28 11:15:37 -04:00
return NextResponse.json({ data });
} catch (e: any) {
return NextResponse.json({ error: e?.message || "Failed to load opacity options" }, { status: 500 });
}
}