Blockers resolved:
- localStorage key collision: UsersListPanel/GroupsListPanel/TagsListPanel
now each use their own key (admin_*_list_collapsed)
- $effect autocollapse replaced with $derived(autocollapse || manualCollapse)
across all three list panels (Felix — Svelte 5 rule violation)
- groups/new: add READ_ALL and ANNOTATE_ALL to available standard permissions
- Mobile back-to-list links added to all five detail panel headers (md:hidden)
so users landing directly on a detail URL on mobile can navigate back
- onDestroy(() => stopPolling()) added to system/+page.svelte (Tobias)
High priority resolved:
- Permission labels in groups/[id] and groups/new now use Paraglide i18n keys
(admin_perm_read_all, admin_perm_annotate_all, etc.) across de/en/es
- $derived used for permission arrays (reactive i18n) — Felix Svelte 5 rule
- UserGroup type in +layout.server.ts now uses generated API type (Markus/Felix)
- discardTarget annotation changed to variable-level type annotation
Accessibility (Leonie):
- EntityNav tablet icon strip buttons: min-h-[44px] for WCAG 2.5.8 compliance
- Flyout focus management: openFlyout() focuses first link, closeFlyout()
returns focus to the trigger button that opened it
- Flyout animation replaced: broken inline style -> transition:fly={{ x: -160 }}
Tests (Sara/Felix):
- localStorage key assertion tests added per panel
- localStorage.removeItem calls updated to use the panel-specific keys
- page.server.spec.ts added for groups/[id] and tags/[id] delete actions
- Polling lifecycle tests added to system/page.svelte.spec.ts
Note: Paraglide types for new admin_perm_* keys regenerate automatically on
next npm run dev (Vite plugin). No manual compilation step needed.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
165 lines
4.8 KiB
Svelte
165 lines
4.8 KiB
Svelte
<script lang="ts">
|
|
import { enhance } from '$app/forms';
|
|
import { beforeNavigate, goto } from '$app/navigation';
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
import UserProfileSection from '$lib/components/user/UserProfileSection.svelte';
|
|
import UserGroupsSection from '$lib/components/user/UserGroupsSection.svelte';
|
|
import UserPasswordSection from '$lib/components/user/UserPasswordSection.svelte';
|
|
|
|
let { data, form } = $props();
|
|
|
|
const selectedGroupIds = $derived(data.editUser.groups?.map((g: { id: string }) => g.id) ?? []);
|
|
|
|
let isDirty = $state(false);
|
|
let showUnsavedWarning = $state(false);
|
|
let discardTarget: string | null = $state(null);
|
|
|
|
beforeNavigate(({ cancel, to }) => {
|
|
if (isDirty) {
|
|
cancel();
|
|
showUnsavedWarning = true;
|
|
discardTarget = to?.url.href ?? null;
|
|
}
|
|
});
|
|
|
|
$effect(() => {
|
|
if (form?.success) {
|
|
isDirty = false;
|
|
showUnsavedWarning = false;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div class="flex flex-1 flex-col overflow-hidden">
|
|
<!-- Detail panel header -->
|
|
<div class="flex items-center border-b border-line px-5 py-3">
|
|
<a
|
|
href="/admin/users"
|
|
class="mr-3 inline-flex items-center gap-1 text-xs text-ink-3 hover:text-ink md:hidden"
|
|
>
|
|
<svg
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
aria-hidden="true"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" />
|
|
</svg>
|
|
</a>
|
|
<h2 class="flex-1 font-sans text-sm font-bold text-ink">
|
|
{m.admin_user_edit_heading({ username: data.editUser.username })}
|
|
</h2>
|
|
<form
|
|
method="POST"
|
|
action="?/delete"
|
|
use:enhance={({ cancel }) => {
|
|
if (!confirm(m.admin_user_delete_confirm({ username: data.editUser.username }))) {
|
|
cancel();
|
|
}
|
|
return async ({ update }) => {
|
|
await update();
|
|
};
|
|
}}
|
|
>
|
|
<button
|
|
type="submit"
|
|
class="rounded-sm border border-red-200 bg-red-50 px-3 py-1 font-sans text-xs font-bold tracking-widest text-red-700 uppercase transition-colors hover:bg-red-100 dark:border-red-900 dark:bg-red-950/30 dark:text-red-400"
|
|
>
|
|
{m.btn_delete()}…
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Scrollable body -->
|
|
<div class="flex-1 overflow-y-auto px-5 py-5">
|
|
{#if showUnsavedWarning}
|
|
<div
|
|
class="mb-5 flex items-center justify-between rounded border border-amber-200 bg-amber-50 p-3 text-sm text-amber-800 dark:border-amber-800 dark:bg-amber-950/40 dark:text-amber-300"
|
|
>
|
|
<span>{m.admin_unsaved_warning()}</span>
|
|
<button
|
|
type="button"
|
|
onclick={() => {
|
|
isDirty = false;
|
|
showUnsavedWarning = false;
|
|
if (discardTarget) goto(discardTarget);
|
|
}}
|
|
class="ml-4 shrink-0 font-sans text-xs font-bold tracking-widest text-amber-800 uppercase hover:text-amber-900 dark:text-amber-300"
|
|
>
|
|
{m.person_discard_changes()}
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
{#if form?.success}
|
|
<div class="mb-5 rounded border border-green-200 bg-green-50 p-3 text-sm text-green-700">
|
|
{m.admin_user_updated()}
|
|
</div>
|
|
{/if}
|
|
{#if form?.error}
|
|
<div class="mb-5 rounded border border-red-200 bg-red-50 p-3 text-sm text-red-700">
|
|
{form.error}
|
|
</div>
|
|
{/if}
|
|
|
|
<form
|
|
id="edit-user-form"
|
|
method="POST"
|
|
use:enhance
|
|
oninput={() => {
|
|
isDirty = true;
|
|
showUnsavedWarning = false;
|
|
}}
|
|
class="space-y-5"
|
|
>
|
|
<!-- Profile card -->
|
|
<div class="rounded-sm border border-line bg-surface p-5 shadow-sm">
|
|
<h3 class="mb-4 text-xs font-bold tracking-widest text-ink-3 uppercase">
|
|
{m.profile_section_personal()}
|
|
</h3>
|
|
<UserProfileSection
|
|
firstName={data.editUser.firstName ?? ''}
|
|
lastName={data.editUser.lastName ?? ''}
|
|
birthDate={data.editUser.birthDate ?? ''}
|
|
email={data.editUser.email ?? ''}
|
|
contact={data.editUser.contact ?? ''}
|
|
/>
|
|
</div>
|
|
|
|
<!-- Groups card -->
|
|
<div class="rounded-sm border border-line bg-surface p-5 shadow-sm">
|
|
<h3 class="mb-4 text-xs font-bold tracking-widest text-ink-3 uppercase">
|
|
{m.admin_col_groups()}
|
|
</h3>
|
|
<UserGroupsSection groups={data.groups} selectedGroupIds={selectedGroupIds} />
|
|
</div>
|
|
|
|
<!-- Password card -->
|
|
<div class="rounded-sm border border-line bg-surface p-5 shadow-sm">
|
|
<h3 class="mb-4 text-xs font-bold tracking-widest text-ink-3 uppercase">
|
|
{m.admin_label_new_password_optional()}
|
|
</h3>
|
|
<UserPasswordSection />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Docked footer -->
|
|
<div class="flex items-center justify-between border-t border-line bg-surface px-5 py-3">
|
|
<a
|
|
href="/admin/users"
|
|
class="font-sans text-xs font-bold tracking-widest text-ink-2 uppercase hover:text-ink"
|
|
>
|
|
{m.btn_cancel()}
|
|
</a>
|
|
<button
|
|
type="submit"
|
|
form="edit-user-form"
|
|
class="rounded-sm bg-primary px-5 py-2 font-sans text-xs font-bold tracking-widest text-primary-fg uppercase transition-opacity hover:opacity-80"
|
|
>
|
|
{m.btn_save()}
|
|
</button>
|
|
</div>
|
|
</div>
|