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
| import axios, { AxiosRequestConfig, Method, AxiosInstance, AxiosResponse, AxiosError } from 'axios';
type IRetryDelay = number | ((c: number) => number);
interface IConfig extends AxiosRequestConfig { cancelDuplicated?: boolean; duplicatedKey?: (ops: IConfig) => string; retry?: number; retryDelay?: IRetryDelay; retryDelayRise?: boolean; cache?: boolean; __retryCount?: number; }
const defaultConfig: IConfig = { method: 'get', cancelDuplicated: false, duplicatedKey: ({ method, url }) => `${(method as Method).toLocaleLowerCase()}${url}`, retry: 0, retryDelay: 200, retryDelayRise: true, cache: false };
const ERROR_TYPE = { Cancel: 'cancelDuplicated' };
class MAxios { public name: string = 'MAxios'; private requestMap = new Map(); private responseCacheMap = new Map();
private getDuplicatedKey(config: IConfig) { const { duplicatedKey = () => '' } = config; return duplicatedKey(config); }
private addReq(config: IConfig) { const { cancelDuplicated } = config; if (!cancelDuplicated) { return; } const key = this.getDuplicatedKey(config); if (!this.requestMap.has(key)) { config.cancelToken = new axios.CancelToken((c) => { this.requestMap.set(key, c); }); } }
private removeReq(config: IConfig) { try { const { cancelDuplicated } = config; const key = this.getDuplicatedKey(config); if (!cancelDuplicated) { return; } if (!this.requestMap.has(key)) { return; } const cancel = this.requestMap.get(key); this.requestMap.delete(key); cancel({ type: ERROR_TYPE.Cancel, message: 'Request canceled ' }); } catch (error) { console.log('removeReq: ', error); } }
private retry({ instance, config, error }: { instance: AxiosInstance; config: IConfig; error: AxiosError; }) { const { retry, retryDelay, retryDelayRise } = config; let retryCount = config.__retryCount || 0; config.__retryCount = retryCount; if (retryCount >= retry!) { return Promise.reject(error); } retryCount += 1; config.__retryCount = retryCount;
if (retryCount === retry) { config.timeout = 15000; } let delay = 0; if (typeof retryDelay === 'number') { delay = retryDelay * (retryDelayRise ? retryCount : 1); } else { delay = retryDelay!(retryCount); }
const retryTask = new Promise<void>((resolve) => { setTimeout(() => { resolve(); }, delay); }); return retryTask.then(() => { return instance.request(config); }); }
private getResponseCache(config: IConfig) { const key = this.getDuplicatedKey(config); if (this.responseCacheMap.has(key)) { return this.responseCacheMap.get(key); } return null; }
private setResponseCache(config: IConfig, response: AxiosResponse) { if (!config.cache) { return; } const key = this.getDuplicatedKey(config); this.responseCacheMap.set(key, response); }
private getAxiosInstance(config: IConfig) { const instance = axios.create(); return instance; }
private interceptorsRequest(instance: AxiosInstance) { instance.interceptors.request.use( (config) => { this.removeReq(config); this.addReq(config); return config; }, (error) => { return Promise.reject(error); } ); }
private interceptorsResponse(instance: AxiosInstance) { instance.interceptors.response.use( (response) => { this.removeReq(response.config); this.setResponseCache(response.config, response); return response; }, (error) => { const config = error.config || {}; this.removeReq(config);
if (axios.isCancel(error)) { return Promise.reject(error.message); } else { if (config.retry > 0) { return this.retry({ instance, config, error }); } return Promise.reject(error); } } ); }
private interceptors(instance: AxiosInstance) { this.interceptorsRequest(instance); this.interceptorsResponse(instance); }
public request(options: IConfig) { const config = Object.assign({}, defaultConfig, options);
if (config.cache) { const responseCache = this.getResponseCache(config); if (responseCache) { return Promise.resolve(responseCache); } }
const instance = this.getAxiosInstance(config); this.interceptors(instance); return instance.request(config); } }
export default new MAxios();
|