'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, Table2 } from 'lucide-react'; import Link from 'next/link'; export default function ContractsBrowserPage() { const [contracts, setContracts] = useState([]); const [totalCount, setTotalCount] = useState(0); const [page, setPage] = useState(1); const [pageSize] = useState(50); const [isLoading, setIsLoading] = useState(false); const [selectedContract, setSelectedContract] = useState(null); const [modalOpen, setModalOpen] = useState(false); const fetchContracts = 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/contracts?${params}`); const result = await response.json(); setContracts(result.contracts || []); setTotalCount(result.pagination?.total || 0); } catch (error) { console.error('Failed to fetch contracts:', error); } finally { setIsLoading(false); } }; useEffect(() => { fetchContracts(page); }, [page]); const handleRowClick = (contract: any) => { setSelectedContract(contract); setModalOpen(true); }; const columns = [ { key: 'id', label: 'ID', sortable: true, }, { key: 'contract_name', label: 'Contract Name', sortable: true, render: (value: string) => (
{value}
), }, { key: 'contract_number', label: 'Contract #', sortable: true, }, { key: 'company_id', label: 'Company ID', sortable: true, }, { key: 'status', label: 'Status', sortable: true, }, { key: 'start_date', label: 'Start Date', sortable: true, render: (value: string) => ( value ? new Date(value).toLocaleDateString() : '-' ), }, { key: 'end_date', label: 'End Date', sortable: true, render: (value: string) => ( value ? new Date(value).toLocaleDateString() : '-' ), }, ]; const detailFields = [ { key: 'id', label: 'ID' }, { key: 'company_id', label: 'Company ID' }, { key: 'contract_name', label: 'Contract Name' }, { key: 'contract_number', label: 'Contract Number' }, { key: 'description', label: 'Description' }, { key: 'status', label: 'Status' }, { key: 'contract_type', label: 'Type' }, { key: 'contract_category', label: 'Category' }, { key: 'start_date', label: 'Start Date' }, { key: 'end_date', label: 'End Date' }, { key: 'estimated_cost', label: 'Estimated Cost' }, { key: 'estimated_hours', label: 'Estimated Hours' }, { key: 'estimated_revenue', label: 'Estimated Revenue' }, { key: 'contact_id', label: 'Contact ID' }, { key: 'contact_name', label: 'Contact Name' }, { key: 'is_default_contract', label: 'Default Contract' }, { key: 'synced_at', label: 'Synced At' }, { key: 'is_deleted', label: 'Is Deleted' }, ]; return (
{/* Header */}

Contracts

Manage and inspect contract data

{totalCount} total records
{/* Data Table Card */}
All Contracts View and search through all contracts in the system
fetchContracts(page, undefined, column, direction)} onSearch={(query) => fetchContracts(1, query)} onRowClick={handleRowClick} isLoading={isLoading} />
{/* Detail Modal */}
); }