import Link from "next/link"; import { sinceUnixDate } from "#/api/utils"; import { Chip } from "#/components/Chip/Chip"; import Image from "next/image"; const profile_lists = { // 0: "Не смотрю", 1: { name: "Смотрю", bg_color: "bg-green-500" }, 2: { name: "В планах", bg_color: "bg-purple-500" }, 3: { name: "Просмотрено", bg_color: "bg-blue-500" }, 4: { name: "Отложено", bg_color: "bg-yellow-500" }, 5: { name: "Брошено", bg_color: "bg-red-500" }, }; export const ReleaseLink169Poster = (props: any) => { const grade = props.grade ? props.grade.toFixed(1) : null; const profile_list_status = props.profile_list_status; let user_list = null; if (profile_list_status != null || profile_list_status != 0) { user_list = profile_lists[profile_list_status]; } return (
{props.title
{props.genres && (

{props.genres}

)}

{`${props.title_ru.slice(0, 47)}${ props.title_ru.length > 47 ? "..." : "" }`}

{`${props.description.slice(0, 97)}${ props.description.length > 97 ? "..." : "" }`}

{grade ? : ""} {user_list && ( )} {props.status ? ( ) : ( props.status_id != 0 && ( ) )} {props.last_view_episode && ( )} {props.category && } {props.is_favorite && (
)}
); };