From 8c1e00fe9778f2d6a02c63925fc3841eb5600ff4 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 25 Aug 2024 23:31:46 +0500 Subject: [PATCH] feat: add friend requests --- TODO.md | 7 +- app/components/Profile/Profile.Actions.tsx | 92 +++++++++++++++++++++- app/components/Profile/Profile.User.tsx | 1 - app/pages/Profile.tsx | 23 +++--- 4 files changed, 106 insertions(+), 17 deletions(-) diff --git a/TODO.md b/TODO.md index 338c4f1..27ab84c 100644 --- a/TODO.md +++ b/TODO.md @@ -24,13 +24,10 @@ ### Профиль -- [ ] Оценки релизов -- [ ] Динамика просмотра серий -- [ ] Значки команд озвучки\перевода и т.д. - [ ] Просмотр комментариев пользователя к релизам и коллекциям. - [ ] Редактирование профиля. -- [ ] Уважение настроек приватности пользователя. -- [ ] Добавление друзей. +- [ ] Просмотр всех оценок +- [ ] Просмотр всех списков ## Баги diff --git a/app/components/Profile/Profile.Actions.tsx b/app/components/Profile/Profile.Actions.tsx index d8c695b..5b2a1e4 100644 --- a/app/components/Profile/Profile.Actions.tsx +++ b/app/components/Profile/Profile.Actions.tsx @@ -1,20 +1,108 @@ "use client"; +import { ENDPOINTS } from "#/api/config"; import { Card, Button } from "flowbite-react"; import { useRouter } from "next/navigation"; +import { useState } from "react"; + +// null - не друзья +// 0 - заявка в друзья authUserId < profileId +// 1 - заявка в друзья authUserId > profileId +// 2 - друзья + +// если id профиля больше id юзера, то 0 иначе 1 export const ProfileActions = (props: { isMyProfile: boolean; isFriendRequestsDisallowed: boolean; profile_id: number; + my_profile_id: number; + friendStatus: number; + token: string; }) => { + const router = useRouter(); + const z2 = props.my_profile_id < props.profile_id; + let profileIdIsSmaller = z2 ? true : false; + + const [friendRequestDisabled, setfriendRequestDisabled] = useState(false); + + function _getFriendStatus() { + const num = props.friendStatus; + + if (num == null) { + return null; + } + let z = true; + if (num == 2) { + return 1; + } + let z3 = (num == 0 && z2) || (num == 1 && !z2); + if ((num != 1 || z2) && (num != 0 || !z2)) { + z = false; + } + if (z3) { + return 2; + } + if (z) { + return 3; + } + return 0; + } + const FriendStatus = _getFriendStatus(); + const isRequestedStatus = + FriendStatus != null + ? profileIdIsSmaller + ? profileIdIsSmaller && FriendStatus != 0 + : !profileIdIsSmaller && FriendStatus == 2 + : null; + // ^ This is some messed up shit + + function _addToFriends() { + let url = `${ENDPOINTS.user.profile}/friend/request`; + setfriendRequestDisabled(true); + + FriendStatus == 1 + ? (url += "/remove/") + : isRequestedStatus + ? (url += "/remove/") + : (url += "/send/"); + + url += `${props.profile_id}?token=${props.token}`; + fetch(url).then((res) => { + setTimeout(() => { + window.location.reload(); + }, 1000); + }); + } + return ( + {isRequestedStatus != null && !isRequestedStatus && FriendStatus != 1 && ( +

Отправил(-а) вам заявку в друзья

+ )}
{props.isMyProfile && } {!props.isMyProfile && ( <> - {!props.isFriendRequestsDisallowed && ( - + {(!props.isFriendRequestsDisallowed || + FriendStatus == 1 || + isRequestedStatus) && ( + )} diff --git a/app/components/Profile/Profile.User.tsx b/app/components/Profile/Profile.User.tsx index 1bc4743..afc9a1a 100644 --- a/app/components/Profile/Profile.User.tsx +++ b/app/components/Profile/Profile.User.tsx @@ -34,7 +34,6 @@ export const ProfileUser = (props: { rating: number; }) => { const router = useRouter(); - console.log(props.chips); return ( {props.chips.hasChips && ( diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 83dd7ad..a9e9276 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -16,7 +16,7 @@ import { ProfileReleaseRatings } from "#/components/Profile/Profile.ReleaseRatin import { ProfileReleaseHistory } from "#/components/Profile/Profile.ReleaseHistory"; export const ProfilePage = (props: any) => { - const authUser = useUserStore((state) => state); + const authUser = useUserStore(); const [user, setUser] = useState(null); const [isMyProfile, setIsMyProfile] = useState(false); @@ -136,7 +136,7 @@ export const ProfilePage = (props: any) => { /> )} {!user.is_stats_hidden && ( -
+
{user.votes && user.votes.length > 0 && ( )} @@ -146,12 +146,17 @@ export const ProfilePage = (props: any) => {
)}
-
- +
+ {authUser.token && ( + + )} {!user.is_stats_hidden && ( <> { watched_time={user.watched_time} /> -
+
{user.votes && user.votes.length > 0 && ( )}