-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstance.ts
29 lines (26 loc) · 1.12 KB
/
instance.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
import axios, { AxiosInstance } from 'axios';
import * as decorators from './decorators';
import { HttpMethodDecoratorFactory, CustomMethodDecorator } from './DecoratorCore';
import { createIndependentConf } from './RequestConfig';
import { RequestConfig } from './types';
const overloadMethodDecorators = (initConfig: RequestConfig, request: AxiosInstance) => {
const httpMethodDecorate = HttpMethodDecoratorFactory(initConfig, request);
return {
createMethodDecorator: CustomMethodDecorator(initConfig),
Get: (url: string) => httpMethodDecorate('GET', url),
Post: (url: string) => httpMethodDecorate('POST', url),
Head: (url: string) => httpMethodDecorate('HEAD', url),
Put: (url: string) => httpMethodDecorate('PUT', url),
Delete: (url: string) => httpMethodDecorate('DELETE', url),
};
};
export default function createInstance(config?: RequestConfig) {
const axiosInst = axios.create();
const requestConfig = createIndependentConf(config);
return {
requestConfig,
interceptors: axiosInst.interceptors,
...decorators,
...overloadMethodDecorators(requestConfig.get(), axiosInst),
};
}