forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusePaginatedQuery.js
52 lines (37 loc) · 1.09 KB
/
usePaginatedQuery.js
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
import React from 'react'
//
import { useBaseQuery } from './useBaseQuery'
import { getQueryArgs, handleSuspense } from './utils'
export function usePaginatedQuery(...args) {
let [queryKey, queryVariables, queryFn, config = {}] = getQueryArgs(args)
const lastDataRef = React.useRef()
if (!queryKey) {
lastDataRef.current = undefined
}
// If latestData is set, don't use initialData
if (typeof lastDataRef.current !== 'undefined') {
delete config.initialData
}
const query = useBaseQuery(queryKey, queryVariables, queryFn, config)
let { data: latestData, status } = query
React.useEffect(() => {
if (status === 'success' && typeof latestData !== 'undefined') {
lastDataRef.current = latestData
}
}, [latestData, status])
let resolvedData = latestData
if (typeof resolvedData === 'undefined') {
resolvedData = lastDataRef.current
}
if (typeof resolvedData !== 'undefined') {
status = 'success'
}
const paginatedQuery = {
...query,
resolvedData,
latestData,
status,
}
handleSuspense(paginatedQuery)
return paginatedQuery
}