重构大量文件

This commit is contained in:
2026-02-24 10:50:11 +08:00
parent dd97cf6a2c
commit 9efdf060f5
29 changed files with 264 additions and 133 deletions
+5 -4
View File
@@ -1,5 +1,6 @@
import { NextResponse } from 'next/server';
import { prisma } from '@/lib/prisma';
import type { Prisma } from '@prisma/client';
export async function GET(
request: Request,
@@ -12,7 +13,7 @@ export async function GET(
});
if (!page) return NextResponse.json({ error: 'Page not found' }, { status: 404 });
return NextResponse.json({ ...page, tags: JSON.parse(page.tags || "[]") });
} catch (error) {
} catch {
return NextResponse.json({ error: 'Error fetching page' }, { status: 500 });
}
}
@@ -25,7 +26,7 @@ export async function PUT(
try {
const body = await request.json();
// Separate update logic for flexibility (e.g. only updating title)
const updateData: any = {};
const updateData: Prisma.PageUncheckedUpdateInput = {};
if (body.title !== undefined) updateData.title = body.title;
if (body.content !== undefined) updateData.content = body.content;
if (body.parentId !== undefined) updateData.parentId = body.parentId;
@@ -38,7 +39,7 @@ export async function PUT(
data: updateData,
});
return NextResponse.json({ ...page, tags: JSON.parse(page.tags || "[]") });
} catch (error) {
} catch {
return NextResponse.json({ error: 'Error updating page' }, { status: 500 });
}
}
@@ -53,7 +54,7 @@ export async function DELETE(
where: { id },
});
return NextResponse.json({ success: true });
} catch (error) {
} catch {
return NextResponse.json({ error: 'Error deleting page' }, { status: 500 });
}
}