mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 06:15:39 -04:00
- Change primary argument from TMDB size string (`w500`, `w1280`, etc.) to category name (`posters`, `backdrops`, `stills`, `logos`, `profiles`); optional size override remains as third argument - Update all call sites across services, actions, pages, and route handlers to use the new category-based API - Update image.test.ts to match the new signature and replace size-mapping test descriptions with category-name descriptions
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { IconPlayerPlay } from "@tabler/icons-react";
|
|
import { getContinueWatchingFeed } from "@/lib/services/discovery";
|
|
import { tmdbImageUrl } from "@/lib/tmdb/image";
|
|
import type { ContinueWatchingItemProps } from "./continue-watching-card";
|
|
import { ContinueWatchingList } from "./continue-watching-list";
|
|
import { FeedSection } from "./feed-section";
|
|
|
|
export async function ContinueWatchingSection({ userId }: { userId: string }) {
|
|
const feed = await getContinueWatchingFeed(userId);
|
|
if (feed.length === 0) return null;
|
|
|
|
const items: ContinueWatchingItemProps[] = feed.map((item) => ({
|
|
title: {
|
|
id: item.title.id,
|
|
title: item.title.title,
|
|
backdropPath: tmdbImageUrl(item.title.backdropPath, "backdrops"),
|
|
},
|
|
nextEpisode: item.nextEpisode
|
|
? {
|
|
seasonNumber: item.nextEpisode.seasonNumber,
|
|
episodeNumber: item.nextEpisode.episodeNumber,
|
|
name: item.nextEpisode.name,
|
|
stillPath: tmdbImageUrl(item.nextEpisode.stillPath, "stills"),
|
|
}
|
|
: null,
|
|
totalEpisodes: item.totalEpisodes,
|
|
watchedEpisodes: item.watchedEpisodes,
|
|
}));
|
|
|
|
return (
|
|
<FeedSection
|
|
title="Continue Watching"
|
|
icon={<IconPlayerPlay className="size-5 text-primary" />}
|
|
>
|
|
<ContinueWatchingList items={items} />
|
|
</FeedSection>
|
|
);
|
|
}
|