-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.ts
More file actions
423 lines (405 loc) · 10.5 KB
/
Copy pathindex.ts
File metadata and controls
423 lines (405 loc) · 10.5 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
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
export type HTTP_METHODS =
| "GET"
| "DELETE"
| "HEAD"
| "OPTIONS"
| "POST"
| "PUT"
| "PATCH"
| "PURGE"
| "LINK"
| "UNLINK";
export type FetchContextType = {
clientOnly?: boolean;
fetcher?(
url: string,
config: FetchConfigType
): Promise<{
json?: any;
data?: any;
status?: number;
blob?: any;
text?: any;
}>;
headers?: any;
baseUrl?: string;
/**
* Sets the default (placeholder) value of request data.
*
* @example {
* // If you are not setting `ìd`
* 'GET /profile': dbUserProfile,
* 'GET /todos': [],
*
* // If you are setting `id`:
* 'MyCustomId': { 'a': 'b' }
* }
*/
value?: {
[key: string]: any;
};
defaults?: {
[key: string]: {
/**
* The `id` passed to the request
*/
id?: any;
/**
* Default value for this request
*/
value?: any;
method?: HTTP_METHODS;
};
};
suspense?: any[];
resolver?: (r: Response) => any;
middleware?(incomindgData: any, previousData: any): any;
transform?(fetchData: any): any;
children?: any;
auto?: boolean;
memory?: boolean;
refresh?: TimeSpan;
attempts?: number;
attemptInterval?: TimeSpan;
revalidateOnFocus?: boolean;
query?: any;
params?: any;
onOnline?: (e: { cancel: () => void }) => void;
onOffline?: () => void;
online?: boolean;
retryOnReconnect?: boolean;
cacheProvider?: CacheStoreType;
revalidateOnMount?: boolean;
cacheIfError?: boolean;
onFetchStart?(
req: Request,
config: FetchConfigType,
ctx: FetchContextType
): void;
onFetchEnd?(
res: Response,
config: FetchConfigType,
ctx: FetchContextType
): void;
maxCacheAge?: TimeSpan;
} & Omit<RequestInit, "body">;
export type CacheStoreType = {
get(k?: any): any;
set(k?: any, v?: any): any;
remove?(k?: any): any;
};
export type CustomResponse<T> = Omit<Response, "json"> & {
json(): Promise<T>;
};
export type RequestWithBody = <R = any>(
/**
* The request url
*/
url: string,
/**
* The request configuration
*/
reqConfig?: Omit<RequestInit & FetchConfigType<R>, "suspense"> & {
/**
* Default value
*/
default?: R;
/**
* Request query
*/
query?: any;
/**
* The function that formats the body
*/
formatBody?: any;
/**
* Request params (like Express)
*/
params?: any;
/**
* The function that returns the resolved data
*/
resolver?: (r: CustomResponse<R>) => any;
/**
* A function that will run when the request fails
*/
onError?(error: Error): void;
/**
* A function that will run when the request completes succesfuly
*/
onResolve?(data: R, res: CustomResponse<R>): void;
cacheProvider?: CacheStoreType;
}
) => Promise<{
error: any;
data: R;
config: RequestInit;
status: number;
res: CustomResponse<R>;
}>;
export type TimeSpan =
| number
| `${string} ${"ms" | "sec" | "min" | "h" | "d" | "we" | "mo" | "y"}`;
/**
* An imperative version of the `useFetch` hook
*/
export type ImperativeFetch = {
get: RequestWithBody;
delete: RequestWithBody;
head: RequestWithBody;
options: RequestWithBody;
post: RequestWithBody;
put: RequestWithBody;
patch: RequestWithBody;
purge: RequestWithBody;
link: RequestWithBody;
unlink: RequestWithBody;
config?: FetchContextType & FetchInit;
};
export type FetchConfigType<FetchDataType = any, TransformData = any> = Omit<
RequestInit,
"body" | "headers"
> & {
headers?: any;
/**
* The fetch key
*/
key?: any;
/**
* The middleware function should return the data that will be commited to the state. It can be used for pagination, logging, etc.
*
* It assumes `previousData`, `incomingData` and the returned data have the same type for consistency.
*/
middleware?(
incomindgData: FetchDataType,
previousData: FetchDataType
): FetchDataType;
transform?(fetchData: FetchDataType): TransformData;
fetcher?(
url: string,
config: FetchConfigType<FetchDataType>
): Promise<{
json?: any;
data?: FetchDataType;
status?: number;
blob?: any;
text?: any;
}>;
body?: any;
/**
* Any serializable id. This is optional.
*/
id?: any;
/**
* url of the resource to fetch
*/
url?: string;
/**
* Default data value
*/
default?: FetchDataType;
/**
* Refresh interval (in seconds) to re-fetch the resource
* @default 0
*/
refresh?: TimeSpan;
/**
* This will prevent automatic requests.
* By setting this to `false`, requests will
* only be made by calling `reFetch()`
* @default true
*/
auto?: boolean;
/**
* Responses are saved in memory and used as default data.
* If `false`, the `default` prop will be used instead.
* @default true
*/
memory?: boolean;
onSubmit?: "reset" | ((form: HTMLFormElement, data: FormData) => void);
/**
* Function to run when request is resolved succesfuly
*/
onResolve?: (data: FetchDataType, res?: Response) => void;
/**
* Override the cache for this specific request
*/
cacheProvider?: CacheStoreType;
/**
* Function to run when data is mutated
*/
onMutate?: (
data: FetchDataType,
/**
* An imperative version of `useFetche`
*/
fetcher: ImperativeFetch
) => void;
/**
* Function to run when the request fails
*/
onError?: (error: Error, req?: Response) => void;
/**
* Function to run when a request is aborted
*/
onAbort?: () => void;
/**
* Whether a change in deps will cancel a queued request and make a new one
*/
cancelOnChange?: boolean;
/**
* Parse as json by default
*/
resolver?: (d: CustomResponse<FetchDataType>) => any;
/**
* The ammount of attempts if request fails
* @default 1
*/
attempts?:
| number
| ((q: {
status: number;
res: Response;
error: Error;
completedAttempts: number;
}) => number | undefined | void);
/**
* The interval at which to run attempts on request fail
* @default 0
*/
attemptInterval?: TimeSpan;
/**
* If a request should be made when the tab is focused. This currently works on browsers
* @default false
*/
revalidateOnFocus?: boolean;
/**
* If `false`, revalidation will only happen when props passed to the `useFetch` change.
* For example, you may want to have a component that should
* fetch with `useFetch` only once during the application lifetime
* or when its props change but not when, for example, navigating
* between pages (web) or screens (React Native). This is very useful
* when you have components that should persist their state, like layouts.
* This is also a way of revalidating when props change.
*
* Note that the behaviour when props change is the same.
* @default true
*/
revalidateOnMount?: boolean;
/**
* This will run when connection is interrupted
*/
onOffline?: () => void;
/**
* This will run when connection is restored
*/
onOnline?: (e: { cancel: () => void }) => void;
/**
* If the request should retry when connection is restored
* @default true
*/
retryOnReconnect?: boolean;
/**
* If using inside a `<Suspense>`
*/
suspense?: boolean;
/**
* Override base url
*/
baseUrl?: string;
/**
* Request method
*/
method?: HTTP_METHODS;
/**
* URL search params
*/
query?: any;
/**
* URL params
*/
params?: any;
/**
* Customize how body is formated for the request. By default it will be sent in JSON format
* but you can set it to false if for example, you are sending a `FormData`
* body, or to `b => serialize(b)` for example, if you want to send JSON data
* (the last one is the default behaviour so in that case you can ignore it)
*/
formatBody?: boolean | ((b: any) => any);
/**
* The time to wait before revalidation after props change
*/
debounce?: TimeSpan;
/**
* Will run when the request is sent
*/
onFetchStart?: FetchContextType["onFetchStart"];
/**
* Will run when the response is received
*/
onFetchEnd?: FetchContextType["onFetchEnd"];
/**
* If `true`, the last resolved value be returned as `data` if the request fails. If `false`, the default value will be returned instead
*
* @default true
*/
cacheIfError?: boolean;
/**
* The max age a page should be cached (with no request)
*/
maxCacheAge?: TimeSpan;
};
// If first argument is a string
export type FetchConfigTypeNoUrl<
FetchDataType = any,
TransformData = any
> = Omit<FetchConfigType<FetchDataType, TransformData>, "url">;
/**
* Create a configuration object to use in a 'useFetche' call
*/
export type FetchInit<FDT = any, TransformData = any> = FetchConfigType<
FDT,
TransformData
>;
// types related to params parsing
/** Helper type to extract the parameter name from a segment like :id or {id} or [id] */
export type ExtractParam<Segment extends string> =
Segment extends `[${infer Name}]`
? Name // [name]
: Segment extends `:${infer Name}`
? Name // :name
: Segment extends `{${infer Name}}`
? Name // {name}
: never;
type CleanPath<Path extends string> = Path extends `/${infer Rest}`
? CleanPath<Rest>
: Path extends `${infer Rest}/`
? CleanPath<Rest>
: Path extends `${infer Base}?${any}`
? CleanPath<Base>
: Path;
type ParsePathParams<Path extends string> =
Path extends `${infer Segment}/${infer Rest}`
? (ExtractParam<Segment> extends never
? {}
: { [K in ExtractParam<Segment>]: string | number }) &
ParsePathParams<Rest>
: ExtractParam<Path> extends never
? {}
: { [K in ExtractParam<Path>]: string | number };
export type PathParams<Path extends string> = ParsePathParams<CleanPath<Path>>;
export type StaticParams<UrlType extends string> =
PathParams<UrlType> extends Record<string, never>
? { params?: any }
: { params: PathParams<UrlType> };
export type StaticFetchConfig<D, T, U extends string> = Omit<
FetchConfigType<D, T>,
"url" | "params"
> & {
url?: U;
} & StaticParams<U>;
export type StaticFetchConfigNoUrl<D, T, U extends string> = Omit<
FetchConfigTypeNoUrl<D, T>,
"params"
> &
StaticParams<U>;