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 { Phone, Plus, Search, Mail, User, ExternalLink, X } from 'lucide-svelte';
import { Phone, Plus, Search, Mail, User, ExternalLink, X, ListFilter, Contact } from 'lucide-svelte';
import { load_ae_obj_li__contact, create_ae_obj__contact } from '$lib/ae_core/ae_core__contact';
import Contact_form from './ae_comp__contact_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">
<Phone size={24} />
<h1 class="h2">Contact Management</h1>
<div class="p-2 bg-primary-500/10 rounded-lg">
<Phone size={24} class="text-primary-500" />
</div>
<h1 class="h2 font-black tracking-tight">Contact 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">
<Contact_form
onSave={(new_con) => {
show_add_form = false;
@@ -63,53 +68,73 @@
{/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 contact_li.length === 0}
<div class="card p-8 text-center variant-soft">
<p class="opacity-60">No contacts 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">
<Contact size={48} class="mx-auto mb-4 opacity-20" />
<h3 class="h3 font-bold opacity-50">No Contacts Found</h3>
<p class="opacity-60 max-w-xs mx-auto mt-2">Business and support contacts will appear here.</p>
</div>
{:else}
<div class="table-container">
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Status</th>
<th class="text-right">Actions</th>
</tr>
</thead>
<tbody>
{#each contact_li as con}
<tr>
<td>
<div class="flex items-center gap-2">
<User size={14} class="opacity-60" />
{con.name || '--'}
</div>
</td>
<td>
<div class="flex items-center gap-2">
<Mail size={14} class="opacity-60" />
{con.email || '--'}
</div>
</td>
<td>{con.phone || '--'}</td>
<td>
<span class="badge {con.enable ? 'variant-filled-success' : 'variant-filled-error'}">
{con.enable ? 'Enabled' : 'Disabled'}
</span>
</td>
<td class="text-right">
<a class="btn btn-sm variant-soft-primary" href="/core/contacts/{con.contact_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" />
Directory Results
<span class="badge variant-soft-secondary ml-auto">{contact_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>Name / Title</th>
<th>Email</th>
<th>Phone</th>
<th>Status</th>
<th class="text-right">Actions</th>
</tr>
{/each}
</tbody>
</table>
</thead>
<tbody>
{#each contact_li as con}
<tr class="transition-colors">
<td class="font-bold">
<div class="flex items-center gap-2">
<div class="avatar variant-soft-surface w-8 h-8 flex items-center justify-center rounded-full">
<User size={14} class="opacity-60" />
</div>
{con.title || con.name || '--'}
</div>
</td>
<td>
{#if con.email}
<div class="flex items-center gap-2">
<Mail size={14} class="opacity-40" />
<span class="text-sm">{con.email}</span>
</div>
{:else}
<span class="opacity-20 text-xs italic">No Email</span>
{/if}
</td>
<td>
<span class="font-mono text-sm opacity-80">{con.phone_office || con.phone_mobile || '--'}</span>
</td>
<td>
<span class="badge {con.enable ? 'variant-filled-success' : 'variant-filled-error'} text-[10px] uppercase font-bold">
{con.enable ? 'Active' : 'Disabled'}
</span>
</td>
<td class="text-right">
<a class="btn btn-sm variant-soft-primary font-bold shadow-sm" href="/core/contacts/{con.contact_id_random}">
Manage <ExternalLink size={12} class="ml-2 opacity-50" />
</a>
</td>
</tr>
{/each}
</tbody>
</table>
</div>
</div>
{/if}
</div>