148 lines
6.3 KiB
Svelte
148 lines
6.3 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
import { api } from '$lib/utils/api';
|
|
import { toast } from '$lib/stores/toast';
|
|
import Modal from '$lib/components/Modal.svelte';
|
|
|
|
let systems = [];
|
|
let isLoading = false;
|
|
let showModal = false;
|
|
let editingSystem = null;
|
|
|
|
let formData = {
|
|
name: '',
|
|
description: '',
|
|
is_active: true
|
|
};
|
|
|
|
async function loadSystems() {
|
|
isLoading = true;
|
|
try {
|
|
systems = await api.get('/systems/');
|
|
} catch (e) {
|
|
toast.error('Error cargando sistemas');
|
|
} finally {
|
|
isLoading = false;
|
|
}
|
|
}
|
|
|
|
function openCreateModal() {
|
|
editingSystem = null;
|
|
formData = { name: '', description: '', is_active: true };
|
|
showModal = true;
|
|
}
|
|
|
|
function openEditModal(system) {
|
|
editingSystem = system;
|
|
formData = { ...system };
|
|
showModal = true;
|
|
}
|
|
|
|
async function handleSubmit() {
|
|
try {
|
|
if (editingSystem) {
|
|
await api.put(`/systems/${editingSystem.id}`, formData);
|
|
toast.success('Sistema actualizado');
|
|
} else {
|
|
await api.post('/systems/', formData);
|
|
toast.success('Sistema creado');
|
|
}
|
|
showModal = false;
|
|
loadSystems();
|
|
} catch (e) {
|
|
toast.error(e.message || 'Error guardando sistema');
|
|
}
|
|
}
|
|
|
|
onMount(loadSystems);
|
|
</script>
|
|
|
|
<div class="px-4 py-8 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
|
<div class="sm:flex sm:items-center">
|
|
<div class="sm:flex-auto">
|
|
<h1 class="text-xl font-semibold text-gray-900">Sistemas</h1>
|
|
<p class="mt-2 text-sm text-gray-700">Catálogo de sistemas informáticos gestionados.</p>
|
|
</div>
|
|
<div class="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
|
<button
|
|
type="button"
|
|
on:click={openCreateModal}
|
|
class="inline-flex items-center justify-center px-4 py-2 text-sm font-medium text-white bg-indigo-600 border border-transparent rounded-md shadow-sm hover:bg-indigo-700 sm:w-auto"
|
|
>
|
|
Nuevo Sistema
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-8 flex flex-col">
|
|
<div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
|
|
<div class="inline-block min-w-full py-2 align-middle md:px-6 lg:px-8">
|
|
<div class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg">
|
|
<table class="min-w-full divide-y divide-gray-300">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th scope="col" class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">Nombre</th>
|
|
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Descripción</th>
|
|
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Estado</th>
|
|
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-6">
|
|
<span class="sr-only">Acciones</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200 bg-white">
|
|
{#if isLoading}
|
|
<tr><td colspan="4" class="text-center py-4">Cargando...</td></tr>
|
|
{:else if systems.length === 0}
|
|
<tr><td colspan="4" class="text-center py-4">No hay sistemas registrados</td></tr>
|
|
{:else}
|
|
{#each systems as system}
|
|
<tr>
|
|
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">{system.name}</td>
|
|
<td class="px-3 py-4 text-sm text-gray-500 max-w-xs truncate">{system.description || '-'}</td>
|
|
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
<span class:bg-green-100={system.is_active} class:text-green-800={system.is_active} class:bg-red-100={!system.is_active} class:text-red-800={!system.is_active} class="inline-flex rounded-full px-2 text-xs font-semibold leading-5">
|
|
{system.is_active ? 'Activo' : 'Inactivo'}
|
|
</span>
|
|
</td>
|
|
<td class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6">
|
|
<button on:click={() => openEditModal(system)} class="text-indigo-600 hover:text-indigo-900">Editar</button>
|
|
</td>
|
|
</tr>
|
|
{/each}
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Modal open={showModal} title={editingSystem ? 'Editar Sistema' : 'Nuevo Sistema'} on:close={() => showModal = false}>
|
|
<form on:submit|preventDefault={handleSubmit} class="space-y-4">
|
|
<div>
|
|
<label for="name" class="block text-sm font-medium text-gray-700">Nombre</label>
|
|
<input type="text" id="name" bind:value={formData.name} required class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm border p-2">
|
|
</div>
|
|
|
|
<div>
|
|
<label for="description" class="block text-sm font-medium text-gray-700">Descripción</label>
|
|
<textarea id="description" bind:value={formData.description} rows="3" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm border p-2"></textarea>
|
|
</div>
|
|
|
|
<div class="flex items-center">
|
|
<input type="checkbox" id="is_active" bind:checked={formData.is_active} class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500">
|
|
<label for="is_active" class="ml-2 block text-sm text-gray-900">Activo</label>
|
|
</div>
|
|
|
|
<div class="mt-5 sm:mt-6 sm:grid sm:grid-cols-2 sm:gap-3 sm:grid-flow-row-dense">
|
|
<button type="submit" class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-indigo-600 text-base font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:col-start-2 sm:text-sm">
|
|
Guardar
|
|
</button>
|
|
<button type="button" on:click={() => showModal = false} class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:col-start-1 sm:text-sm">
|
|
Cancelar
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</Modal>
|