This repository has been archived by the owner on Nov 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathuseGet.tsx
319 lines (284 loc) · 9.68 KB
/
useGet.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
import { useContext, useState, useCallback, useEffect } from "react";
import { Cancelable, DebounceSettings } from "lodash";
import debounce from "lodash/debounce";
import merge from "lodash/merge";
import { IStringifyOptions } from "qs";
import { Context, RestfulReactProviderProps } from "./Context";
import { GetState } from "./Get";
import { processResponse } from "./util/processResponse";
import { useDeepCompareCallback } from "./util/useDeepCompareEffect";
import { useAbort } from "./useAbort";
import { constructUrl } from "./util/constructUrl";
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
export interface UseGetProps<TData, TError, TQueryParams, TPathParams> {
/**
* The path at which to request data,
* typically composed by parent Gets or the RestfulProvider.
*/
path: string | ((pathParams: TPathParams) => string);
/**
* Path Parameters
*/
pathParams?: TPathParams;
/** Options passed into the fetch call. */
requestOptions?: RestfulReactProviderProps["requestOptions"];
/**
* Query parameters
*/
queryParams?: TQueryParams;
/**
* Query parameter stringify options
*/
queryParamStringifyOptions?: IStringifyOptions;
/**
* Don't send the error to the Provider
*/
localErrorOnly?: boolean;
/**
* A function to resolve data return from the backend, most typically
* used when the backend response needs to be adapted in some way.
*/
resolve?: (data: any) => TData;
/**
* Developer mode
* Override the state with some mocks values and avoid to fetch
*/
mock?: { data?: TData; error?: TError; loading?: boolean; response?: Response };
/**
* Should we fetch data at a later stage?
*/
lazy?: boolean;
/**
* An escape hatch and an alternative to `path` when you'd like
* to fetch from an entirely different URL.
*
*/
base?: string;
/**
* How long do we wait between subsequent requests?
* Uses [lodash's debounce](https://lodash.com/docs/4.17.10#debounce) under the hood.
*/
debounce?:
| {
wait?: number;
options: DebounceSettings;
}
| boolean
| number;
}
type FetchData<TData, TError, TQueryParams, PathParams = unknown> = (
props: UseGetProps<TData, TError, TQueryParams, PathParams>,
context: RestfulReactProviderProps,
abort: () => void,
getAbortSignal: () => AbortSignal | undefined,
) => Promise<void>;
type CancellableFetchData<TData, TError, TQueryParams, TPathParams> =
| FetchData<TData, TError, TQueryParams, TPathParams>
| (FetchData<TData, TError, TQueryParams, TPathParams> & Cancelable);
type RefetchOptions<TData, TError, TQueryParams, TPathParams> = Partial<
Omit<UseGetProps<TData, TError, TQueryParams, TPathParams>, "lazy">
>;
const isCancellable = <T extends (...args: any[]) => any>(func: T): func is T & Cancelable => {
return typeof (func as any).cancel === "function" && typeof (func as any).flush === "function";
};
export interface UseGetReturn<TData, TError, TQueryParams = {}, TPathParams = unknown> extends GetState<TData, TError> {
/**
* Absolute path resolved from `base` and `path` (context & local)
*/
absolutePath: string;
/**
* Cancel the current fetch
*/
cancel: () => void;
/**
* Refetch
*/
refetch: (options?: RefetchOptions<TData, TError, TQueryParams, TPathParams>) => Promise<TData | null>;
}
export function useGet<TData = any, TError = any, TQueryParams = { [key: string]: any }, TPathParams = unknown>(
path: UseGetProps<TData, TError, TQueryParams, TPathParams>["path"],
props?: Omit<UseGetProps<TData, TError, TQueryParams, TPathParams>, "path">,
): UseGetReturn<TData, TError, TQueryParams>;
export function useGet<TData = any, TError = any, TQueryParams = { [key: string]: any }, TPathParams = unknown>(
props: UseGetProps<TData, TError, TQueryParams, TPathParams>,
): UseGetReturn<TData, TError, TQueryParams>;
export function useGet<TData = any, TError = any, TQueryParams = { [key: string]: any }, TPathParams = unknown>() {
const props: UseGetProps<TData, TError, TQueryParams, TPathParams> =
typeof arguments[0] === "object" ? arguments[0] : { ...arguments[1], path: arguments[0] };
const context = useContext(Context);
const { path, pathParams = {} } = props;
const [state, setState] = useState<GetState<TData, TError>>({
data: null,
response: null,
loading: !props.lazy,
error: null,
});
const { abort, getAbortSignal } = useAbort();
const pathStr = typeof path === "function" ? path(pathParams as TPathParams) : path;
const _fetchData = useDeepCompareCallback<FetchData<TData, TError, TQueryParams, TPathParams>>(
async (props, context, abort, getAbortSignal) => {
const {
base = context.base,
path,
resolve = context.resolve || ((d: any) => d as TData),
queryParams = {},
queryParamStringifyOptions = {},
requestOptions,
pathParams = {},
} = props;
setState(prev => {
if (prev.error || !prev.loading) {
return { ...prev, error: null, loading: true };
}
return prev;
});
const pathStr = typeof path === "function" ? path(pathParams as TPathParams) : path;
const url = constructUrl(
base,
pathStr,
{ ...context.queryParams, ...queryParams },
{
queryParamOptions: { ...context.queryParamStringifyOptions, ...queryParamStringifyOptions },
},
);
const propsRequestOptions =
(typeof requestOptions === "function" ? await requestOptions(url, "GET") : requestOptions) || {};
const contextRequestOptions =
(typeof context.requestOptions === "function"
? await context.requestOptions(url, "GET")
: context.requestOptions) || {};
const signal = getAbortSignal();
const request = new Request(url, merge({}, contextRequestOptions, propsRequestOptions, { signal }));
if (context.onRequest) context.onRequest(request);
try {
const response = await fetch(request);
const originalResponse = response.clone();
if (context.onResponse) context.onResponse(originalResponse);
const { data, responseError } = await processResponse(response);
if (signal && signal.aborted) {
return;
}
if (!response.ok || responseError) {
const error = {
message: `Failed to fetch: ${response.status} ${response.statusText}${responseError ? " - " + data : ""}`,
data,
status: response.status,
};
setState(prev => ({
...prev,
loading: false,
data: null,
error,
response: originalResponse,
}));
if (!props.localErrorOnly && context.onError) {
context.onError(error, () => _fetchData(props, context, abort, getAbortSignal), response);
}
return;
}
const resolvedData = resolve(data);
setState(prev => ({
...prev,
error: null,
loading: false,
data: resolvedData,
response: originalResponse,
}));
return resolvedData;
} catch (e) {
// avoid state updates when component has been unmounted
// and when fetch/processResponse threw an error
if (signal && signal.aborted) {
return;
}
const error = {
message: `Failed to fetch: ${e.message}`,
data: e.message,
};
setState(prev => ({
...prev,
data: null,
loading: false,
error,
}));
if (!props.localErrorOnly && context.onError) {
context.onError(error, () => _fetchData(props, context, abort, getAbortSignal));
}
return;
}
},
[
props.lazy,
props.mock,
props.path,
props.base,
props.resolve,
props.queryParams,
props.requestOptions,
props.pathParams,
context.base,
context.parentPath,
context.queryParams,
context.requestOptions,
abort,
],
);
const fetchData = useCallback<CancellableFetchData<TData, TError, TQueryParams, TPathParams>>(
typeof props.debounce === "object"
? debounce<FetchData<TData, TError, TQueryParams, TPathParams>>(
_fetchData,
props.debounce.wait,
props.debounce.options,
)
: typeof props.debounce === "number"
? debounce<FetchData<TData, TError, TQueryParams, TPathParams>>(_fetchData, props.debounce)
: props.debounce
? debounce<FetchData<TData, TError, TQueryParams, TPathParams>>(_fetchData)
: _fetchData,
[_fetchData, props.debounce],
);
useEffect(() => {
if (!props.lazy && !props.mock) {
fetchData(props, context, abort, getAbortSignal);
}
return () => {
if (isCancellable(fetchData)) {
fetchData.cancel();
}
abort();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [fetchData, props.lazy, props.mock]);
const refetch = useCallback(
(options: RefetchOptions<TData, TError, TQueryParams, TPathParams> = {}) =>
fetchData({ ...props, ...options }, context, abort, getAbortSignal),
// eslint-disable-next-line react-hooks/exhaustive-deps
[fetchData],
);
return {
...state,
...props.mock, // override the state
absolutePath: constructUrl(
props.base || context.base,
pathStr,
{
...context.queryParams,
...props.queryParams,
},
{
queryParamOptions: {
...context.queryParamStringifyOptions,
...props.queryParamStringifyOptions,
},
},
),
cancel: () => {
setState({
...state,
loading: false,
});
abort();
},
refetch,
};
}