AniX/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx
Kentai Radiquum e548ce060d
refactor: Release page
factor it in separate components and update grid styling
2024-07-31 20:21:32 +05:00

88 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card, Dropdown, Button } from "flowbite-react";
import { ENDPOINTS } from "#/api/config";
const lists = [
{ list: 0, name: "Не смотрю" },
{ list: 1, name: "Смотрю" },
{ list: 2, name: "В планах" },
{ list: 3, name: "Просмотрено" },
{ list: 4, name: "Отложено" },
{ list: 5, name: "Брошено" },
];
const DropdownTheme = {
floating: {
target:
"flex-1 bg-blue-600 enabled:hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800",
},
};
export const ReleaseInfoUserList = (props: {
userList: number;
isFavorite: boolean;
release_id: number;
token: string | null;
setUserList: any;
setIsFavorite: any;
}) => {
function _addToFavorite() {
if (props.token) {
props.setIsFavorite(!props.isFavorite);
if (props.isFavorite) {
fetch(
`${ENDPOINTS.user.favorite}/delete/${props.release_id}?token=${props.token}`
);
} else {
fetch(
`${ENDPOINTS.user.favorite}/add/${props.release_id}?token=${props.token}`
);
}
}
}
function _addToList(list: number) {
if (props.token) {
props.setUserList(list);
fetch(
`${ENDPOINTS.user.bookmark}/add/${list}/${props.release_id}?token=${props.token}`
);
}
}
return (
<Card>
{props.token ? (
<div className="flex flex-wrap gap-2">
<Dropdown
label={lists[props.userList].name}
dismissOnClick={true}
theme={DropdownTheme}
>
{lists.map((list) => (
<Dropdown.Item
key={list.list}
onClick={() => _addToList(list.list)}
>
{list.name}
</Dropdown.Item>
))}
</Dropdown>
<Button
className="bg-blue-600 enabled:hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
onClick={() => {
_addToFavorite();
}}
>
<span
className={`iconify w-6 h-6 ${
props.isFavorite ? "mdi--heart" : "mdi--heart-outline"
}`}
></span>
</Button>
</div>
) : (
<p>Войдите что-бы добавить в избранное или список</p>
)}
</Card>
);
};