Remove callApi, refactor API integrations, and adjust error handling

- Delete unused `callApi` utility and related imports across components.
- Replace `callApi` with direct `fetch` usage in `validateCustomer` and `addCustomer`.
- Update `customerRoutes` to include `/api` prefix for consistency.
- Refactor `useErrorHandler` to ensure comprehensive state management during errors.
- Improve `ErrorBoundary` component text for better clarity in fallback UI.
- Align `CustomersPage` logic with `useCallback` for optimized dependency management.
This commit is contained in:
2025-07-11 20:21:45 +02:00
parent 86be1e8920
commit 0724f3b1e7
9 changed files with 84 additions and 54 deletions

View File

@@ -26,6 +26,7 @@ import {Customer} from "@/services/customers/entities/customer";
import Link from "next/link";
import {useErrorHandler} from "@/components/error-boundary";
import {showError, showInfoToast} from "@/lib/ui/showToast";
import {useCallback} from "react";
export default function CustomersPage() {
const [customers, setCustomers] = useState<Customer[]>([]);
@@ -35,7 +36,8 @@ export default function CustomersPage() {
const pageSize = 15;
const handleError = useErrorHandler();
const loadCustomers = async () => {
// Wrap the loadCustomers function with useCallback
const loadCustomers = useCallback(async () => {
setLoading(true);
try {
const response = await fetch('/api/customers');
@@ -53,11 +55,11 @@ export default function CustomersPage() {
} finally {
setLoading(false);
}
};
}, [handleError]); // Include handleError as a dependency
useEffect(() => {
loadCustomers();
}, [handleError]);
}, [loadCustomers]); // Add loadCustomers to the dependency array
const filtered = useMemo(() => {
if (customers.length === 0) return [];