166 lines
5.6 KiB
Svelte
166 lines
5.6 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
import { containersApi, type Container } from '$lib/api/dashboard/reference_data/containers';
|
|
import DataTable from '$lib/components/dashboard/reference_data/containers/data-table.svelte';
|
|
import { createColumns } from '$lib/components/dashboard/reference_data/containers/columns';
|
|
import * as Card from '$lib/components/ui/card';
|
|
import { Button } from '$lib/components/ui/button';
|
|
import { Input } from '$lib/components/ui/input';
|
|
import { page } from '$app/stores';
|
|
import { browser } from '$app/environment';
|
|
import { RefreshCw, Plus } from 'lucide-svelte';
|
|
import { useShortcuts } from '$lib/hooks/use-shortcuts';
|
|
import type { PageData } from './$types';
|
|
import { currentUser, userHasPermission } from '$lib/auth';
|
|
import ErrorState from '$lib/components/dashboard/common/error-state.svelte';
|
|
|
|
// Los datos iniciales vienen del servidor
|
|
let { data }: { data: PageData } = $props();
|
|
|
|
// Estado para infinite scroll
|
|
let allItems = $state<Container[]>(data.items || []);
|
|
let currentPage = $state(data.page || 1);
|
|
let pageSize = $state(50);
|
|
let totalItems = $state(data.total || 0);
|
|
let loading = $state(false);
|
|
let hasMore = $derived(allItems.length < totalItems);
|
|
let error = $state<string | null>(data.error || null);
|
|
let status = $state<number>(data.status || 200);
|
|
|
|
// Permisos
|
|
const canView = $derived(userHasPermission($currentUser, 'ref_containers.view'));
|
|
const canCreate = $derived(userHasPermission($currentUser, 'ref_containers.create'));
|
|
const canEdit = $derived(userHasPermission($currentUser, 'ref_containers.edit'));
|
|
const canDelete = $derived(userHasPermission($currentUser, 'ref_containers.delete'));
|
|
|
|
const isError = $derived(!canView || status >= 400 || error);
|
|
|
|
// Filtros
|
|
let searchQuery = $state($page.url.searchParams.get('search') || '');
|
|
let timeout: ReturnType<typeof setTimeout>;
|
|
|
|
function handleSearch() {
|
|
if (!browser) return;
|
|
clearTimeout(timeout);
|
|
timeout = setTimeout(async () => {
|
|
loading = true;
|
|
error = null;
|
|
try {
|
|
const response = await containersApi.list(1, pageSize, searchQuery);
|
|
if (!response.error && response.data) {
|
|
allItems = response.data.items;
|
|
currentPage = 1;
|
|
totalItems = response.data.total;
|
|
}
|
|
} catch (e) {
|
|
console.error('Error aplicando filtros:', e);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
|
|
const url = new URL($page.url);
|
|
if (searchQuery) url.searchParams.set('search', searchQuery);
|
|
else url.searchParams.delete('search');
|
|
|
|
history.replaceState(history.state, '', url);
|
|
}, 500);
|
|
}
|
|
|
|
async function loadMore() {
|
|
if (loading || !hasMore) return;
|
|
loading = true;
|
|
error = null;
|
|
try {
|
|
const response = await containersApi.list(currentPage + 1, pageSize, searchQuery);
|
|
if (response.error) {
|
|
if (response.status === 401 || response.status === 403) {
|
|
error = 'Sesión expirada. Recargando página...';
|
|
setTimeout(() => window.location.reload(), 2000);
|
|
} else {
|
|
error = response.error;
|
|
}
|
|
return;
|
|
}
|
|
if (response.data?.items) {
|
|
allItems = [...allItems, ...response.data.items];
|
|
currentPage++;
|
|
totalItems = response.data.total;
|
|
}
|
|
} catch (e) {
|
|
error = 'Error cargando más datos';
|
|
console.error('📊 [Containers] Error loading more:', e);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}
|
|
|
|
function reloadData() {
|
|
if (browser) window.location.reload();
|
|
}
|
|
|
|
function handleSuccess() {
|
|
reloadData();
|
|
}
|
|
|
|
// Crear columnas
|
|
const columns = $derived(createColumns(handleSuccess, { canEdit, canDelete }));
|
|
|
|
useShortcuts('Contenedores', [
|
|
{ key: 'Alt+Shift+R', description: 'Actualizar Lista', action: reloadData }
|
|
]);
|
|
</script>
|
|
|
|
<div class="flex flex-col gap-6 p-6 h-[calc(100svh-4rem)] group-has-data-[collapsible=icon]/sidebar-wrapper:h-[calc(100svh-3rem)] overflow-hidden">
|
|
{#if isError}
|
|
<ErrorState
|
|
status={!canView ? 403 : status}
|
|
error={!canView ? 'Permission denied: ref_containers.view' : (error || '')}
|
|
onRetry={reloadData}
|
|
/>
|
|
{:else}
|
|
<!-- Header Section -->
|
|
<div class="flex-none flex items-center justify-between">
|
|
<div class="space-y-1">
|
|
<h1 class="text-2xl font-bold tracking-tight">Contenedores</h1>
|
|
<p class="text-muted-foreground">Gestiona los tipos de contenedores disponibles en el sistema</p>
|
|
</div>
|
|
<div class="flex items-center gap-3">
|
|
<Button variant="outline" size="sm" class="h-9" onclick={reloadData}>
|
|
<RefreshCw class="mr-2 h-4 w-4 {loading ? 'animate-spin' : ''}" />
|
|
Actualizar
|
|
</Button>
|
|
{#if canCreate}
|
|
<Button class="h-9" onclick={() => (alert('Módulo de creación no disponible para Catálogos Públicos'))}>
|
|
<Plus class="mr-2 h-4 w-4" />
|
|
Nuevo Contenedor
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
{#if error}
|
|
<div class="flex-none rounded-md border border-destructive px-4 py-3 text-sm text-destructive">
|
|
{error}
|
|
</div>
|
|
{/if}
|
|
|
|
<Card.Root class="border bg-background flex min-h-0 flex-1 flex-col overflow-hidden">
|
|
<Card.Header>
|
|
<div class="flex flex-wrap items-center justify-between gap-3">
|
|
<Card.Title>Listado de Contenedores</Card.Title>
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<Input placeholder="Buscar" bind:value={searchQuery} oninput={handleSearch} class="h-9 w-44 bg-card lg:w-64" />
|
|
</div>
|
|
</div>
|
|
</Card.Header>
|
|
<Card.Content class="min-h-0 p-0 flex-1 overflow-hidden flex flex-col">
|
|
<div class="rounded-md border bg-background overflow-hidden flex-1 h-full">
|
|
<DataTable data={allItems} {columns} {loading} {hasMore} {loadMore} />
|
|
</div>
|
|
</Card.Content>
|
|
</Card.Root>
|
|
|
|
<div class="flex-none text-sm text-muted-foreground">Mostrando {allItems.length} de {totalItems} registros</div>
|
|
{/if}
|
|
</div>
|