website refactor

This commit is contained in:
2026-01-14 02:02:24 +01:00
parent 8d7c709e0c
commit 4522d41aef
291 changed files with 12763 additions and 9309 deletions

View File

@@ -1,25 +1,26 @@
import { notFound, redirect } from 'next/navigation';
import { DashboardPageQuery } from '@/lib/page-queries/page-queries/DashboardPageQuery';
import { DashboardPageClient } from './DashboardPageClient';
import { DashboardTemplate } from '@/templates/DashboardTemplate';
export default async function DashboardPage() {
const result = await DashboardPageQuery.execute();
const result = await DashboardPageQuery.execute();
// Handle result based on status
switch (result.status) {
case 'ok':
// Pass Page DTO to client component
return <DashboardPageClient pageDto={result.dto} />;
case 'notFound':
notFound();
case 'redirect':
redirect(result.to);
case 'error':
// For now, treat as notFound. Could also show error page
console.error('Dashboard error:', result.errorId);
notFound();
if (result.isErr()) {
const error = result.getError();
// Handle different error types
if (error === 'notFound') {
notFound();
} else if (error === 'redirect') {
redirect('/');
} else {
// DASHBOARD_FETCH_FAILED or UNKNOWN_ERROR
console.error('Dashboard error:', error);
notFound();
}
}
}
// Success
const viewData = result.unwrap();
return <DashboardTemplate viewData={viewData} />;
}