-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdocuments.tsx
68 lines (63 loc) · 1.73 KB
/
documents.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { ChangeEvent, FC, useCallback } from 'react';
import { useQuery } from 'react-query';
import { useNavigate, useParams } from 'react-router-dom';
import { GetDocumentsResponse } from '../types/documents';
const DocumentsList: FC<{ slug: string }> = ({ slug }) => {
const { data, status } = useQuery<GetDocumentsResponse>(
['documents', slug],
async () => {
const response = await fetch(`/api/documents/${slug}`);
return await response.json();
},
{ retry: false, enabled: !!slug },
);
if (status === 'loading' || status === 'idle') {
return <div>Loading documents...</div>;
}
if (status === 'error') {
return <div>Failed to load documents!</div>;
}
return (
<ol>
{(data ?? []).map(({ id, title }) => (
<li key={id}>{title}</li>
))}
</ol>
);
};
export const Documents: FC = () => {
const navigate = useNavigate();
const { slug } = useParams<{ slug?: string }>();
const handleSlugSelectChange = useCallback(
(event: ChangeEvent<HTMLSelectElement>) => {
navigate(`/documents/${event.currentTarget.value}`);
},
[],
);
return (
<div>
<h1>Documents</h1>
<div>
<form>
<label htmlFor="slug">Slug</label>
<select
id="slug"
name="slug"
value={slug}
onChange={handleSlugSelectChange}
>
<option value=""></option>
<option value="months">Months</option>
<option value="secret">Secret</option>
<option value="test">Test</option>
</select>
</form>
</div>
{slug ? (
<DocumentsList slug={slug} />
) : (
<div>Select a slug to get started</div>
)}
</div>
);
};