-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathuseGetList.ts
123 lines (119 loc) · 4 KB
/
useGetList.ts
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
import {
useQuery,
UseQueryOptions,
UseQueryResult,
useQueryClient,
} from 'react-query';
import { RaRecord, GetListParams, GetListResult } from '../types';
import { useDataProvider } from './useDataProvider';
/**
* Call the dataProvider.getList() method and return the resolved result
* as well as the loading state.
*
* The return value updates according to the request state:
*
* - start: { isLoading: true, refetch }
* - success: { data: [data from store], total: [total from response], isLoading: false, refetch }
* - error: { error: [error from response], isLoading: false, refetch }
*
* This hook will return the cached result when called a second time
* with the same parameters, until the response arrives.
*
* @param {string} resource The resource name, e.g. 'posts'
* @param {Params} params The getList parameters { pagination, sort, filter, meta }
* @param {Object} options Options object to pass to the queryClient.
* May include side effects to be executed upon success or failure, e.g. { onSuccess: () => { refresh(); } }
*
* @typedef Params
* @prop params.pagination The request pagination { page, perPage }, e.g. { page: 1, perPage: 10 }
* @prop params.sort The request sort { field, order }, e.g. { field: 'id', order: 'DESC' }
* @prop params.filter The request filters, e.g. { title: 'hello, world' }
* @prop params.meta Optional meta parameters
*
* @returns The current request state. Destructure as { data, total, error, isLoading, refetch }.
*
* @example
*
* import { useGetList } from 'react-admin';
*
* const LatestNews = () => {
* const { data, total, isLoading, error } = useGetList(
* 'posts',
* { pagination: { page: 1, perPage: 10 }, sort: { field: 'published_at', order: 'DESC' } }
* );
* if (isLoading) { return <Loading />; }
* if (error) { return <p>ERROR</p>; }
* return <ul>{data.map(item =>
* <li key={item.id}>{item.title}</li>
* )}</ul>;
* };
*/
export const useGetList = <RecordType extends RaRecord = any>(
resource: string,
params: Partial<GetListParams> = {},
options?: UseQueryOptions<GetListResult<RecordType>, Error>
): UseGetListHookValue<RecordType> => {
const {
pagination = { page: 1, perPage: 25 },
sort = { field: 'id', order: 'DESC' },
filter = {},
meta,
} = params;
const dataProvider = useDataProvider();
const queryClient = useQueryClient();
const result = useQuery<
GetListResult<RecordType>,
Error,
GetListResult<RecordType>
>(
[resource, 'getList', { pagination, sort, filter, meta }],
() =>
dataProvider
.getList<RecordType>(resource, {
pagination,
sort,
filter,
meta,
})
.then(({ data, total, pageInfo }) => ({
data,
total,
pageInfo,
})),
{
onSuccess: ({ data }) => {
// optimistically populate the getOne cache
data.forEach(record => {
queryClient.setQueryData(
[resource, 'getOne', { id: String(record.id), meta }],
oldRecord => oldRecord ?? record
);
});
},
...options,
}
);
return (result.data
? {
...result,
data: result.data?.data,
total: result.data?.total,
pageInfo: result.data?.pageInfo,
}
: result) as UseQueryResult<RecordType[], Error> & {
total?: number;
pageInfo?: {
hasNextPage?: boolean;
hasPreviousPage?: boolean;
};
};
};
export type UseGetListHookValue<
RecordType extends RaRecord = any
> = UseQueryResult<RecordType[], Error> & {
total?: number;
pageInfo?: {
hasNextPage?: boolean;
hasPreviousPage?: boolean;
};
};