aboutsummaryrefslogtreecommitdiff
path: root/src/hooks/APIClient.ts
blob: 9563bd6996b40001559347da0741affef79f2b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import useSWR, { responseInterface } from 'swr';
import { User, Poll, Feedback } from 'which-types';
import { get } from '../requests';


interface Response<T> extends responseInterface<T, Error> {
  data: T;
}

const fetcher = (endpoint: string) => get(endpoint).then(response => response.data);

const arrayOptions = {
  initialData: [],
  revalidateOnMount: true
};

export const useUser = (username: string | null): Response<User> => {
  return useSWR(
    username && `/users?username=${username}`,
    (url: string) => get(url).then(response => response.data[0])
  ) as Response<User>;
};

export const useProfile = (id: string): Response<Poll[]> => {
  return useSWR(id && `/profiles/${id}`, fetcher, arrayOptions) as Response<Poll[]>;
};

export const useFeed = (): Response<Poll[]> => {
  return useSWR('/feed', fetcher, { ...arrayOptions, revalidateOnFocus: false }) as Response<Poll[]>;
};

export const useFeedback = (): Response<Feedback[]> => {
  return useSWR('/feedback', fetcher, arrayOptions) as Response<Feedback[]>;
};