mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
39 lines
958 B
TypeScript
39 lines
958 B
TypeScript
import type { Api } from "@jellyfin/sdk";
|
|
import { type BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
/**
|
|
* Retrieves the primary image URL for a given item.
|
|
*
|
|
* @param api - The Jellyfin API instance.
|
|
* @param item - The media item to retrieve the backdrop image URL for.
|
|
* @param quality - The desired image quality (default: 90).
|
|
*/
|
|
export const getPrimaryParentImageUrl = ({
|
|
api,
|
|
item,
|
|
quality = 80,
|
|
width = 400,
|
|
}: {
|
|
api?: Api | null;
|
|
item?: BaseItemDto | null;
|
|
quality?: number | null;
|
|
width?: number | null;
|
|
}) => {
|
|
if (!item || !api) {
|
|
return null;
|
|
}
|
|
|
|
const parentId = item.ParentId;
|
|
const primaryTag = item.ParentPrimaryImageTag?.[0];
|
|
|
|
const params = new URLSearchParams({
|
|
fillWidth: width ? String(width) : "500",
|
|
quality: quality ? String(quality) : "80",
|
|
tag: primaryTag || "",
|
|
});
|
|
|
|
return `${
|
|
api?.basePath
|
|
}/Items/${parentId}/Images/Primary?${params.toString()}`;
|
|
};
|