-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconsume.js
42 lines (36 loc) · 1.13 KB
/
consume.js
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
import * as ErrorConsumers from './internal';
import _get from 'lodash.get';
const process = ({
error,
code,
errorConfig,
getMessage
}) => {
if (!errorConfig) return;
if (typeof errorConfig === 'function') return errorConfig(error, code);
const { enable, type = '' } = errorConfig;
if (!enable) return;
if (ErrorConsumers[type]) ErrorConsumers[type]({ error, code, errorConfig, getMessage });
};
const consume = (error, errorCodes, include, exclude, globalErrorCode, getMessage) => {
const code = _get(error, 'response.data.code') || error.code;
const errorConfig = errorCodes[code] || globalErrorCode;
if (include && include instanceof Array) {
if (!include.find((rule) => {
if (typeof rule === 'string') return rule === code;
if (rule instanceof RegExp) return rule.test(code);
})) return;
} else if (exclude && include instanceof Array) {
if (exclude.find((rule) => {
if (typeof rule === 'string') return rule === code;
if (rule instanceof RegExp) return rule.test(code);
})) return;
}
process({
error,
code,
errorConfig,
getMessage
});
}
export default consume;