diff --git a/app/components/Profile/Profile.EditPrivacyModal.tsx b/app/components/Profile/Profile.EditPrivacyModal.tsx index 5428fc9..59c8bdb 100644 --- a/app/components/Profile/Profile.EditPrivacyModal.tsx +++ b/app/components/Profile/Profile.EditPrivacyModal.tsx @@ -1,8 +1,10 @@ "use client"; -import { Modal } from "flowbite-react"; +import { Modal, useThemeMode } from "flowbite-react"; import { ENDPOINTS } from "#/api/config"; import { useState } from "react"; +import { toast } from "react-toastify"; +import { tryCatchAPI } from "#/api/utils"; export const ProfileEditPrivacyModal = (props: { isOpen: boolean; @@ -33,33 +35,60 @@ export const ProfileEditPrivacyModal = (props: { }; const [loading, setLoading] = useState(false); + const theme = useThemeMode(); - function _setPrivacySetting(el: any) { + async function _setPrivacySetting(el: any) { let privacySettings = structuredClone(props.privacySettings); setLoading(true); - fetch(_endpoints[props.setting], { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - permission: el.target.value, - }), - }) - .then((res) => { - if (res.ok) { - setLoading(false); - privacySettings[el.target.name] = el.target.value; - props.setPrivacySettings(privacySettings); - props.setIsOpen(false) - } else { - new Error("failed to send data"); - } + + const tid = toast.loading("Обновление настроек приватности...", { + position: "bottom-center", + hideProgressBar: true, + closeOnClick: false, + pauseOnHover: false, + draggable: false, + theme: theme.mode == "light" ? "light" : "dark", + }); + + const { data, error } = await tryCatchAPI( + fetch(_endpoints[props.setting], { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + permission: el.target.value, + }), }) - .catch((err) => { - console.log(err); - setLoading(false); + ); + + if (error) { + toast.update(tid, { + render: "Ошибка обновления настроек приватности", + type: "error", + autoClose: 2500, + isLoading: false, + closeOnClick: true, + draggable: true, }); + + setLoading(false); + return; + } + + toast.update(tid, { + render: "Настройки приватности обновлены", + type: "success", + autoClose: 2500, + isLoading: false, + closeOnClick: true, + draggable: true, + }); + + setLoading(false); + privacySettings[el.target.name] = el.target.value; + props.setPrivacySettings(privacySettings); + props.setIsOpen(false); } return ( @@ -71,10 +100,10 @@ export const ProfileEditPrivacyModal = (props: { > {setting_text[props.setting]} - {props.setting != "none" ? ( + {props.setting != "none" ? <>
- {props.setting == "privacy_friend_requests" ? ( + {props.setting == "privacy_friend_requests" ? <>
- ) : ( - <> + : <>
- )} + }
- ) : ( - "" - )} + : ""}
);