[057453c] | 1 | import { useMemo } from 'react';
|
---|
| 2 | // types
|
---|
| 3 | import { Employee } from 'src/schemas';
|
---|
| 4 | // db
|
---|
| 5 | import { endpoints, fetcher } from 'src/utils/axios';
|
---|
| 6 | import axios from 'src/utils/axios';
|
---|
| 7 | // swr
|
---|
| 8 | import useSWR, { mutate } from 'swr';
|
---|
| 9 |
|
---|
| 10 | export function useGetEmployees() {
|
---|
| 11 | const collectionName = endpoints.employee;
|
---|
| 12 |
|
---|
| 13 | const { data, isLoading, error, isValidating } = useSWR(collectionName, fetcher<Employee[]>, {
|
---|
| 14 | revalidateOnFocus: false,
|
---|
| 15 | });
|
---|
| 16 |
|
---|
| 17 | const memoizedValue = useMemo(
|
---|
| 18 | () => ({
|
---|
| 19 | employees: data || [],
|
---|
| 20 | employeesLoading: isLoading,
|
---|
| 21 | employeesError: error,
|
---|
| 22 | employeesValidating: isValidating,
|
---|
| 23 | employeesEmpty: !isLoading && !data?.length,
|
---|
| 24 | }),
|
---|
| 25 | [data, error, isLoading, isValidating]
|
---|
| 26 | );
|
---|
| 27 |
|
---|
| 28 | return memoizedValue;
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | export async function createEmployee(employeeData: Partial<Employee>): Promise<Employee> {
|
---|
| 32 | try {
|
---|
| 33 | const response = await axios.post<Employee>(endpoints.employee, employeeData);
|
---|
| 34 |
|
---|
| 35 | // Mutate the SWR cache to include the new employee
|
---|
| 36 | await mutate<Employee[]>(endpoints.employee, (currentData = []) => [
|
---|
| 37 | ...currentData,
|
---|
| 38 | response.data,
|
---|
| 39 | ]);
|
---|
| 40 |
|
---|
| 41 | return response.data;
|
---|
| 42 | } catch (error) {
|
---|
| 43 | throw error;
|
---|
| 44 | }
|
---|
| 45 | }
|
---|