forked from ava/use-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.ts
39 lines (36 loc) · 1.03 KB
/
defaults.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
import { Flatten, CachePolicies, UseFetchArgsReturn } from './types'
import { isObject } from './utils'
export const useFetchArgsDefaults: UseFetchArgsReturn = {
host: '',
path: undefined,
customOptions: {
cacheLife: 0,
cachePolicy: CachePolicies.CACHE_FIRST,
interceptors: {},
onAbort: () => { /* do nothing */ },
onError: () => { /* do nothing */ },
onNewData: (currData: any, newData: any) => newData,
onTimeout: () => { /* do nothing */ },
perPage: 0,
persist: false,
responseType: ['json', 'text', 'blob', 'arrayBuffer'],
retries: 0,
retryDelay: 1000,
retryOn: [],
suspense: false,
timeout: 0,
// defaults
data: undefined,
loading: false
},
requestInit: {
headers: {
Accept: 'application/json, text/plain, */*'
}
},
dependencies: undefined
}
export default Object.entries(useFetchArgsDefaults).reduce((acc, [key, value]) => {
if (isObject(value)) return { ...acc, ...value }
return { ...acc, [key]: value }
}, {} as Flatten<UseFetchArgsReturn>)