mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
129 lines
3.3 KiB
TypeScript
129 lines
3.3 KiB
TypeScript
"use client";
|
||
|
||
import { Button, Modal, ModalBody, ModalFooter, ModalHeader, 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;
|
||
setIsOpen: (isOpen: boolean) => void;
|
||
token: string;
|
||
status: string;
|
||
setStatus: (status: string) => void;
|
||
profile_id: number;
|
||
}) => {
|
||
const [loading, setLoading] = useState(false);
|
||
const [_status, _setStatus] = useState("");
|
||
const [_stringLength, _setStringLength] = useState(0);
|
||
const { mutate } = useSWRConfig();
|
||
const theme = useThemeMode();
|
||
const userStore = useUserStore();
|
||
|
||
useEffect(() => {
|
||
_setStatus(props.status);
|
||
_setStringLength(props.status.length);
|
||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
}, [props.isOpen]);
|
||
|
||
function handleInput(e: any) {
|
||
_setStatus(e.target.value);
|
||
_setStringLength(e.target.value.length);
|
||
}
|
||
|
||
async function _setStatusSetting() {
|
||
setLoading(true);
|
||
|
||
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,
|
||
}),
|
||
})
|
||
);
|
||
|
||
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 (
|
||
<Modal
|
||
dismissible
|
||
show={props.isOpen}
|
||
onClose={() => props.setIsOpen(false)}
|
||
size={"4xl"}
|
||
>
|
||
<ModalHeader>Изменить статус</ModalHeader>
|
||
<ModalBody>
|
||
<Textarea
|
||
disabled={loading}
|
||
rows={3}
|
||
id="status"
|
||
className="w-full"
|
||
name="status"
|
||
onChange={(e) => handleInput(e)}
|
||
value={_status}
|
||
maxLength={80}
|
||
/>
|
||
<p className="text-sm text-right text-gray-500 dark:text-gray-300">
|
||
{_stringLength}/80
|
||
</p>
|
||
</ModalBody>
|
||
<ModalFooter>
|
||
<Button
|
||
color="blue"
|
||
onClick={() => _setStatusSetting()}
|
||
disabled={loading}
|
||
>
|
||
Сохранить
|
||
</Button>
|
||
<Button color="red" onClick={() => props.setIsOpen(false)}>
|
||
Отмена
|
||
</Button>
|
||
</ModalFooter>
|
||
</Modal>
|
||
);
|
||
};
|