deno.land / x / jotai@v1.8.4 / tests / urql / atomWithQuery.test.tsx

atomWithQuery.test.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
import { Component, StrictMode, Suspense, useContext } from 'react'import type { ReactNode } from 'react'import { fireEvent, render } from '@testing-library/react'import type { Client } from '@urql/core'import { delay, fromValue, interval, map, pipe } from 'wonka'import { atom, SECRET_INTERNAL_getScopeContext as getScopeContext, useAtom, useSetAtom,} from 'jotai'import { atomWithQuery } from 'jotai/urql'import { getTestProvider } from '../testUtils'
// This is only used to pass tests with unstable_enableVersionedWriteconst useRetryFromError = (scope?: symbol | string | number) => { const ScopeContext = getScopeContext(scope) const { r: retryFromError } = useContext(ScopeContext) return retryFromError || ((fn) => fn())}
const generateClient = (id: string | number, error?: () => boolean) => ({ query: () => { const source$ = pipe( fromValue( error?.() ? { error: new Error('fetch error') } : { data: { id } } ), delay(100) ) if (typeof id === 'number') { ++id } return source$ }, } as unknown as Client)
const generateContinuousClient = () => ({ query: () => pipe( interval(100), map((i: number) => ({ data: { count: i } })) ), } as unknown as Client)
const Provider = getTestProvider()
it('query basic test', async () => { const countAtom = atomWithQuery<{ count: number }, Record<string, never>>( () => ({ query: '{ count }', variables: {}, }), () => generateContinuousClient() )
const Counter = () => { const [{ data }] = useAtom(countAtom) return ( <> <div>count: {data.count}</div> </> ) }
const { findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> </Provider> </StrictMode> )
await findByText('loading') await findByText('count: 0') await findByText('count: 1') await findByText('count: 2')})
it('query dependency test', async () => { type Update = (prev: number) => number const dummyAtom = atom(10) const setDummyAtom = atom(null, (_get, set, update: Update) => set(dummyAtom, update) ) const countAtom = atomWithQuery<{ count: number }, { dummy: number }>( (get) => ({ query: '{ count }', variables: { dummy: get(dummyAtom), }, }), () => generateContinuousClient() )
const Counter = () => { const [{ data }] = useAtom(countAtom) return ( <> <div>count: {data.count}</div> </> ) }
const Controls = () => { const [, setDummy] = useAtom(setDummyAtom) return <button onClick={() => setDummy((c) => c + 1)}>dummy</button> }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> <Controls /> </Provider> </StrictMode> )
await findByText('loading') await findByText('count: 0') await findByText('count: 1') await findByText('count: 2')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('dummy')) await findByText('loading') await findByText('count: 0') await findByText('count: 1') await findByText('count: 2')})
it('query change client at runtime', async () => { const firstClient = generateClient('first') const secondClient = generateClient('second') const clientAtom = atom(firstClient) const idAtom = atomWithQuery<{ id: string }, Record<string, never>>( () => ({ query: '{ id }', variables: {}, }), (get) => get(clientAtom) )
const Identifier = () => { const [{ data }] = useAtom(idAtom) return ( <> <div>id: {data.id}</div> </> ) }
const Controls = () => { const [, setClient] = useAtom(clientAtom) return ( <> <button onClick={() => setClient(firstClient)}>first</button> <button onClick={() => setClient(secondClient)}>second</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Identifier /> </Suspense> <Controls /> </Provider> </StrictMode> )
await findByText('loading') await findByText('id: first')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('second')) await findByText('loading') await findByText('id: second')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('first')) await findByText('loading') await findByText('id: first')})
it('pause test', async () => { const enabledAtom = atom(false) const countAtom = atomWithQuery<{ count: number }, Record<string, never>>( (get) => ({ query: '{ count }', variables: {}, pause: !get(enabledAtom), }), () => generateContinuousClient() )
const Counter = () => { const [result] = useAtom(countAtom) return ( <> <div>count: {result ? result.data.count : 'paused'}</div> </> ) }
const Controls = () => { const [, setEnabled] = useAtom(enabledAtom) return <button onClick={() => setEnabled((x) => !x)}>toggle</button> }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> <Controls /> </Provider> </StrictMode> )
await findByText('count: paused')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('toggle')) await findByText('loading') await findByText('count: 0')})
it('refetch test', async () => { const countAtom = atomWithQuery<{ count: number }, Record<string, never>>( () => ({ query: '{ count }', variables: {}, }), () => generateContinuousClient() )
const Counter = () => { const [{ data }, dispatch] = useAtom(countAtom) return ( <> <div>count: {data.count}</div> <button onClick={() => dispatch({ type: 'refetch' })}>button</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> </Provider> </StrictMode> )
await findByText('loading') await findByText('count: 0') await findByText('count: 1') await findByText('count: 2')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('button')) await findByText('loading') await findByText('count: 0') await findByText('count: 1') await findByText('count: 2')})
it('query null client suspense', async () => { const client = generateClient('client is set') const clientAtom = atom<Client | null>(null) const idAtom = atomWithQuery<{ id: string }, Record<string, never>>( () => ({ query: '{ id }', variables: {}, }), (get) => get(clientAtom) as Client ) // Derived Atom to safe guard when client is null const guardedIdAtom = atom((get): { data?: { id: string } } => { const client = get(clientAtom) if (client === null) return {} return get(idAtom) })
const Identifier = () => { const [{ data }] = useAtom(guardedIdAtom) return ( <> <div>{data?.id ? data?.id : 'no data'}</div> </> ) }
const Controls = () => { const [, setClient] = useAtom(clientAtom) return ( <> <button onClick={() => setClient(null)}>unset</button> <button onClick={() => setClient(client)}>set</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Identifier /> </Suspense> <Controls /> </Provider> </StrictMode> )
await findByText('no data')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('set')) await findByText('loading') await findByText('client is set')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('unset')) await findByText('no data')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('unset')) fireEvent.click(getByText('set')) await findByText('loading') await findByText('client is set')})
describe('error handling', () => { class ErrorBoundary extends Component< { message?: string; retry?: () => void; children: ReactNode }, { hasError: boolean } > { constructor(props: { message?: string; children: ReactNode }) { super(props) this.state = { hasError: false } } static getDerivedStateFromError() { return { hasError: true } } render() { return this.state.hasError ? ( <div> {this.props.message || 'errored'} {this.props.retry && ( <button onClick={() => { this.props.retry?.() this.setState({ hasError: false }) }}> retry </button> )} </div> ) : ( this.props.children ) } }
it('can catch error in error boundary', async () => { const countAtom = atomWithQuery<{ id: number }, Record<string, never>>( () => ({ query: '{ id }', variables: {}, }), () => generateClient(0, () => true) )
const Counter = () => { const [{ data }] = useAtom(countAtom) return <div>count: {data.id}</div> }
const { findByText } = render( <Provider> <ErrorBoundary> <Suspense fallback="loading"> <Counter /> </Suspense> </ErrorBoundary> </Provider> )
await findByText('loading') await findByText('errored') })
it('can recover from error', async () => { let willThrowError = true const countAtom = atomWithQuery<{ id: number }, Record<string, never>>( () => ({ query: '{ id }', variables: {}, }), () => generateClient(0, () => willThrowError) )
const Counter = () => { const [ { data: { id }, }, dispatch, ] = useAtom(countAtom) const refetch = () => dispatch({ type: 'refetch' }) return ( <> <div>count: {id}</div> <button onClick={refetch}>refetch</button> </> ) }
const App = () => { const dispatch = useSetAtom(countAtom) const retryFromError = useRetryFromError() const retry = () => { retryFromError(() => { dispatch({ type: 'refetch' }) }) } return ( <ErrorBoundary retry={retry}> <Suspense fallback="loading"> <Counter /> </Suspense> </ErrorBoundary> ) }
const { findByText, getByText } = render( <Provider> <App /> </Provider> )
await findByText('loading') await findByText('errored')
await new Promise((r) => setTimeout(r, 100)) willThrowError = false fireEvent.click(getByText('retry')) await findByText('loading') await findByText('count: 1')
await new Promise((r) => setTimeout(r, 100)) willThrowError = true fireEvent.click(getByText('refetch')) await findByText('loading') await findByText('errored')
await new Promise((r) => setTimeout(r, 100)) willThrowError = false fireEvent.click(getByText('retry')) await findByText('loading') await findByText('count: 3') })})
jotai

Version Info

Tagged at
a year ago