-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseGetUser.ts
More file actions
72 lines (64 loc) · 1.42 KB
/
useGetUser.ts
File metadata and controls
72 lines (64 loc) · 1.42 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { UseQueryResult, useQuery } from '@tanstack/react-query';
import { useAxios } from 'common/hooks/useAxios';
import { config } from 'common/utils/config';
import { QueryKey } from 'common/utils/constants';
/**
* The `Address` type.
*/
export type Address = {
street: string;
suite: string;
city: string;
zipcode: string;
geo: {
lat: string;
lng: string;
};
};
/**
* The `Company` type.
*/
export type Company = {
name: string;
catchPhrase: string;
bs: string;
};
/**
* The `User` type.
*/
export type User = {
id: number;
name: string;
username: string;
email: string;
phone: string;
website: string;
address: Address;
company: Company;
};
/**
* The request properties for `useGetUser`.
* @param {number} userId - A `User` identifier.
*/
interface UseGetUserProps {
userId: number;
}
/**
* An API hook which fetches a `User` by the identifier.
* @param {UseGetUserProps} props - The hook properties.
* @returns Returns a `UseQueryResult` with `User` data.
*/
export const useGetUser = ({ userId }: UseGetUserProps): UseQueryResult<User, Error> => {
const axios = useAxios();
const getUser = async (): Promise<User> => {
const response = await axios.request({
url: `${config.VITE_BASE_URL_API}/users/${userId}`,
});
return response.data;
};
return useQuery({
queryKey: [QueryKey.Users, userId],
queryFn: () => getUser(),
enabled: !!userId,
});
};