feat: adding episode count indicator

Added a series count indicator, and watched indicator for series

Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
This commit is contained in:
Lance Chant
2026-07-04 12:33:59 +02:00
parent 28a75a2b8c
commit d1637a778e
3 changed files with 107 additions and 27 deletions

View File

@@ -5,6 +5,7 @@ import { useMemo } from "react";
import { View } from "react-native";
import { apiAtom } from "@/providers/JellyfinProvider";
import { getPrimaryImageUrl } from "@/utils/jellyfin/image/getPrimaryImageUrl";
import { WatchedIndicator } from "../WatchedIndicator";
type MoviePosterProps = {
item: BaseItemDto;
@@ -52,6 +53,7 @@ const SeriesPoster: React.FC<MoviePosterProps> = ({ item }) => {
width: "100%",
}}
/>
<WatchedIndicator item={item} />
</View>
);
};