forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
267 lines (240 loc) · 6.25 KB
/
main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import React from 'react'
import ReactDOM from 'react-dom/client'
import {
Await,
ErrorComponent,
Link,
MatchRoute,
Outlet,
RouterProvider,
createRootRoute,
createRoute,
createRouter,
defer,
} from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/router-devtools'
import axios from 'redaxios'
import type { ErrorComponentProps } from '@tanstack/react-router'
type PostType = {
id: string
title: string
body: string
}
type CommentType = {
id: string
postId: string
name: string
email: string
body: string
}
const fetchPosts = async () => {
console.info('Fetching posts...')
await new Promise((r) => setTimeout(r, 100))
return axios
.get<Array<PostType>>('https://jsonplaceholder.typicode.com/posts')
.then((r) => r.data.slice(0, 10))
}
const fetchPost = async (postId: string) => {
console.info(`Fetching post with id ${postId}...`)
const commentsPromise = new Promise((r) => setTimeout(r, 2000))
.then(() =>
axios.get<Array<CommentType>>(
`https://jsonplaceholder.typicode.com/comments?postId=${postId}`,
),
)
.then((r) => r.data)
const post = await new Promise((r) => setTimeout(r, 1000))
.then(() =>
axios.get<PostType>(
`https://jsonplaceholder.typicode.com/posts/${postId}`,
),
)
.catch((err) => {
if (err.status === 404) {
throw new NotFoundError(`Post with id "${postId}" not found!`)
}
throw err
})
.then((r) => r.data)
return {
post,
commentsPromise: defer(commentsPromise),
}
}
function Spinner({ show, wait }: { show?: boolean; wait?: `delay-${number}` }) {
return (
<div
className={`inline-block animate-spin px-3 transition ${
(show ?? true)
? `opacity-1 duration-500 ${wait ?? 'delay-300'}`
: 'duration-500 opacity-0 delay-0'
}`}
>
⍥
</div>
)
}
const rootRoute = createRootRoute({
component: RootComponent,
})
function RootComponent() {
return (
<>
<div className="p-2 flex gap-2 text-lg">
<Link
to="/"
activeProps={{
className: 'font-bold',
}}
activeOptions={{ exact: true }}
>
Home
</Link>{' '}
<Link
to={'/posts'}
activeProps={{
className: 'font-bold',
}}
>
Posts
</Link>
</div>
<hr />
<Outlet />
{/* Start rendering router matches */}
<TanStackRouterDevtools position="bottom-right" />
</>
)
}
const indexRoute = createRoute({
getParentRoute: () => rootRoute,
path: '/',
}).update({
component: IndexComponent,
})
function IndexComponent() {
return (
<div className="p-2">
<h3>Welcome Home!</h3>
</div>
)
}
const postsRoute = createRoute({
getParentRoute: () => rootRoute,
path: 'posts',
loader: fetchPosts,
component: PostsComponent,
})
function PostsComponent() {
const posts = postsRoute.useLoaderData()
return (
<div className="p-2 flex gap-2">
<ul className="list-disc pl-4">
{[...posts, { id: 'i-do-not-exist', title: 'Non-existent Post' }].map(
(post) => {
return (
<li key={post.id} className="whitespace-nowrap">
<Link
to={postRoute.to}
params={{
postId: post.id,
}}
className="flex py-1 text-blue-600 hover:opacity-75 gap-2 items-center"
activeProps={{ className: 'font-bold underline' }}
>
<div>{post.title.substring(0, 20)}</div>
<MatchRoute
to={postRoute.to}
params={{
postId: post.id,
}}
pending
>
{(match) => {
return <Spinner show={!!match} wait="delay-0" />
}}
</MatchRoute>
</Link>
</li>
)
},
)}
</ul>
<hr />
<Outlet />
</div>
)
}
class NotFoundError extends Error {}
const postRoute = createRoute({
getParentRoute: () => postsRoute,
path: '$postId',
loader: async ({ params: { postId } }) => fetchPost(postId),
errorComponent: PostErrorComponent,
component: PostComponent,
})
function PostErrorComponent({ error }: ErrorComponentProps) {
if (error instanceof NotFoundError) {
return <div>{error.message}</div>
}
return <ErrorComponent error={error} />
}
function PostComponent() {
const { post, commentsPromise } = postRoute.useLoaderData()
return (
<div className="space-y-2">
<h4 className="text-xl font-bold underline">{post.title}</h4>
<div className="text-sm">{post.body}</div>
<React.Suspense
fallback={
<div className="flex items-center gap-2">
<Spinner />
Loading comments...
</div>
}
key={post.id}
>
<Await promise={commentsPromise}>
{(comments) => {
return (
<div className="space-y-2">
<h5 className="text-lg font-bold underline">Comments</h5>
{comments.map((comment) => {
return (
<div key={comment.id}>
<h6 className="text-md font-bold">{comment.name}</h6>
<div className="text-sm italic opacity-50">
{comment.email}
</div>
<div className="text-sm">{comment.body}</div>
</div>
)
})}
</div>
)
}}
</Await>
</React.Suspense>
</div>
)
}
const routeTree = rootRoute.addChildren([
postsRoute.addChildren([postRoute]),
indexRoute,
])
// Set up a Router instance
const router = createRouter({
routeTree,
defaultPreload: 'intent',
})
// Register things for typesafety
declare module '@tanstack/react-router' {
interface Register {
router: typeof router
}
}
const rootElement = document.getElementById('app')!
if (!rootElement.innerHTML) {
const root = ReactDOM.createRoot(rootElement)
root.render(<RouterProvider router={router} />)
}