-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathuser-profile.tsx
47 lines (44 loc) · 1.2 KB
/
user-profile.tsx
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
import { FC } from 'react';
import { useQuery } from 'react-query';
import { useParams, Link } from 'react-router-dom';
import { GetUsersItemApiResponse } from '../types/users';
export type UserProfileProps = unknown;
export const UserProfile: FC<UserProfileProps> = () => {
const { userId } = useParams();
const { data: user, isError } = useQuery<GetUsersItemApiResponse>(
['user', userId],
async () => {
const response = await fetch(`/api/users/${userId}`);
return await response.json();
},
{ retry: false },
);
return (
<div data-testid="user-profile">
{isError ? (
<span>Failed to load user</span>
) : user ? (
<div>
<h1>{`${user.firstName} ${user.lastName}`}</h1>
<ul>
<li>
<b>id:</b> {user.id}
</li>
<li>
<b>Date of birth:</b> {user.dob}
</li>
<li>
<b>Email:</b> {user.email}
</li>
<li>
<b>Phone number:</b> {user.phoneNumber}
</li>
</ul>
</div>
) : (
<span>Loading...</span>
)}
<Link to="/users">Go back...</Link>
</div>
);
};