mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-18 05:21:31 +00:00
148 lines
4.6 KiB
TypeScript
148 lines
4.6 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { Link } from "react-router-dom";
|
|
|
|
import { TTVMediaToId } from "@/backend/metadata/getmeta";
|
|
import { MWMediaMeta } from "@/backend/metadata/types";
|
|
import { DotList } from "@/components/text/DotList";
|
|
|
|
import { IconPatch } from "../buttons/IconPatch";
|
|
import { Icons } from "../Icon";
|
|
|
|
export interface MediaCardProps {
|
|
media: MWMediaMeta;
|
|
linkable?: boolean;
|
|
series?: {
|
|
episode: number;
|
|
season: number;
|
|
episodeId: string;
|
|
seasonId: string;
|
|
};
|
|
percentage?: number;
|
|
closable?: boolean;
|
|
onClose?: () => void;
|
|
}
|
|
|
|
function MediaCardContent({
|
|
media,
|
|
linkable,
|
|
series,
|
|
percentage,
|
|
closable,
|
|
onClose,
|
|
}: MediaCardProps) {
|
|
const { t } = useTranslation();
|
|
const percentageString = `${Math.round(percentage ?? 0).toFixed(0)}%`;
|
|
|
|
const canLink = linkable && !closable;
|
|
|
|
const dotListContent = [t(`media.${media.type}`)];
|
|
if (media.year) dotListContent.push(media.year);
|
|
|
|
return (
|
|
<div
|
|
className={`group -m-3 mb-2 rounded-xl bg-denim-300 bg-opacity-0 transition-colors duration-100 ${
|
|
canLink ? "hover:bg-opacity-100" : ""
|
|
}`}
|
|
>
|
|
<article
|
|
className={`pointer-events-auto relative mb-2 p-3 transition-transform duration-100 ${
|
|
canLink ? "group-hover:scale-95" : ""
|
|
}`}
|
|
>
|
|
<div
|
|
className={[
|
|
"relative mb-4 aspect-[2/3] w-full overflow-hidden rounded-xl bg-denim-500 bg-cover bg-center transition-[border-radius] duration-100",
|
|
closable ? "" : "group-hover:rounded-lg",
|
|
].join(" ")}
|
|
style={{
|
|
backgroundImage: media.poster ? `url(${media.poster})` : undefined,
|
|
}}
|
|
>
|
|
{series ? (
|
|
<div
|
|
className={[
|
|
"absolute right-2 top-2 rounded-md bg-denim-200 px-2 py-1 transition-colors",
|
|
closable ? "" : "group-hover:bg-denim-500",
|
|
].join(" ")}
|
|
>
|
|
<p
|
|
className={[
|
|
"text-center text-xs font-bold text-slate-400 transition-colors",
|
|
closable ? "" : "group-hover:text-white",
|
|
].join(" ")}
|
|
>
|
|
{t("seasons.seasonAndEpisode", {
|
|
season: series.season,
|
|
episode: series.episode,
|
|
})}
|
|
</p>
|
|
</div>
|
|
) : null}
|
|
|
|
{percentage !== undefined ? (
|
|
<>
|
|
<div
|
|
className={`absolute inset-x-0 bottom-0 h-12 bg-gradient-to-t from-denim-300 to-transparent transition-colors ${
|
|
canLink ? "group-hover:from-denim-100" : ""
|
|
}`}
|
|
/>
|
|
<div
|
|
className={`absolute inset-x-0 bottom-0 h-12 bg-gradient-to-t from-denim-300 to-transparent transition-colors ${
|
|
canLink ? "group-hover:from-denim-100" : ""
|
|
}`}
|
|
/>
|
|
<div className="absolute inset-x-0 bottom-0 p-3">
|
|
<div className="relative h-1 overflow-hidden rounded-full bg-denim-600">
|
|
<div
|
|
className="absolute inset-y-0 left-0 rounded-full bg-bink-700"
|
|
style={{
|
|
width: percentageString,
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
) : null}
|
|
|
|
<div
|
|
className={`absolute inset-0 flex items-center justify-center bg-denim-200 bg-opacity-80 transition-opacity duration-200 ${
|
|
closable ? "opacity-100" : "pointer-events-none opacity-0"
|
|
}`}
|
|
>
|
|
<IconPatch
|
|
clickable
|
|
className="text-2xl text-slate-400"
|
|
onClick={() => closable && onClose?.()}
|
|
icon={Icons.X}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<h1 className="mb-1 max-h-[4.5rem] text-ellipsis break-words font-bold text-white line-clamp-3">
|
|
<span>{media.title}</span>
|
|
</h1>
|
|
<DotList className="text-xs" content={dotListContent} />
|
|
</article>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function MediaCard(props: MediaCardProps) {
|
|
const content = <MediaCardContent {...props} />;
|
|
|
|
const canLink = props.linkable && !props.closable;
|
|
|
|
let link = canLink
|
|
? `/media/${encodeURIComponent(TTVMediaToId(props.media))}`
|
|
: "#";
|
|
if (canLink && props.series)
|
|
link += `/${encodeURIComponent(props.series.seasonId)}/${encodeURIComponent(
|
|
props.series.episodeId
|
|
)}`;
|
|
|
|
if (!props.linkable) return <span>{content}</span>;
|
|
return (
|
|
<Link to={link} className={props.closable ? "hover:cursor-default" : ""}>
|
|
{content}
|
|
</Link>
|
|
);
|
|
}
|