main
Last change
on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
620 bytes
|
Rev | Line | |
---|
[057453c] | 1 | import { useMemo } from 'react';
|
---|
| 2 | import { Tenant } from 'src/schemas';
|
---|
| 3 | import { endpoints, fetcher } from 'src/utils/axios';
|
---|
| 4 | import useSWR from 'swr';
|
---|
| 5 |
|
---|
| 6 | export function useGetTenant() {
|
---|
| 7 | const { data, isLoading, error, isValidating } = useSWR(endpoints.tenant, fetcher<Tenant>, {
|
---|
| 8 | revalidateOnFocus: false,
|
---|
| 9 | });
|
---|
| 10 |
|
---|
| 11 | const memoizedValue = useMemo(
|
---|
| 12 | () => ({
|
---|
| 13 | settings: data || null,
|
---|
| 14 | settingsLoading: isLoading,
|
---|
| 15 | settingsError: error,
|
---|
| 16 | settingsValidating: isValidating,
|
---|
| 17 | settingsEmpty: !isLoading && !data,
|
---|
| 18 | }),
|
---|
| 19 | [data, error, isLoading, isValidating]
|
---|
| 20 | );
|
---|
| 21 |
|
---|
| 22 | return memoizedValue;
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.