feat(core): standardized form inputs and buttons across core modules

- Updated Person, Address, Contact forms with consistent Skeleton UI styling.
- Standardized Account, Site, and User detail pages.
- Modernized People, Address, and Contact list pages with improved headers and action buttons.
- Applied 'variant-filled-surface' and 'rounded-lg' patterns from Journals module for UI consistency.
This commit is contained in:
Scott Idem
2026-01-15 17:40:46 -05:00
parent 96adf1fa26
commit 572ce1841b
10 changed files with 593 additions and 487 deletions

View File

@@ -2,7 +2,7 @@
import { onMount } from 'svelte';
import { ae_loc, ae_api, slct } from '$lib/stores/ae_stores';
import { goto } from '$app/navigation';
import { MapPin, Plus, Search, ExternalLink, X } from 'lucide-svelte';
import { MapPin, Plus, Search, ExternalLink, X, ListFilter, MapPinned } from 'lucide-svelte';
import { load_ae_obj_li__address, create_ae_obj__address } from '$lib/ae_core/ae_core__address';
import Address_form from './ae_comp__address_form.svelte';
@@ -33,12 +33,17 @@
</script>
<div class="container mx-auto p-4 space-y-6">
<header class="flex justify-between items-center">
<header class="flex justify-between items-center bg-surface-50-900-token p-4 rounded-xl shadow-lg border border-surface-500/10">
<div class="flex items-center gap-2">
<MapPin size={24} />
<h1 class="h2">Address Management</h1>
<div class="p-2 bg-primary-500/10 rounded-lg">
<MapPin size={24} class="text-primary-500" />
</div>
<h1 class="h2 font-black tracking-tight">Address Management</h1>
</div>
<button class="btn variant-filled-primary" onclick={() => show_add_form = !show_add_form}>
<button
class="btn btn-sm variant-filled-primary font-bold shadow-lg"
onclick={() => show_add_form = !show_add_form}
>
{#if show_add_form}
<X size={16} class="mr-2" /> Cancel
{:else}
@@ -48,7 +53,7 @@
</header>
{#if show_add_form}
<div class="mb-8">
<div class="animate-fade-in">
<Address_form
onSave={(new_addr) => {
show_add_form = false;
@@ -63,43 +68,55 @@
{/if}
{#if loading}
<div class="placeholder animate-pulse h-64 w-full"></div>
<div class="card p-8 flex justify-center items-center h-64">
<div class="placeholder animate-pulse w-full h-full rounded-2xl"></div>
</div>
{:else if address_li.length === 0}
<div class="card p-8 text-center variant-soft">
<p class="opacity-60">No addresses found for this account.</p>
<div class="card p-12 text-center variant-glass-surface border-2 border-dashed border-surface-500/20 rounded-2xl">
<MapPinned size={48} class="mx-auto mb-4 opacity-20" />
<h3 class="h3 font-bold opacity-50">No Addresses Found</h3>
<p class="opacity-60 max-w-xs mx-auto mt-2">Addresses associated with this account will appear here.</p>
</div>
{:else}
<div class="table-container">
<table class="table table-hover">
<thead>
<tr>
<th>City</th>
<th>State/Province</th>
<th>Country</th>
<th>Status</th>
<th class="text-right">Actions</th>
</tr>
</thead>
<tbody>
{#each address_li as addr}
<tr>
<td>{addr.city || '--'}</td>
<td>{addr.state_province || '--'}</td>
<td>{addr.country || '--'}</td>
<td>
<span class="badge {addr.enable ? 'variant-filled-success' : 'variant-filled-error'}">
{addr.enable ? 'Enabled' : 'Disabled'}
</span>
</td>
<td class="text-right">
<a class="btn btn-sm variant-soft-primary" href="/core/addresses/{addr.address_id_random}">
Manage <ExternalLink size={12} class="ml-2" />
</a>
</td>
<div class="card p-6 variant-glass-surface shadow-xl border border-surface-500/10">
<h3 class="h4 font-bold border-b border-surface-500/30 pb-2 mb-4 flex items-center gap-2">
<ListFilter size={18} class="text-secondary-500" />
Linked Addresses
<span class="badge variant-soft-secondary ml-auto">{address_li.length} entries</span>
</h3>
<div class="table-container">
<table class="table table-hover">
<thead>
<tr class="uppercase text-[10px] tracking-widest opacity-60">
<th>City</th>
<th>State/Province</th>
<th>Country</th>
<th>Status</th>
<th class="text-right">Actions</th>
</tr>
{/each}
</tbody>
</table>
</thead>
<tbody>
{#each address_li as addr}
<tr class="transition-colors">
<td class="font-bold">{addr.city || '--'}</td>
<td>{addr.state_province || '--'}</td>
<td><span class="badge variant-soft-surface font-mono">{addr.country || '--'}</span></td>
<td>
<span class="badge {addr.enable ? 'variant-filled-success' : 'variant-filled-error'} text-[10px] uppercase font-bold">
{addr.enable ? 'Active' : 'Disabled'}
</span>
</td>
<td class="text-right">
<a class="btn btn-sm variant-soft-primary font-bold shadow-sm" href="/core/addresses/{addr.address_id_random}">
Manage <ExternalLink size={12} class="ml-2 opacity-50" />
</a>
</td>
</tr>
{/each}
</tbody>
</table>
</div>
</div>
{/if}
</div>