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
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { useMemo } from 'react';
|
---|
| 2 | // types
|
---|
| 3 | import { Service } from 'mvpmasters-shared';
|
---|
| 4 | // db
|
---|
| 5 | import { collections, collectionFetcher as fetcher } from 'src/lib/firestore';
|
---|
| 6 | // swr
|
---|
| 7 | import useSWR from 'swr';
|
---|
| 8 |
|
---|
| 9 | export 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.