+ История +
+В истории пока ничего нет...
+diff --git a/app/api/history/route.js b/app/api/history/route.js new file mode 100644 index 0000000..75e650a --- /dev/null +++ b/app/api/history/route.js @@ -0,0 +1,19 @@ +import { NextResponse } from "next/server"; +import { fetchDataViaGet } from "../utils"; +import { ENDPOINTS } from "../config"; + +export async function GET(request) { + const page = parseInt(request.nextUrl.searchParams.get(["page"])) || 0; + const token = request.nextUrl.searchParams.get(["token"]) || null; + const sortName = request.nextUrl.searchParams.get(["sort"]) || "adding_descending"; + + if (!token || token == "null") { + return NextResponse.json({ message: "No token provided" }, { status: 403 }); + } + + let url = new URL(`${ENDPOINTS.user.history}/${page}`); + url.searchParams.set("token", token); + + const response = await fetchDataViaGet(url.toString()); + return NextResponse.json(response); +} diff --git a/app/api/utils.js b/app/api/utils.js index 5c6b1ee..2d7ce12 100644 --- a/app/api/utils.js +++ b/app/api/utils.js @@ -44,14 +44,17 @@ export const fetchDataViaPost = async (url, body, API_V2) => { export const authorize = async (url, data) => { try { - const response = await fetch(`${url}?login=${data.login}&password=${data.password}`, { - method: "POST", - headers: { - "User-Agent": USER_AGENT, - Sign: "9aa5c7af74e8cd70c86f7f9587bde23d", - "Content-Type": "application/x-www-form-urlencoded", - }, - }); + const response = await fetch( + `${url}?login=${data.login}&password=${data.password}`, + { + method: "POST", + headers: { + "User-Agent": USER_AGENT, + Sign: "9aa5c7af74e8cd70c86f7f9587bde23d", + "Content-Type": "application/x-www-form-urlencoded", + }, + } + ); if (response.status !== 200) { throw new Error("Error authorizing user"); } @@ -74,9 +77,34 @@ export function removeJWT() { } export function numberDeclension(number, one, two, five) { - if (number > 10 && [11, 12, 13, 14].includes(number%100)) return five; - let last_num = number%10; + if (number > 10 && [11, 12, 13, 14].includes(number % 100)) return five; + let last_num = number % 10; if (last_num == 1) return one; - if ([2,3,4].includes(last_num)) return two; - if ([5,6,7,8,9, 0].includes(last_num)) return five; + if ([2, 3, 4].includes(last_num)) return two; + if ([5, 6, 7, 8, 9, 0].includes(last_num)) return five; +} + +export function sinceUnixDate(unixInSeconds) { + const unix = Math.floor(unixInSeconds * 1000); + const date = new Date(unix); + const currentDate = new Date().valueOf(); + const dateDifferenceSeconds = new Date(currentDate - unix) / 1000; + + const minutes = Math.floor(dateDifferenceSeconds / 60) + const hours = Math.floor(dateDifferenceSeconds / 3600); + const days = Math.floor(dateDifferenceSeconds / 86400); + + const minutesName = numberDeclension(minutes, "минута", "минуты", "минут"); + const hoursName = numberDeclension(hours, "час", "часа", "часов"); + const daysName = numberDeclension(days, "день", "дня", "дней"); + + if (dateDifferenceSeconds < 60) return "менее минуты назад"; + if (dateDifferenceSeconds < 3600) + return `${minutes} ${minutesName} назад`; + if (dateDifferenceSeconds < 86400) + return `${hours} ${hoursName} назад`; + if (dateDifferenceSeconds < 2592000) + return `${days} ${daysName} назад`; + + return date.toLocaleString("ru-RU").split(",")[0]; } diff --git a/app/components/ReleaseLink/ReleaseLink.jsx b/app/components/ReleaseLink/ReleaseLink.jsx index 8f6c7f6..91b8517 100644 --- a/app/components/ReleaseLink/ReleaseLink.jsx +++ b/app/components/ReleaseLink/ReleaseLink.jsx @@ -1,4 +1,5 @@ import Link from "next/link"; +import { sinceUnixDate } from "@/app/api/utils"; export const ReleaseLink = (props) => { const grade = props.grade.toFixed(1); @@ -25,7 +26,7 @@ export const ReleaseLink = (props) => { src={props.image} alt="" /> -
+
{grade}
+
{props.status.name}
+
{props.status_id == 1 ? "Завершено" : props.status_id == 2 @@ -88,6 +84,30 @@ export const ReleaseLink = (props) => { )}
{`${props.last_view_episode.name}`}
+ ) : ( +{`${props.last_view_episode.position + 1} серия`}
+ )} +{sinceUnixDate(props.last_view_timestamp)}
+
{props.title_ru}
diff --git a/app/history/page.js b/app/history/page.js
new file mode 100644
index 0000000..79e029d
--- /dev/null
+++ b/app/history/page.js
@@ -0,0 +1,9 @@
+export const metadata = {
+ title: "История",
+};
+
+import { HistoryPage } from "@/app/pages/History";
+
+export default function Index() {
+ return В истории пока ничего нет...
+ История
+
+