source: src/api/customer.ts@ 87c9f1e

main
Last change on this file since 87c9f1e was 299af01, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago

chore

  • Property mode set to 100644
File size: 1.7 KB
Line 
1import { useMemo } from 'react';
2// types
3import { Customer } from 'src/schemas';
4// db
5import { endpoints, fetcher } from 'src/utils/axios';
6import axios from 'src/utils/axios';
7// swr
8import useSWR, { mutate } from 'swr';
9
10export function useGetCustomers() {
11 const collectionName = endpoints.customer;
12
13 const { data, isLoading, error, isValidating } = useSWR(collectionName, fetcher<Customer[]>, {
14 revalidateOnFocus: false,
15 });
16
17 const memoizedValue = useMemo(
18 () => ({
19 customers: data || [],
20 customersLoading: isLoading,
21 customersError: error,
22 customersValidating: isValidating,
23 customersEmpty: !isLoading && !data?.length,
24 }),
25 [data, error, isLoading, isValidating]
26 );
27
28 return memoizedValue;
29}
30
31export async function createCustomer(customerData: Partial<Customer>): Promise<Customer> {
32 try {
33 const response = await axios.post<Customer>(endpoints.customer, customerData);
34
35 // Mutate the SWR cache to include the new customer
36 await mutate<Customer[]>(endpoints.customer, (currentData = []) => [
37 ...currentData,
38 response.data,
39 ]);
40
41 return response.data;
42 } catch (error) {
43 throw error;
44 }
45}
46
47export async function updateCustomer(
48 id: string,
49 customerData: Partial<Customer>
50): Promise<Customer> {
51 try {
52 const response = await axios.patch<Customer>(`${endpoints.customer}/${id}`, customerData);
53
54 // Mutate the SWR cache to update the customer
55 await mutate<Customer[]>(endpoints.customer, (currentData = []) =>
56 currentData.map((customer) =>
57 customer.id === id ? { ...customer, ...response.data } : customer
58 )
59 );
60
61 return response.data;
62 } catch (error) {
63 throw error;
64 }
65}
Note: See TracBrowser for help on using the repository browser.