Skip to content
Snippets Groups Projects
Commit 757da4dd authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Merge branch 'performance-bar-vue-resource' into 'master'

Add Vue resource interceptor to performance bar

See merge request gitlab-org/gitlab-ce!17915
parents 457a99c6 27cd9474
No related branches found
No related tags found
No related merge requests found
import Vue from 'vue';
import _ from 'underscore';
import axios from '../../lib/utils/axios_utils';
 
let vueResourceInterceptor;
export default class PerformanceBarService {
static fetchRequestDetails(peekUrl, requestId) {
return axios.get(peekUrl, { params: { request_id: requestId } });
}
 
static registerInterceptor(peekUrl, callback) {
vueResourceInterceptor = (request, next) => {
next(response => {
const requestId = response.headers['x-request-id'];
const requestUrl = response.url;
if (requestUrl !== peekUrl && requestId) {
callback(requestId, requestUrl);
}
});
};
Vue.http.interceptors.push(vueResourceInterceptor);
return axios.interceptors.response.use(response => {
const requestId = response.headers['x-request-id'];
const requestUrl = response.config.url;
Loading
Loading
@@ -20,5 +37,9 @@ export default class PerformanceBarService {
 
static removeInterceptor(interceptor) {
axios.interceptors.response.eject(interceptor);
Vue.http.interceptors = _.without(
Vue.http.interceptors,
vueResourceInterceptor,
);
}
}
Loading
Loading
@@ -15,6 +15,10 @@
line-height: $performance-bar-height;
color: $perf-bar-text;
 
select {
width: 200px;
}
&.disabled {
display: none;
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment