-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
93 lines (81 loc) · 2.18 KB
/
index.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
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
module.exports = function (context) {
const { $axios } = context
context.$perf = {
data: {
logs: [],
subscribeMode: false,
},
/**
* If you want to follow request performance immediately, pass true to the parameter.
* When subscribeMode is true, performance log will be printed on the console after the request.
* @param {Boolean} option
*/
setSubscribeMode(option) {
this.data.subscribeMode = Boolean(option)
},
/**
* When this function is called, previously created logs will be removed.
*/
clearPerformanceLogs() {
this.data.logs = []
},
/**
* When this function is called, previously created logs will be returns as an array.
* @returns Array
*/
getPerformanceLogs() {
return this.data.logs || []
},
/**
* When this function is called, previously created logs will be printed on console.
*/
printPerformanceLogs() {
console.log(this.data.logs)
},
/**
* When this function is called, previously created logs will be printed on console.
*/
printPerformanceLogs() {
console.log(this.data.logs)
},
/**
* This function used on Axios interceptors.
* @param {*} res
* @returns
*/
_generateLog(res) {
const start = response.config.perfStart
const diff = new Date().getTime() - start
if (!start) {
return res
}
if (this.data.logs.some(
(curr) =>
curr.url === res.config.url &&
curr.method === res.config.method
)) {
const logObject = {
method: res.config.method,
url: res.config.url,
start: start.toString(),
duration: (diff / 1000).toFixed(2),
}
this.data.logs.push(logObject)
if(this.data.subscribeMode) {
console.log(logObject)
}
}
},
}
$axios.onRequest((config) => {
config.perfStart = new Date().getTime()
return config
})
$axios.onResponse((response) => {
context.$perf._generateLog(response)
return response
})
$axios.onError((err) => {
context.$perf._generateLog(err.response)
})
}