source: src/api/tenant.ts@ 057453c

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

feat: implement employees

  • Property mode set to 100644
File size: 620 bytes
Line 
1import { useMemo } from 'react';
2import { Tenant } from 'src/schemas';
3import { endpoints, fetcher } from 'src/utils/axios';
4import useSWR from 'swr';
5
6export 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.