diff --git a/app/components/Profile/Profile.EditModal.tsx b/app/components/Profile/Profile.EditModal.tsx index f9a16c3..73c7257 100644 --- a/app/components/Profile/Profile.EditModal.tsx +++ b/app/components/Profile/Profile.EditModal.tsx @@ -176,6 +176,7 @@ export const ProfileEditModal = (props: { mutate( `${ENDPOINTS.user.profile}/${props.profile_id}?token=${props.token}` ); + userStore.checkAuth(); } if (avatarModalProps.croppedImage) { diff --git a/app/components/Profile/Profile.EditStatusModal.tsx b/app/components/Profile/Profile.EditStatusModal.tsx index 62d7c0d..d8d870f 100644 --- a/app/components/Profile/Profile.EditStatusModal.tsx +++ b/app/components/Profile/Profile.EditStatusModal.tsx @@ -1,9 +1,12 @@ "use client"; -import { Button, Modal, Textarea } from "flowbite-react"; +import { Button, Modal, Textarea, useThemeMode } from "flowbite-react"; import { ENDPOINTS } from "#/api/config"; import { useEffect, useState } from "react"; import { useSWRConfig } from "swr"; +import { toast } from "react-toastify"; +import { tryCatchAPI } from "#/api/utils"; +import { useUserStore } from "#/store/auth"; export const ProfileEditStatusModal = (props: { isOpen: boolean; @@ -17,6 +20,8 @@ export const ProfileEditStatusModal = (props: { const [_status, _setStatus] = useState(""); const [_stringLength, _setStringLength] = useState(0); const { mutate } = useSWRConfig(); + const theme = useThemeMode(); + const userStore = useUserStore(); useEffect(() => { _setStatus(props.status); @@ -29,33 +34,59 @@ export const ProfileEditStatusModal = (props: { _setStringLength(e.target.value.length); } - function _setStatusSetting() { + async function _setStatusSetting() { setLoading(true); - fetch(`${ENDPOINTS.user.settings.status}?token=${props.token}`, { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - status: _status, - }), - }) - .then((res) => { - if (res.ok) { - mutate( - `${ENDPOINTS.user.profile}/${props.profile_id}?token=${props.token}` - ); - setLoading(false); - props.setStatus(_status); - 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.user.settings.status}?token=${props.token}`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + status: _status, + }), }) - .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, + }); + + props.setStatus(_status); + mutate( + `${ENDPOINTS.user.profile}/${props.profile_id}?token=${props.token}` + ); + userStore.checkAuth(); + setLoading(false); + props.setIsOpen(false); } return ( @@ -82,7 +113,13 @@ export const ProfileEditStatusModal = (props: {