Some checks failed
Deploy with Docker Compose / deploy (push) Has been cancelled
- Introduce provider abstraction layer (IMediaProvider, KomgaProvider, StripstreamProvider) - Add Stripstream Librarian as second media provider with full feature parity - Migrate all pages and components from direct Komga services to provider factory - Remove dead service code (BaseApiService, HomeService, LibraryService, SearchService, TestService) - Fix library/series page-based pagination for both providers (Komga 0-indexed, Stripstream 1-indexed) - Fix unread filter and search on library page for both providers - Fix read progress display for Stripstream (reading_status mapping) - Fix series read status (books_read_count) for Stripstream - Add global search with series results for Stripstream (series_hits from Meilisearch) - Fix thumbnail proxy to return 404 gracefully instead of JSON on upstream error - Replace duration-based cache debug detection with x-nextjs-cache header Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { getProvider } from "@/lib/providers/provider.factory";
|
|
import { HomeContent } from "@/components/home/HomeContent";
|
|
import { HomeClientWrapper } from "@/components/home/HomeClientWrapper";
|
|
import { ErrorMessage } from "@/components/ui/ErrorMessage";
|
|
import { ERROR_CODES } from "@/constants/errorCodes";
|
|
import { AppError } from "@/utils/errors";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export default async function HomePage() {
|
|
try {
|
|
const provider = await getProvider();
|
|
if (!provider) redirect("/settings");
|
|
|
|
const data = await provider.getHomeData();
|
|
|
|
return (
|
|
<HomeClientWrapper>
|
|
<HomeContent data={data} />
|
|
</HomeClientWrapper>
|
|
);
|
|
} catch (error) {
|
|
if (error instanceof AppError && (
|
|
error.code === ERROR_CODES.KOMGA.MISSING_CONFIG ||
|
|
error.code === ERROR_CODES.STRIPSTREAM.MISSING_CONFIG
|
|
)) {
|
|
redirect("/settings");
|
|
}
|
|
|
|
const errorCode = error instanceof AppError ? error.code : ERROR_CODES.HOME.FETCH_ERROR;
|
|
|
|
return (
|
|
<main className="container mx-auto px-4 py-8">
|
|
<ErrorMessage errorCode={errorCode} />
|
|
</main>
|
|
);
|
|
}
|
|
}
|