source: src/api/service.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 728 bytes
Line 
1import { useMemo } from 'react';
2// types
3import { Service } from 'mvpmasters-shared';
4// db
5import { collections, collectionFetcher as fetcher } from 'src/lib/firestore';
6// swr
7import useSWR from 'swr';
8
9export function useGetServices() {
10 const collectionName = collections.service;
11
12 const { data, isLoading, error, isValidating } = useSWR(collectionName, fetcher<Service>, {
13 revalidateOnFocus: false,
14 });
15
16 const memoizedValue = useMemo(
17 () => ({
18 services: data || [],
19 servicesLoading: isLoading,
20 servicesError: error,
21 servicesValidating: isValidating,
22 servicesEmpty: !isLoading && !data?.length,
23 }),
24 [data, error, isLoading, isValidating]
25 );
26
27 return memoizedValue;
28}
Note: See TracBrowser for help on using the repository browser.