From 384bd09a27e03c7b234943a1399074ef4c5b9fe3 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 18 Sep 2024 16:01:01 +0500 Subject: [PATCH] feat: add edit profile modal template --- app/components/Profile/Profile.Actions.tsx | 4 +- app/components/Profile/Profile.EditModal.tsx | 76 ++++++++++++++++++++ app/pages/Profile.tsx | 6 ++ 3 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 app/components/Profile/Profile.EditModal.tsx diff --git a/app/components/Profile/Profile.Actions.tsx b/app/components/Profile/Profile.Actions.tsx index cb6a927..5f41098 100644 --- a/app/components/Profile/Profile.Actions.tsx +++ b/app/components/Profile/Profile.Actions.tsx @@ -21,6 +21,8 @@ export const ProfileActions = (props: { token: string; is_me_blocked: boolean; is_blocked: boolean; + edit_isOpen: boolean; + edit_setIsOpen: any; }) => { const router = useRouter(); const profileIdIsSmaller = props.my_profile_id < props.profile_id; @@ -107,7 +109,7 @@ export const ProfileActions = (props: {

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

)}
- {props.isMyProfile && } + {props.isMyProfile && } {!props.isMyProfile && ( <> {(!props.isFriendRequestsDisallowed || diff --git a/app/components/Profile/Profile.EditModal.tsx b/app/components/Profile/Profile.EditModal.tsx new file mode 100644 index 0000000..ec770aa --- /dev/null +++ b/app/components/Profile/Profile.EditModal.tsx @@ -0,0 +1,76 @@ +import { Modal } from "flowbite-react"; + +export const ProfileEditModal = (props: {isOpen: boolean, setIsOpen: (isOpen: boolean) => void}) => { + return ( + props.setIsOpen(false)} + size={"7xl"} + > + Редактирование профиля + +
+
+
+ +

Профиль

+
+
+

Изменить аватар

+
+
+

Изменить статус

+

статус

+
+
+

Изменить никнейм

+

никнейм

+
+
+
+
+ +

Приватность

+
+
+

Кто видит мою статистику, оценки и историю просмотра

+

Все пользователи

+
+
+

Кто видит в профиле мои комментарии, коллекции, видео и друзей

+

Все пользователи

+
+
+

Кто видит в профиле мои социальные сети

+

Все пользователи

+
+
+

Кто может отправлять мне заявки в друзья

+

Все пользователи

+
+
+

Блоклист

+

Список пользователей, которым запрещён доступ к вашей странице

+
+
+
+
+ +

Безопасность и привязка к сервисам

+
+
+

Изменить Email или Пароль

+

Изменить возможно только в мобильном приложении

+
+
+

Привязка к сервисам

+

Изменить возможно только в мобильном приложении

+

Аккаунт привязан к: сер1, сер2

+
+
+
+
+
+ ); +}; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 8f81a80..0dccc46 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -14,6 +14,7 @@ import { ProfileWatchDynamic } from "#/components/Profile/Profile.WatchDynamic"; import { ProfileActions } from "#/components/Profile/Profile.Actions"; import { ProfileReleaseRatings } from "#/components/Profile/Profile.ReleaseRatings"; import { ProfileReleaseHistory } from "#/components/Profile/Profile.ReleaseHistory"; +import { ProfileEditModal } from "#/components/Profile/Profile.EditModal"; const fetcher = async (url: string) => { const res = await fetch(url); @@ -34,6 +35,8 @@ export const ProfilePage = (props: any) => { const [user, setUser] = useState(null); const [isMyProfile, setIsMyProfile] = useState(false); + const [isOpen, setIsOpen] = useState(false); + let url = `${ENDPOINTS.user.profile}/${props.id}`; if (authUser.token) { url += `?token=${authUser.token}`; @@ -173,6 +176,8 @@ export const ProfilePage = (props: any) => { token={authUser.token} is_me_blocked={user.is_me_blocked} is_blocked={user.is_blocked} + edit_isOpen={isOpen} + edit_setIsOpen={setIsOpen} /> )} {!user.is_stats_hidden && ( @@ -202,6 +207,7 @@ export const ProfilePage = (props: any) => { )}
+ ); };