## Summary - Fixes Railway deployment build failures caused by dynamic server usage errors - Marks routes that use runtime features as `force-dynamic` to prevent static generation attempts - Creates proper error pages to handle 404/500 scenarios ## Problem The build was failing with "Dynamic server usage" errors because Next.js was trying to statically generate pages that use runtime features like: - `cookies()` for authentication - `searchParams` for filtering - Dynamic data fetching that requires request-time context ## Solution Added `export const dynamic = 'force-dynamic'` to: ### API Routes - `/api/jobs/route.ts` - uses searchParams - `/api/jobs/skills/route.ts` - uses cookies via fetchFromApi - `/api/version/route.ts` - uses cookies via fetchFromApi - `/api/raids/groups/route.ts` - uses cookies via fetchFromApi - `/api/parties/route.ts` - uses searchParams and cookies - `/api/parties/[shortcode]/route.ts` - uses cookies - `/api/parties/[shortcode]/remix/route.ts` - uses cookies ### Page Components - `/app/[locale]/teams/page.tsx` - uses searchParams - `/app/[locale]/new/page.tsx` - fetches dynamic data - `/app/[locale]/saved/page.tsx` - uses cookies and searchParams - Additional pages to avoid useContext errors during static generation ### Error Handling - Created `/pages/_error.tsx` - Simple error page without i18n complexity - Created `/app/not-found.tsx` - App Router 404 page ## Test plan - [x] Build completes successfully locally with `npm run build` - [ ] Deploy to Railway staging environment - [ ] Verify all dynamic routes work correctly - [ ] Check error pages display properly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
92 lines
No EOL
2.4 KiB
TypeScript
92 lines
No EOL
2.4 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { z } from 'zod';
|
|
import { fetchFromApi, putToApi, deleteFromApi, revalidate, PartySchema } from '~/app/lib/api-utils';
|
|
|
|
// Force dynamic rendering because fetchFromApi uses cookies
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
// GET handler for fetching a single party by shortcode
|
|
export async function GET(
|
|
request: NextRequest,
|
|
{ params }: { params: { shortcode: string } }
|
|
) {
|
|
try {
|
|
const { shortcode } = params;
|
|
|
|
// Fetch party data
|
|
const data = await fetchFromApi(`/parties/${shortcode}`);
|
|
|
|
return NextResponse.json(data);
|
|
} catch (error: any) {
|
|
console.error(`Error fetching party with shortcode ${params.shortcode}`, error);
|
|
return NextResponse.json(
|
|
{ error: error.message || 'Failed to fetch party' },
|
|
{ status: error.response?.status || 500 }
|
|
);
|
|
}
|
|
}
|
|
|
|
// Update party schema
|
|
const UpdatePartySchema = PartySchema.extend({
|
|
id: z.string().optional(),
|
|
shortcode: z.string().optional(),
|
|
});
|
|
|
|
// PUT handler for updating a party
|
|
export async function PUT(
|
|
request: NextRequest,
|
|
{ params }: { params: { shortcode: string } }
|
|
) {
|
|
try {
|
|
const { shortcode } = params;
|
|
const body = await request.json();
|
|
|
|
// Validate the request body
|
|
const validatedData = UpdatePartySchema.parse(body.party);
|
|
|
|
// Update the party
|
|
const response = await putToApi(`/parties/${shortcode}`, {
|
|
party: validatedData
|
|
});
|
|
|
|
// Revalidate the party page
|
|
revalidate(`/p/${shortcode}`);
|
|
|
|
return NextResponse.json(response);
|
|
} catch (error: any) {
|
|
if (error instanceof z.ZodError) {
|
|
return NextResponse.json(
|
|
{ error: 'Validation error', details: error.errors },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
return NextResponse.json(
|
|
{ error: error.message || 'Failed to update party' },
|
|
{ status: error.response?.status || 500 }
|
|
);
|
|
}
|
|
}
|
|
|
|
// DELETE handler for deleting a party
|
|
export async function DELETE(
|
|
request: NextRequest,
|
|
{ params }: { params: { shortcode: string } }
|
|
) {
|
|
try {
|
|
const { shortcode } = params;
|
|
|
|
// Delete the party
|
|
const response = await deleteFromApi(`/parties/${shortcode}`);
|
|
|
|
// Revalidate related pages
|
|
revalidate(`/teams`);
|
|
|
|
return NextResponse.json(response);
|
|
} catch (error: any) {
|
|
return NextResponse.json(
|
|
{ error: error.message || 'Failed to delete party' },
|
|
{ status: error.response?.status || 500 }
|
|
);
|
|
}
|
|
} |