mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add toast for release user list change
This commit is contained in:
parent
60ece79df3
commit
4c6fb75785
1 changed files with 41 additions and 3 deletions
|
@ -35,7 +35,7 @@ export const ReleaseInfoUserList = (props: {
|
||||||
const [AddReleaseToCollectionModalOpen, setAddReleaseToCollectionModalOpen] =
|
const [AddReleaseToCollectionModalOpen, setAddReleaseToCollectionModalOpen] =
|
||||||
useState(false);
|
useState(false);
|
||||||
const [favButtonDisabled, setFavButtonDisabled] = useState(false);
|
const [favButtonDisabled, setFavButtonDisabled] = useState(false);
|
||||||
const [listEventDisabledd, setListEventDisabled] = useState(false);
|
const [listEventDisabled, setListEventDisabled] = useState(false);
|
||||||
const theme = useThemeMode();
|
const theme = useThemeMode();
|
||||||
|
|
||||||
function _addToFavorite() {
|
function _addToFavorite() {
|
||||||
|
@ -96,9 +96,46 @@ export const ReleaseInfoUserList = (props: {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _addToList(list: number) {
|
function _addToList(list: number) {
|
||||||
if (props.token) {
|
async function _setList(url: string) {
|
||||||
|
setListEventDisabled(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(url));
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
toast.update(tid, {
|
||||||
|
render: `Ошибка добавления в список: ${lists[list].name}`,
|
||||||
|
type: "error",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
|
setListEventDisabled(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
toast.update(tid, {
|
||||||
|
render: `Добавлено в список: ${lists[list].name}`,
|
||||||
|
type: "success",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
setListEventDisabled(false);
|
||||||
props.setUserList(list);
|
props.setUserList(list);
|
||||||
fetch(
|
}
|
||||||
|
|
||||||
|
if (props.token) {
|
||||||
|
_setList(
|
||||||
`${ENDPOINTS.user.bookmark}/add/${list}/${props.release_id}?token=${props.token}`
|
`${ENDPOINTS.user.bookmark}/add/${list}/${props.release_id}?token=${props.token}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -134,6 +171,7 @@ export const ReleaseInfoUserList = (props: {
|
||||||
theme={DropdownTheme}
|
theme={DropdownTheme}
|
||||||
color="blue"
|
color="blue"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
disabled={listEventDisabled}
|
||||||
>
|
>
|
||||||
{lists.map((list) => (
|
{lists.map((list) => (
|
||||||
<Dropdown.Item
|
<Dropdown.Item
|
||||||
|
|
Loading…
Add table
Reference in a new issue