mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
refactor: create collection page release poster
This commit is contained in:
parent
967b9cfbb0
commit
5abb6e8f11
2 changed files with 23 additions and 22 deletions
|
@ -66,7 +66,7 @@ export const PosterWithStuff = (props: {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative flex items-center justify-center w-full h-full overflow-hidden rounded-lg group">
|
<div className="relative w-full h-full overflow-hidden rounded-lg group">
|
||||||
<div className="absolute z-20 top-2 left-2 right-2">
|
<div className="absolute z-20 top-2 left-2 right-2">
|
||||||
<ReleaseChips
|
<ReleaseChips
|
||||||
{...props}
|
{...props}
|
||||||
|
|
|
@ -15,7 +15,7 @@ import {
|
||||||
Modal,
|
Modal,
|
||||||
useThemeMode,
|
useThemeMode,
|
||||||
} from "flowbite-react";
|
} from "flowbite-react";
|
||||||
import { ReleaseLink } from "#/components/ReleaseLink/ReleaseLink";
|
import { PosterWithStuff } from "#/components/ReleasePoster/PosterWithStuff";
|
||||||
import { CropModal } from "#/components/CropModal/CropModal";
|
import { CropModal } from "#/components/CropModal/CropModal";
|
||||||
import { b64toBlob, tryCatchAPI } from "#/api/utils";
|
import { b64toBlob, tryCatchAPI } from "#/api/utils";
|
||||||
|
|
||||||
|
@ -462,20 +462,17 @@ export const CreateCollectionPage = () => {
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
<div className="m-4">
|
<div className="m-4">
|
||||||
<div className="grid justify-center sm:grid-cols-[repeat(auto-fit,minmax(400px,1fr))] grid-cols-[100%] gap-2 min-w-full">
|
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4">
|
||||||
{addedReleases.map((release) => {
|
{addedReleases.map((release) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div key={release.id} className="relative w-full h-full group">
|
||||||
key={release.id}
|
|
||||||
className="relative w-full h-full aspect-video group"
|
|
||||||
>
|
|
||||||
<button
|
<button
|
||||||
className="absolute inset-0 z-10 text-black transition-opacity bg-white opacity-0 group-hover:opacity-75"
|
className="absolute inset-0 z-30 text-black transition-opacity bg-white rounded-lg opacity-0 group-hover:opacity-75"
|
||||||
onClick={() => _deleteRelease(release)}
|
onClick={() => _deleteRelease(release)}
|
||||||
>
|
>
|
||||||
Удалить
|
Удалить
|
||||||
</button>
|
</button>
|
||||||
<ReleaseLink {...release} isLinkDisabled={true} />
|
<PosterWithStuff {...release} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
@ -592,6 +589,9 @@ export const ReleasesEditModal = (props: {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const newContent = content.filter((r) => r.id !== release.id);
|
||||||
|
|
||||||
|
setContent(newContent);
|
||||||
props.setReleases([...props.releases, release]);
|
props.setReleases([...props.releases, release]);
|
||||||
props.setReleasesIds([...props.releasesIds, release.id]);
|
props.setReleasesIds([...props.releasesIds, release.id]);
|
||||||
}
|
}
|
||||||
|
@ -611,11 +611,7 @@ export const ReleasesEditModal = (props: {
|
||||||
>
|
>
|
||||||
<form
|
<form
|
||||||
className="max-w-full mx-auto"
|
className="max-w-full mx-auto"
|
||||||
onSubmit={(e) => {
|
onSubmit={(e) => e.preventDefault()}
|
||||||
e.preventDefault();
|
|
||||||
setContent([]);
|
|
||||||
setQuery(e.target[0].value.trim());
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<label
|
<label
|
||||||
htmlFor="default-search"
|
htmlFor="default-search"
|
||||||
|
@ -647,30 +643,35 @@ export const ReleasesEditModal = (props: {
|
||||||
className="block w-full p-4 text-sm text-gray-900 border border-gray-300 rounded-lg ps-10 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
className="block w-full p-4 text-sm text-gray-900 border border-gray-300 rounded-lg ps-10 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
||||||
placeholder="Поиск аниме..."
|
placeholder="Поиск аниме..."
|
||||||
required
|
required
|
||||||
defaultValue={query || ""}
|
onChange={(e) => setQuery(e.target.value)}
|
||||||
|
value={query || ""}
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="button"
|
||||||
className="text-white absolute end-2.5 bottom-2.5 bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
|
className="text-white absolute end-2.5 bottom-2.5 bg-red-700 hover:bg-red-800 focus:ring-4 focus:outline-none focus:ring-red-300 font-medium rounded-lg text-sm px-4 py-2 dark:bg-red-600 dark:hover:bg-red-700 dark:focus:ring-red-800"
|
||||||
|
onClick={() => {
|
||||||
|
setSize(0);
|
||||||
|
setContent([]);
|
||||||
|
setQuery("");
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
Поиск
|
Очистить
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div className="grid grid-cols-2 gap-2 mt-2 md:grid-cols-4">
|
<div className="grid grid-cols-1 gap-2 mt-2 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4">
|
||||||
{content.map((release) => {
|
{content.map((release) => {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
|
className="text-left"
|
||||||
key={release.id}
|
key={release.id}
|
||||||
className="overflow-hidden"
|
|
||||||
onClick={() => _addRelease(release)}
|
onClick={() => _addRelease(release)}
|
||||||
>
|
>
|
||||||
<ReleaseLink type="poster" {...release} isLinkDisabled={true} />
|
<PosterWithStuff {...release} />
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
{content.length == 1 && <div></div>}
|
|
||||||
</div>
|
</div>
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
<div className="flex items-center justify-center h-full min-h-24">
|
<div className="flex items-center justify-center h-full min-h-24">
|
||||||
|
|
Loading…
Add table
Reference in a new issue