From 5abb6e8f11b297625ce644ead0caa63b0d111a84 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Wed, 26 Mar 2025 01:47:47 +0500 Subject: [PATCH] refactor: create collection page release poster --- .../ReleasePoster/PosterWithStuff.tsx | 2 +- app/pages/CreateCollection.tsx | 43 ++++++++++--------- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/app/components/ReleasePoster/PosterWithStuff.tsx b/app/components/ReleasePoster/PosterWithStuff.tsx index 5f067ac..adffc49 100644 --- a/app/components/ReleasePoster/PosterWithStuff.tsx +++ b/app/components/ReleasePoster/PosterWithStuff.tsx @@ -66,7 +66,7 @@ export const PosterWithStuff = (props: { } return ( -
+
{
-
+
{addedReleases.map((release) => { return ( -
+
- +
); })} @@ -592,6 +589,9 @@ export const ReleasesEditModal = (props: { return; } + const newContent = content.filter((r) => r.id !== release.id); + + setContent(newContent); props.setReleases([...props.releases, release]); props.setReleasesIds([...props.releasesIds, release.id]); } @@ -611,11 +611,7 @@ export const ReleasesEditModal = (props: { >
{ - e.preventDefault(); - setContent([]); - setQuery(e.target[0].value.trim()); - }} + onSubmit={(e) => e.preventDefault()} >
-
+
{content.map((release) => { return ( ); })} - {content.length == 1 &&
}
{isLoading && (