151 lines
4.9 KiB
Svelte
151 lines
4.9 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.js';
|
|
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 } from 'lucide-svelte';
|
|
import { useShortcuts } from '$lib/hooks/use-shortcuts';
|
|
import type { PageData } from './$types';
|
|
|
|
// Los datos iniciales vienen del servidor
|
|
let { data }: { data: PageData } = $props();
|
|
|
|
// Sincronizar token de cookies
|
|
onMount(() => {
|
|
if (browser) {
|
|
const getCookie = (name: string): string | null => {
|
|
const value = `; ${document.cookie}`;
|
|
const parts = value.split(`; ${name}=`);
|
|
if (parts.length === 2) return parts.pop()?.split(';').shift() || null;
|
|
return null;
|
|
};
|
|
const cookieToken = getCookie('access_token');
|
|
const localToken = localStorage.getItem('access_token');
|
|
if (cookieToken && cookieToken !== localToken) localStorage.setItem('access_token', cookieToken);
|
|
}
|
|
});
|
|
|
|
// 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);
|
|
|
|
// 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;
|
|
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';
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}
|
|
|
|
function reloadData() {
|
|
window.location.reload();
|
|
}
|
|
|
|
function handleSuccess() {
|
|
reloadData();
|
|
}
|
|
|
|
useShortcuts('Contenedores', [
|
|
{ key: 'Alt+Shift+R', description: 'Actualizar Lista', action: reloadData }
|
|
]);
|
|
|
|
const columns = createColumns(handleSuccess);
|
|
</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">
|
|
<!-- 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" />
|
|
Actualizar
|
|
</Button>
|
|
</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">
|
|
<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"><div class="rounded-md border bg-background overflow-hidden flex min-h-0 flex-1 flex-col"><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>
|
|
</div>
|