mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
fix: misaligned posters in add release to collection modal fix: collection releases reset when searching for new release to add
170 lines
5 KiB
TypeScript
170 lines
5 KiB
TypeScript
"use client";
|
||
import { Card, Button, useThemeMode } from "flowbite-react";
|
||
import { useState } from "react";
|
||
import { useUserStore } from "#/store/auth";
|
||
import { ENDPOINTS } from "#/api/config";
|
||
import { useRouter } from "next/navigation";
|
||
import { tryCatchAPI } from "#/api/utils";
|
||
import { toast } from "react-toastify";
|
||
|
||
export const CollectionInfoControls = (props: {
|
||
isFavorite: boolean;
|
||
id: number;
|
||
authorId: number;
|
||
isPrivate: boolean;
|
||
}) => {
|
||
const [isFavorite, setIsFavorite] = useState(props.isFavorite);
|
||
const [isUpdating, setIsUpdating] = useState(false);
|
||
const theme = useThemeMode();
|
||
|
||
const userStore = useUserStore();
|
||
const router = useRouter();
|
||
|
||
async function _addToFavorite() {
|
||
async function _FavCol(url: string) {
|
||
setIsUpdating(true);
|
||
const tid = toast.loading(
|
||
isFavorite ?
|
||
"Удаляем коллекцию из избранного..."
|
||
: "Добавляем коллекцию в избранное...",
|
||
{
|
||
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:
|
||
isFavorite ?
|
||
"Ошибка удаления коллекции из избранного"
|
||
: "Ошибка добавления коллекции в избранное",
|
||
type: "error",
|
||
autoClose: 2500,
|
||
isLoading: false,
|
||
closeOnClick: true,
|
||
draggable: true,
|
||
});
|
||
setIsUpdating(false);
|
||
return;
|
||
}
|
||
|
||
toast.update(tid, {
|
||
render:
|
||
isFavorite ?
|
||
"Коллекция удалена из избранного"
|
||
: "Коллекция добавлена в избранное",
|
||
type: "success",
|
||
autoClose: 2500,
|
||
isLoading: false,
|
||
closeOnClick: true,
|
||
draggable: true,
|
||
});
|
||
|
||
setIsUpdating(false);
|
||
setIsFavorite(!isFavorite);
|
||
}
|
||
|
||
if (userStore.token) {
|
||
let url = `${ENDPOINTS.collection.favoriteCollections}/add/${props.id}?token=${userStore.token}`;
|
||
if (isFavorite) {
|
||
url = `${ENDPOINTS.collection.favoriteCollections}/delete/${props.id}?token=${userStore.token}`;
|
||
}
|
||
_FavCol(url);
|
||
}
|
||
}
|
||
|
||
async function _deleteCollection() {
|
||
async function _DelCol(url: string) {
|
||
setIsUpdating(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: "Ошибка удаления коллекции",
|
||
type: "error",
|
||
autoClose: 2500,
|
||
isLoading: false,
|
||
closeOnClick: true,
|
||
draggable: true,
|
||
});
|
||
setIsUpdating(false);
|
||
return;
|
||
}
|
||
|
||
toast.update(tid, {
|
||
render: `Коллекция удалена`,
|
||
type: "success",
|
||
autoClose: 2500,
|
||
isLoading: false,
|
||
closeOnClick: true,
|
||
draggable: true,
|
||
});
|
||
|
||
setIsUpdating(false);
|
||
router.push("/collections");
|
||
}
|
||
|
||
if (userStore.token) {
|
||
_DelCol(
|
||
`${ENDPOINTS.collection.delete}/${props.id}?token=${userStore.token}`
|
||
);
|
||
}
|
||
}
|
||
|
||
return (
|
||
<Card className="w-full h-fit ">
|
||
<Button
|
||
color={"blue"}
|
||
onClick={() => _addToFavorite()}
|
||
disabled={isUpdating}
|
||
>
|
||
<span
|
||
className={`iconify w-6 h-6 mr-2 ${
|
||
isFavorite ? "mdi--heart" : "mdi--heart-outline"
|
||
}`}
|
||
></span>
|
||
{!isFavorite ? "Добавить в избранное" : "Убрать из избранного"}
|
||
</Button>
|
||
{props.isPrivate && (
|
||
<p>Это приватная коллекция, доступ к ней имеете только вы</p>
|
||
)}
|
||
{userStore.user && userStore.user.id == props.authorId && (
|
||
<div className="flex flex-wrap gap-2">
|
||
<Button
|
||
color={"blue"}
|
||
className="w-full sm:max-w-64"
|
||
onClick={() =>
|
||
router.push("/collections/create?mode=edit&id=" + props.id)
|
||
}
|
||
disabled={isUpdating}
|
||
>
|
||
<span className="w-6 h-6 mr-2 iconify mdi--pencil"></span>{" "}
|
||
Редактировать
|
||
</Button>
|
||
<Button
|
||
color={"red"}
|
||
className="w-full sm:max-w-64"
|
||
onClick={() => _deleteCollection()}
|
||
disabled={isUpdating}
|
||
>
|
||
<span className="w-6 h-6 mr-2 iconify mdi--trash"></span> Удалить
|
||
</Button>
|
||
</div>
|
||
)}
|
||
</Card>
|
||
);
|
||
};
|