-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathuseGetManyReference.ts
More file actions
195 lines (183 loc) · 6.32 KB
/
useGetManyReference.ts
File metadata and controls
195 lines (183 loc) · 6.32 KB
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
import { useEffect, useMemo } from 'react';
import {
useQuery,
UseQueryOptions,
UseQueryResult,
useQueryClient,
} from '@tanstack/react-query';
import {
RaRecord,
GetManyReferenceParams,
GetManyReferenceResult,
} from '../types';
import { useDataProvider } from './useDataProvider';
import { useEvent } from '../util';
/**
* Call the dataProvider.getManyReference() method and return the resolved result
* as well as the loading state.
*
* The return value updates according to the request state:
*
* - start: { isPending: true, refetch }
* - success: { data: [data from store], total: [total from response], isPending: false, refetch }
* - error: { error: [error from response], isPending: 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 getManyReference parameters { target, id, 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.target The target resource key, e.g. 'post_id'
* @prop params.id The identifier of the record to look for in target, e.g. '123'
* @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, isPending, refetch }.
*
* @example
*
* import { useGetManyReference, useRecordContext } from 'react-admin';
*
* const PostComments = () => {
* const record = useRecordContext();
* // fetch all comments related to the current record
* const { data, isPending, error } = useGetManyReference(
* 'comments',
* { target: 'post_id', id: record.id, pagination: { page: 1, perPage: 10 }, sort: { field: 'published_at', order: 'DESC' } }
* );
* if (isPending) { return <Loading />; }
* if (error) { return <p>ERROR</p>; }
* return <ul>{data.map(comment =>
* <li key={comment.id}>{comment.body}</li>
* )}</ul>;
* };
*/
export const useGetManyReference = <
RecordType extends RaRecord = any,
ErrorType = Error,
>(
resource: string,
params: Partial<GetManyReferenceParams> = {},
options: UseGetManyReferenceHookOptions<RecordType, ErrorType> = {}
): UseGetManyReferenceHookValue<RecordType, ErrorType> => {
const {
target,
id,
pagination = { page: 1, perPage: 25 },
sort = { field: 'id', order: 'DESC' },
filter = {},
meta,
} = params;
const dataProvider = useDataProvider();
const queryClient = useQueryClient();
const {
onError = noop,
onSuccess = noop,
onSettled = noop,
...queryOptions
} = options;
const onSuccessEvent = useEvent(onSuccess);
const onErrorEvent = useEvent(onError);
const onSettledEvent = useEvent(onSettled);
const result = useQuery<GetManyReferenceResult<RecordType>, ErrorType>({
queryKey: [
resource,
'getManyReference',
{ target, id, pagination, sort, filter, meta },
],
queryFn: queryParams => {
if (!target || id == null) {
// check at runtime to support partial parameters with the enabled option
return Promise.reject(new Error('target and id are required'));
}
return dataProvider
.getManyReference<RecordType>(resource, {
target,
id,
pagination,
sort,
filter,
meta,
signal:
dataProvider.supportAbortSignal === true
? queryParams.signal
: undefined,
})
.then(({ data, total, pageInfo, meta }) => ({
data,
total,
pageInfo,
meta,
}));
},
...queryOptions,
});
useEffect(() => {
if (result.data === undefined) return;
// optimistically populate the getOne cache
result.data?.data?.forEach(record => {
queryClient.setQueryData(
[resource, 'getOne', { id: String(record.id), meta }],
oldRecord => oldRecord ?? record
);
});
onSuccessEvent(result.data);
}, [queryClient, meta, onSuccessEvent, resource, result.data]);
useEffect(() => {
if (result.error == null) return;
onErrorEvent(result.error);
}, [onErrorEvent, result.error]);
useEffect(() => {
if (result.status === 'pending') return;
onSettledEvent(result.data, result.error);
}, [onSettledEvent, result.data, result.error, result.status]);
return useMemo(
() =>
result.data
? {
...result,
...result.data,
}
: result,
[result]
) as unknown as UseQueryResult<RecordType[], ErrorType> & {
total?: number;
pageInfo?: {
hasNextPage?: boolean;
hasPreviousPage?: boolean;
};
meta?: any;
};
};
export type UseGetManyReferenceHookOptions<
RecordType extends RaRecord = any,
ErrorType = Error,
> = Omit<
UseQueryOptions<GetManyReferenceResult<RecordType>, ErrorType>,
'queryKey' | 'queryFn'
> & {
onSuccess?: (data: GetManyReferenceResult<RecordType>) => void;
onError?: (error: ErrorType) => void;
onSettled?: (
data?: GetManyReferenceResult<RecordType>,
error?: ErrorType | null
) => void;
};
export type UseGetManyReferenceHookValue<
RecordType extends RaRecord = any,
ErrorType = Error,
> = UseQueryResult<RecordType[], ErrorType> & {
total?: number;
pageInfo?: {
hasNextPage?: boolean;
hasPreviousPage?: boolean;
};
meta?: any;
};
const noop = () => undefined;