feat: add toast to user socials update

This commit is contained in:
Kentai Radiquum 2025-03-22 01:48:33 +05:00
parent e3fe979714
commit 9c26654ca9
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -1,10 +1,12 @@
"use client"; "use client";
import { Button, Modal, Label, TextInput } from "flowbite-react"; import { Button, Modal, Label, TextInput, useThemeMode } from "flowbite-react";
import { Spinner } from "../Spinner/Spinner"; import { Spinner } from "../Spinner/Spinner";
import { ENDPOINTS } from "#/api/config"; import { ENDPOINTS } from "#/api/config";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { useSWRConfig } from "swr"; import { useSWRConfig } from "swr";
import { toast } from "react-toastify";
import { tryCatchAPI } from "#/api/utils";
export const ProfileEditSocialModal = (props: { export const ProfileEditSocialModal = (props: {
isOpen: boolean; isOpen: boolean;
@ -22,6 +24,7 @@ export const ProfileEditSocialModal = (props: {
ttPage: "", ttPage: "",
}); });
const { mutate } = useSWRConfig(); const { mutate } = useSWRConfig();
const theme = useThemeMode();
function _addUrl(username: string, social: string) { function _addUrl(username: string, social: string) {
if (!username) { if (!username) {
@ -52,37 +55,51 @@ export const ProfileEditSocialModal = (props: {
} }
useEffect(() => { useEffect(() => {
setLoading(true); async function _fetchSettings() {
fetch(`${ENDPOINTS.user.settings.socials.info}?token=${props.token}`) setLoading(true);
.then((res) => {
if (res.ok) {
return res.json();
}
})
.then((data) => {
setSocials({
vkPage: data.vk_page,
tgPage: data.tg_page,
discordPage: data.discord_page,
instPage: data.inst_page,
ttPage: data.tt_page,
});
setLoading(false);
});
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.isOpen]);
const { data, error } = await tryCatchAPI(
fetch(`${ENDPOINTS.user.settings.socials.info}?token=${props.token}`)
);
if (error) {
toast.error("Ошибка получения соц. сетей", {
type: "error",
autoClose: 2500,
isLoading: false,
closeOnClick: true,
draggable: true,
});
setLoading(false);
props.setIsOpen(false);
return;
}
setSocials({
vkPage: data.vk_page,
tgPage: data.tg_page,
discordPage: data.discord_page,
instPage: data.inst_page,
ttPage: data.tt_page,
});
setLoading(false);
}
_fetchSettings();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.isOpen]);
function handleInput(e: any) { function handleInput(e: any) {
const social = { const social = {
...socials, ...socials,
[e.target.name]: e.target.value [e.target.name]: e.target.value,
} };
setSocials(social); setSocials(social);
} }
function _setSocialSetting() { async function _setSocialSetting() {
const data = { const body = {
vkPage: _removeUrl(socials.vkPage), vkPage: _removeUrl(socials.vkPage),
tgPage: _removeUrl(socials.tgPage), tgPage: _removeUrl(socials.tgPage),
discordPage: _removeUrl(socials.discordPage), discordPage: _removeUrl(socials.discordPage),
@ -91,28 +108,53 @@ export const ProfileEditSocialModal = (props: {
}; };
setUpdating(true); setUpdating(true);
fetch(`${ENDPOINTS.user.settings.socials.edit}?token=${props.token}`, { const tid = toast.loading("Обновление соц. сетей...", {
method: "POST", position: "bottom-center",
headers: { hideProgressBar: true,
"Content-Type": "application/json", closeOnClick: false,
}, pauseOnHover: false,
body: JSON.stringify(data), draggable: false,
}) theme: theme.mode == "light" ? "light" : "dark",
.then((res) => { });
if (res.ok) {
mutate( const { data, error } = await tryCatchAPI(
`${ENDPOINTS.user.profile}/${props.profile_id}?token=${props.token}` fetch(`${ENDPOINTS.user.settings.socials.edit}?token=${props.token}`, {
); method: "POST",
setUpdating(false); headers: {
props.setIsOpen(false); "Content-Type": "application/json",
} else { },
new Error("failed to send data"); body: JSON.stringify(body),
}
}) })
.catch((err) => { );
console.log(err);
setUpdating(false); if (error) {
toast.update(tid, {
render: "Ошибка обновления соц. сетей",
type: "error",
autoClose: 2500,
isLoading: false,
closeOnClick: true,
draggable: true,
}); });
setUpdating(false);
return;
}
toast.update(tid, {
render: "Соц. сети обновлены",
type: "success",
autoClose: 2500,
isLoading: false,
closeOnClick: true,
draggable: true,
});
mutate(
`${ENDPOINTS.user.profile}/${props.profile_id}?token=${props.token}`
);
setUpdating(false);
props.setIsOpen(false);
} }
return ( return (
@ -128,12 +170,11 @@ export const ProfileEditSocialModal = (props: {
Укажите ссылки на свои социальные сети, чтобы другие пользователи Укажите ссылки на свои социальные сети, чтобы другие пользователи
могли с вами связаться могли с вами связаться
</p> </p>
{loading ? ( {loading ?
<div className="flex items-center justify-center py-8"> <div className="flex items-center justify-center py-8">
<Spinner /> <Spinner />
</div> </div>
) : ( : <div className="flex flex-col gap-4 py-4">
<div className="flex flex-col gap-4 py-4">
<div> <div>
<div className="block mb-2"> <div className="block mb-2">
<Label htmlFor="vk-page" value="ВКонтакте" /> <Label htmlFor="vk-page" value="ВКонтакте" />
@ -195,7 +236,7 @@ export const ProfileEditSocialModal = (props: {
/> />
</div> </div>
</div> </div>
)} }
</Modal.Body> </Modal.Body>
<Modal.Footer> <Modal.Footer>
<Button <Button
@ -205,7 +246,11 @@ export const ProfileEditSocialModal = (props: {
> >
Сохранить Сохранить
</Button> </Button>
<Button color="red" onClick={() => props.setIsOpen(false)}> <Button
color="red"
onClick={() => props.setIsOpen(false)}
disabled={updating}
>
Отмена Отмена
</Button> </Button>
</Modal.Footer> </Modal.Footer>