refactor: merge onDeck and ongoingBooks into single "continue reading" carousel
Some checks failed
Build, Push & Deploy / deploy (push) Has been cancelled

Uses /books/ongoing as single source for Stripstream, displayed with
featured header style. Removes separate "up next" section.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 16:39:33 +01:00
parent 53af9db046
commit 86b7382a04
2 changed files with 19 additions and 18 deletions

View File

@@ -6,12 +6,24 @@ interface HomeContentProps {
}
export function HomeContent({ data }: HomeContentProps) {
// Merge onDeck (next unread per series) and ongoingBooks (currently reading),
// deduplicate by id, onDeck first
const continueReading = (() => {
const items = [...(data.onDeck ?? []), ...(data.ongoingBooks ?? [])];
const seen = new Set<string>();
return items.filter((item) => {
if (seen.has(item.id)) return false;
seen.add(item.id);
return true;
});
})();
return (
<div className="space-y-10 pb-2">
{data.ongoingBooks && data.ongoingBooks.length > 0 && (
{continueReading.length > 0 && (
<MediaRow
titleKey="home.sections.continue_reading"
items={data.ongoingBooks}
items={continueReading}
iconName="BookOpen"
featuredHeader
/>
@@ -33,14 +45,6 @@ export function HomeContent({ data }: HomeContentProps) {
/>
)}
{data.onDeck && data.onDeck.length > 0 && (
<MediaRow
titleKey="home.sections.up_next"
items={data.onDeck}
iconName="Clock"
/>
)}
{data.latestSeries && data.latestSeries.length > 0 && (
<MediaRow
titleKey="home.sections.latest_series"