From 795d9761d71651a759ea6ee8b713a1a8350a349b Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 15 Sep 2025 04:05:37 -0700 Subject: [PATCH] Enable party editing with search sidebar --- src/lib/components/party/Party.svelte | 267 +++++++++++++++++++++----- 1 file changed, 219 insertions(+), 48 deletions(-) diff --git a/src/lib/components/party/Party.svelte b/src/lib/components/party/Party.svelte index 556d38ed..bc0597ec 100644 --- a/src/lib/components/party/Party.svelte +++ b/src/lib/components/party/Party.svelte @@ -1,26 +1,47 @@ -
+
+
+

{party.name || '(untitled party)'}

@@ -190,7 +338,17 @@
- + + {#if canEdit()} +
+ ✏️ You can edit this party - Click on any slot to add or replace items +
+ {:else} +
+ 🔒 Read-only +
+ {/if} + {#if party.raid}
@@ -239,19 +397,23 @@ {/if}
- {#if canEdit()} -
-

✏️ You can edit this party

-
- {/if} -
+ +
+ (pickerOpen = false)} + onAddItems={handleAddItems} + canAddMore={true} + /> + +