import { Card, Table, TableBody, TableCell, TableRow } from "flowbite-react"; import { ReleaseInfoSearchLink } from "#/components/ReleaseInfo/ReleaseInfo.SearchLink"; import { unixToDate, minutesToTime } from "#/api/utils"; const weekDay = [ "_", "каждый понедельник", "каждый вторник", "каждую среду", "каждый четверг", "каждую пятницу", "каждую субботу", "каждое воскресенье", ]; const YearSeason = ["_", "Зима", "Весна", "Лето", "Осень"]; export const ReleaseInfoInfo = (props: { country: string | null; aired_on_date: number | null; year: number | null; episodes: { total: number | null; released: number | null }; season: number; status: string; duration: number; category: string; broadcast: number; studio: string | null; author: string | null; director: string | null; genres: string; }) => { return ( {props.country ? props.country.toLowerCase() == "япония" ? : : } {props.country && props.country} {(props.aired_on_date != 0 || props.year) && ", "} {props.season && props.season != 0 ? `${YearSeason[props.season]} ` : ""} {props.year && `${props.year} г.`} {props.episodes.released ? props.episodes.released : "?"} {"/"} {props.episodes.total ? props.episodes.total + " эп. " : "? эп. "} {props.duration != 0 && `по ${minutesToTime(props.duration, "daysHours")}`} {props.category} {", "} {props.broadcast == 0 ? props.status.toLowerCase() : `выходит ${weekDay[props.broadcast]}`} {props.studio && ( <> {"Студия: "} {props.studio .split(", ") .map((studio: string, index: number) => { return (
{index > 0 && ", "}
); })} {(props.author || props.director) && ", "} )} {props.author && ( <> {"Автор: "} {props.director && ", "} )} {props.director && ( <> {"Режиссёр: "} )}
{props.genres && props.genres.split(", ").map((genre: string, index: number) => { return (
{index > 0 && ", "}
); })}
{props.status.toLowerCase() == "анонс" && ( {props.aired_on_date != 0 ? unixToDate(props.aired_on_date, "full") : props.year ? <> {props.season && props.season != 0 ? `${YearSeason[props.season]} ` : ""} {props.year && `${props.year} г.`} : "Скоро"} )}
); };