wulf-pulse/app/admin/data-browser/configuration-items/page.tsx

186 lines
6 KiB
TypeScript
Raw Normal View History

'use client';
import { useState, useEffect } from 'react';
import DataTable from '@/components/admin/DataTable';
import DetailModal from '@/components/admin/DetailModal';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
import { ArrowLeft, Wrench } from 'lucide-react';
import Link from 'next/link';
export default function ConfigurationItemsBrowserPage() {
const [configItems, setConfigItems] = useState([]);
const [totalCount, setTotalCount] = useState(0);
const [page, setPage] = useState(1);
const [pageSize] = useState(50);
const [isLoading, setIsLoading] = useState(false);
const [selectedItem, setSelectedItem] = useState<any>(null);
const [modalOpen, setModalOpen] = useState(false);
const fetchConfigItems = async (currentPage: number, search?: string, sortBy?: string, sortOrder?: string) => {
setIsLoading(true);
try {
const params = new URLSearchParams({
limit: pageSize.toString(),
offset: ((currentPage - 1) * pageSize).toString(),
});
if (search) params.append('search', search);
if (sortBy) params.append('sort', sortBy);
if (sortOrder) params.append('order', sortOrder);
const response = await fetch(`/api/data/configuration-items?${params}`);
const result = await response.json();
setConfigItems(result.configurationItems || []);
setTotalCount(result.pagination?.total || 0);
} catch (error) {
console.error('Failed to fetch configuration items:', error);
} finally {
setIsLoading(false);
}
};
useEffect(() => {
fetchConfigItems(page);
}, [page]);
const handleRowClick = (item: any) => {
setSelectedItem(item);
setModalOpen(true);
};
const columns = [
{
key: 'id',
label: 'ID',
sortable: true,
},
{
key: 'reference_title',
label: 'Title',
sortable: true,
render: (value: string) => (
<div className="font-medium">{value}</div>
),
},
{
key: 'reference_number',
label: 'Reference #',
sortable: true,
},
{
key: 'serial_number',
label: 'Serial #',
sortable: true,
},
{
key: 'company_id',
label: 'Company ID',
sortable: true,
},
{
key: 'configuration_item_type',
label: 'Type',
},
{
key: 'is_active',
label: 'Active',
render: (value: boolean) => (
<Badge variant={value ? 'default' : 'secondary'}>
{value ? 'Active' : 'Inactive'}
</Badge>
),
},
];
const detailFields = [
{ key: 'id', label: 'ID' },
{ key: 'company_id', label: 'Company ID' },
{ key: 'reference_title', label: 'Title' },
{ key: 'reference_number', label: 'Reference Number' },
{ key: 'serial_number', label: 'Serial Number' },
{ key: 'product_id', label: 'Product ID' },
{ key: 'configuration_item_type', label: 'Type' },
{ key: 'configuration_item_category_id', label: 'Category ID' },
{ key: 'is_active', label: 'Active' },
{ key: 'install_date', label: 'Install Date' },
{ key: 'warranty_expiration_date', label: 'Warranty Expiration' },
{ key: 'contact_id', label: 'Contact ID' },
{ key: 'location_id', label: 'Location ID' },
{ key: 'vendor_id', label: 'Vendor ID' },
{ key: 'device_type', label: 'Device Type' },
{ key: 'rmm_device_uid', label: 'RMM Device UID' },
{ key: 'notes', label: 'Notes' },
{ key: 'synced_at', label: 'Synced At' },
{ key: 'is_deleted', label: 'Is Deleted' },
];
return (
<div className="container mx-auto p-6 space-y-6">
{/* Header */}
<div className="flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
<div className="flex items-center gap-3">
<Link href="/admin/data-browser">
<Button variant="outline" size="sm" className="gap-2">
<ArrowLeft className="w-4 h-4" />
Back
</Button>
</Link>
<div className="h-8 w-px bg-border" />
<div className="flex items-center gap-3">
<div className="p-2 rounded-lg bg-orange-100 dark:bg-orange-950">
<Wrench className="w-5 h-5 text-orange-600 dark:text-orange-400" />
</div>
<div>
<h1 className="text-2xl font-bold tracking-tight">Configuration Items</h1>
<p className="text-sm text-muted-foreground">Manage and inspect device data</p>
</div>
</div>
</div>
<Badge variant="secondary" className="w-fit">
{totalCount} total records
</Badge>
</div>
{/* Data Table Card */}
<Card className="border-none shadow-md">
<CardHeader className="border-b bg-muted/30">
<div className="flex items-center justify-between">
<div>
<CardTitle className="text-lg">All Configuration Items</CardTitle>
<CardDescription className="mt-1">
View and search through all configuration items in the system
</CardDescription>
</div>
</div>
</CardHeader>
<CardContent className="p-6">
<DataTable
columns={columns}
data={configItems}
totalCount={totalCount}
page={page}
pageSize={pageSize}
onPageChange={setPage}
onSort={(column, direction) => fetchConfigItems(page, undefined, column, direction)}
onSearch={(query) => fetchConfigItems(1, query)}
onRowClick={handleRowClick}
isLoading={isLoading}
/>
</CardContent>
</Card>
{/* Detail Modal */}
<DetailModal
open={modalOpen}
onOpenChange={setModalOpen}
title={selectedItem?.reference_title || 'Configuration Item Details'}
data={selectedItem}
fields={detailFields}
/>
</div>
);
}