{props.profile.login}
{props.profile.status}
import Image from "next/image"; import { ReleaseCard } from "../ReleaseCard/ReleaseCard"; import { getData } from "@/app/api/api-utils"; import { endpoints } from "@/app/api/config"; import { useEffect, useState } from "react"; function getNoun(number, one, two, five) { let n = Math.abs(number); n %= 100; if (n >= 5 && n <= 20) { return five; } n %= 10; if (n === 1) { return one; } if (n >= 2 && n <= 4) { return two; } return five; } function convertMinutes(min) { const d = Math.floor(min / 1440); // 60*24 const h = Math.floor((min - d * 1440) / 60); const m = Math.round(min % 60); var dDisplay = d > 0 ? `${d} ${getNoun(d, "день", "дня", "дней")}, ` : ""; var hDisplay = h > 0 ? `${h} ${getNoun(h, "час", "часа", "часов")}, ` : ""; var mDisplay = m > 0 ? `${m} ${getNoun(m, "минута", "минуты", "минут")}` : ""; return dDisplay + hDisplay + mDisplay; } export const UserProfile = (props) => { const [lastWatched, setLastWatched] = useState(); useEffect(() => { async function _getData() { const data = await getData( `${endpoints.user.profile}/${props.profile.id}`, ); setLastWatched(data.profile.history); } _getData(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); return ( <>
{props.profile.status}
коммент
видео
коллекций
друзей
Просмотрено серий:{" "} {props.profile.watched_episode_count}
Время просмотра:{" "} {convertMinutes(props.profile.watched_time)}
play_arrow Смотрю:{" "} {props.profile.watching_count}
note_stack В Планах:{" "} {props.profile.plan_count}
done Просмотрено:{" "} {props.profile.completed_count}
schedule Отложено:{" "} {props.profile.hold_on_count}
backspace Брошено:{" "} {props.profile.dropped_count}