diff --git a/app/pages/Bookmarks.tsx b/app/pages/Bookmarks.tsx
index ebada56..6193cb8 100644
--- a/app/pages/Bookmarks.tsx
+++ b/app/pages/Bookmarks.tsx
@@ -10,7 +10,7 @@ import { ENDPOINTS } from "#/api/config";
import { useRouter } from "next/navigation";
import { useEffect } from "react";
-export function BookmarksPage() {
+export function BookmarksPage(props: { profile_id?: number }) {
const token = useUserStore((state) => state.token);
const authState = useUserStore((state) => state.state);
const router = useRouter();
@@ -18,8 +18,15 @@ export function BookmarksPage() {
function useFetchReleases(listName: string) {
let url: string;
- if (token) {
- url = `${ENDPOINTS.user.bookmark}/all/${BookmarksList[listName]}/0?token=${token}`;
+ if (props.profile_id) {
+ url = `${ENDPOINTS.user.bookmark}/all/${props.profile_id}/${BookmarksList[listName]}/0?sort=1`;
+ if (token) {
+ url += `&token=${token}`;
+ }
+ } else {
+ if (token) {
+ url = `${ENDPOINTS.user.bookmark}/all/${BookmarksList[listName]}/0?sort=1&token=${token}`;
+ }
}
const { data } = useSWR(url, fetcher);
@@ -33,7 +40,7 @@ export function BookmarksPage() {
const [abandonedData] = useFetchReleases("abandoned");
useEffect(() => {
- if (authState === "finished" && !token) {
+ if (authState === "finished" && !token && !props.profile_id) {
router.push("/login?redirect=/bookmarks");
}
// eslint-disable-next-line react-hooks/exhaustive-deps
@@ -56,28 +63,44 @@ export function BookmarksPage() {
watchingData.content.length > 0 && (
)}
{plannedData && plannedData.content && plannedData.content.length > 0 && (
)}
{watchedData && watchedData.content && watchedData.content.length > 0 && (
)}
{delayedData && delayedData.content && delayedData.content.length > 0 && (
)}
@@ -86,7 +109,11 @@ export function BookmarksPage() {
abandonedData.content.length > 0 && (
)}
diff --git a/app/pages/BookmarksCategory.tsx b/app/pages/BookmarksCategory.tsx
index 69b9846..f882bef 100644
--- a/app/pages/BookmarksCategory.tsx
+++ b/app/pages/BookmarksCategory.tsx
@@ -40,11 +40,22 @@ export function BookmarksCategoryPage(props: any) {
const getKey = (pageIndex: number, previousPageData: any) => {
if (previousPageData && !previousPageData.content.length) return null;
- if (token) {
- return `${ENDPOINTS.user.bookmark}/all/${
+ let url: string;
+ if (props.profile_id) {
+ url = `${ENDPOINTS.user.bookmark}/all/${props.profile_id}/${
BookmarksList[props.slug]
- }/${pageIndex}?token=${token}&sort=${sort.values[selectedSort].id}`;
+ }/${pageIndex}?sort=${sort.values[selectedSort].id}`;
+ if (token) {
+ url += `&token=${token}`;
+ }
+ } else {
+ if (token) {
+ url = `${ENDPOINTS.user.bookmark}/all/${
+ BookmarksList[props.slug]
+ }/${pageIndex}?sort=${sort.values[selectedSort].id}&token=${token}`;
+ }
}
+ return url;
};
const { data, error, isLoading, size, setSize } = useSWRInfinite(
@@ -74,7 +85,7 @@ export function BookmarksCategoryPage(props: any) {
}, [scrollPosition]);
useEffect(() => {
- if (authState === "finished" && !token) {
+ if (authState === "finished" && !token && !props.profile_id) {
router.push(`/login?redirect=/bookmarks/${props.slug}`);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx
index 9bb6bad..c9f4448 100644
--- a/app/pages/Profile.tsx
+++ b/app/pages/Profile.tsx
@@ -19,7 +19,9 @@ const fetcher = async (url: string) => {
const res = await fetch(url);
if (!res.ok) {
- const error = new Error(`An error occurred while fetching the data. status: ${res.status}`);
+ const error = new Error(
+ `An error occurred while fetching the data. status: ${res.status}`
+ );
error.message = await res.json();
throw error;
}
@@ -185,6 +187,7 @@ export const ProfilePage = (props: any) => {
]}
watched_count={user.watched_episode_count}
watched_time={user.watched_time}
+ profile_id={user.id}
/>
diff --git a/app/profile/[id]/bookmarks/[slug]/page.tsx b/app/profile/[id]/bookmarks/[slug]/page.tsx
new file mode 100644
index 0000000..1e46bf7
--- /dev/null
+++ b/app/profile/[id]/bookmarks/[slug]/page.tsx
@@ -0,0 +1,47 @@
+import { BookmarksCategoryPage } from "#/pages/BookmarksCategory";
+import { fetchDataViaGet } from "#/api/utils";
+import type { Metadata, ResolvingMetadata } from "next";
+
+const SectionTitleMapping = {
+ watching: "Смотрю",
+ planned: "В планах",
+ watched: "Просмотрено",
+ delayed: "Отложено",
+ abandoned: "Заброшено",
+};
+
+export async function generateMetadata(
+ { params },
+ parent: ResolvingMetadata
+): Promise {
+ const id: string = params.id;
+ const profile: any = await fetchDataViaGet(
+ `https://api.anixart.tv/profile/${id}`
+ );
+ const previousOG = (await parent).openGraph;
+
+ return {
+ title: SectionTitleMapping[params.slug] + " - " + profile.profile.login,
+ description: profile.profile.status,
+ openGraph: {
+ ...previousOG,
+ images: [
+ {
+ url: profile.profile.avatar, // Must be an absolute URL
+ width: 600,
+ height: 600,
+ },
+ ],
+ },
+ };
+}
+
+export default function Index({ params }) {
+ return (
+
+ );
+}
diff --git a/app/profile/[id]/bookmarks/page.tsx b/app/profile/[id]/bookmarks/page.tsx
new file mode 100644
index 0000000..a2e5b33
--- /dev/null
+++ b/app/profile/[id]/bookmarks/page.tsx
@@ -0,0 +1,33 @@
+import { BookmarksPage } from "#/pages/Bookmarks";
+import { fetchDataViaGet } from "#/api/utils";
+import type { Metadata, ResolvingMetadata } from "next";
+
+export async function generateMetadata(
+ { params },
+ parent: ResolvingMetadata
+): Promise {
+ const id: string = params.id;
+ const profile: any = await fetchDataViaGet(
+ `https://api.anixart.tv/profile/${id}`
+ );
+ const previousOG = (await parent).openGraph;
+
+ return {
+ title: "Закладки - " + profile.profile.login,
+ description: profile.profile.status,
+ openGraph: {
+ ...previousOG,
+ images: [
+ {
+ url: profile.profile.avatar, // Must be an absolute URL
+ width: 600,
+ height: 600,
+ },
+ ],
+ },
+ };
+}
+
+export default function Index({ params }) {
+ return ;
+}