- Add in-memory caching for customer data in `CustomerRepository` to reduce API calls. - Replace direct API calls with methods from `CustomerRepository`. - Update customer-related pages (`[id]/page.tsx`, `customers/page.tsx`) to use `CustomerRepository` for data fetching. - Adjust breadcrumb resolver to leverage `CustomerRepository`. - Remove `axios` dependency from customer-related components.
167 lines
5.9 KiB
TypeScript
167 lines
5.9 KiB
TypeScript
"use client";
|
|
|
|
import React, {useEffect, useState} from "react";
|
|
import {useParams, useRouter} from "next/navigation";
|
|
import {ChevronLeft} from "lucide-react";
|
|
import {Button} from "@/components/ui/button";
|
|
import {Dialog} from "@/components/ui/dialog";
|
|
import {Skeleton} from "@/components/ui/skeleton";
|
|
import CustomerDetailContent from "@/components/customers/details/CustomerDetailContent";
|
|
import CustomerInformationContent from "@/components/customers/details/sub/ContactInformationContent";
|
|
import CustomerPhoneNumberContent from "@/components/customers/details/sub/CustomerPhoneNumberContent";
|
|
import CustomerNotesContent from "@/components/customers/details/sub/CustomerNotesContent";
|
|
import {Customer} from "@/services/customers/entities/customer";
|
|
import {CustomerRepository} from "@/services/customers/repositories/customerRepository";
|
|
|
|
export default function CustomerDetailPage() {
|
|
const router = useRouter();
|
|
const {id} = useParams<{ id: string }>();
|
|
const [customer, setCustomer] = useState<Customer | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [openDialog, setOpenDialog] = useState(false);
|
|
const [dialogContent, setDialogContent] = useState<React.ReactNode | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!id) {
|
|
setError("Keine Kunden-ID angegeben");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
let isMounted = true;
|
|
setLoading(true);
|
|
setError(null);
|
|
|
|
CustomerRepository.getById(id)
|
|
.then((result) => {
|
|
if (!isMounted) return;
|
|
|
|
if (!result) {
|
|
setError("Kunde nicht gefunden");
|
|
setCustomer(null);
|
|
} else {
|
|
setCustomer(result);
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
if (!isMounted) return;
|
|
console.error('Error fetching customer:', error);
|
|
setCustomer(null);
|
|
setError("Fehler beim Laden der Kundendaten");
|
|
})
|
|
.finally(() => {
|
|
if (isMounted) {
|
|
setLoading(false);
|
|
}
|
|
});
|
|
|
|
return () => {
|
|
isMounted = false;
|
|
};
|
|
}, [id]);
|
|
|
|
const handleOpenDialog = (content: React.ReactNode) => {
|
|
setDialogContent(content);
|
|
setOpenDialog(true);
|
|
};
|
|
|
|
const formatDate = (date: string) => {
|
|
try {
|
|
const formattedDate = new Date(date).toLocaleDateString('de-DE', {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric',
|
|
hour: '2-digit',
|
|
minute: '2-digit'
|
|
});
|
|
return formattedDate === 'Invalid Date' ? '-' : formattedDate;
|
|
} catch (error) {
|
|
console.error('Error formatting date:', error);
|
|
return '-';
|
|
}
|
|
};
|
|
|
|
const customerMetadata = {
|
|
createdInfo: customer
|
|
? `Erstellt von ${customer.createdBy || "-"} am ${formatDate(customer.createdAt)}`
|
|
: "Erstellt von - am -",
|
|
lastActivityInfo: customer
|
|
? `Letzte Aktivität: ${customer.updatedBy || "-"} am ${formatDate(customer.updatedAt)}`
|
|
: "Letzte Aktivität: - am -"
|
|
};
|
|
|
|
const renderMetadata = () => {
|
|
if (loading) {
|
|
return (
|
|
<div className="flex flex-col items-end gap-1">
|
|
<div className="space-y-1">
|
|
<Skeleton className="h-4 w-[250px]"/>
|
|
<Skeleton className="h-4 w-[280px]"/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col items-end gap-1 text-xs text-muted-foreground">
|
|
<div>{customerMetadata.createdInfo}</div>
|
|
<div>{customerMetadata.lastActivityInfo}</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="h-full w-full p-6 space-y-4 text-sm">
|
|
<div className="flex justify-between items-start">
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => router.push("/customers")}
|
|
disabled={loading}
|
|
aria-label="Zurück zur Kundenliste"
|
|
>
|
|
<ChevronLeft className="w-4 h-4 mr-1"/>
|
|
Zurück
|
|
</Button>
|
|
|
|
{renderMetadata()}
|
|
</div>
|
|
|
|
{error ? (
|
|
<div className="text-center text-red-500 p-4" role="alert">
|
|
{error}
|
|
</div>
|
|
) : (
|
|
<CustomerDetailContent
|
|
loading={loading}
|
|
customer={customer}
|
|
sections={
|
|
customer
|
|
? [
|
|
<CustomerInformationContent
|
|
key="customerInformation"
|
|
customer={customer}
|
|
handleOpenDialog={handleOpenDialog}
|
|
/>,
|
|
<CustomerPhoneNumberContent
|
|
key="customerPhoneNumberInfo"
|
|
customer={customer}
|
|
handleOpenDialog={handleOpenDialog}
|
|
/>,
|
|
<CustomerNotesContent
|
|
key="customerNotes"
|
|
customer={customer}
|
|
handleOpenDialog={handleOpenDialog}
|
|
/>
|
|
]
|
|
: []
|
|
}
|
|
/>
|
|
)}
|
|
|
|
<Dialog open={openDialog} onOpenChange={setOpenDialog}>
|
|
{dialogContent}
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
} |