Extend realtime for other pipelines tables
This commit is contained in:
parent
90fc9237c2
commit
788f3451f7
2 changed files with 47 additions and 13 deletions
|
@ -1,4 +1,5 @@
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
|
import Visibility from 'visibilityjs';
|
||||||
import PipelinesTableComponent from '../../vue_shared/components/pipelines_table';
|
import PipelinesTableComponent from '../../vue_shared/components/pipelines_table';
|
||||||
import PipelinesService from '../../vue_pipelines_index/services/pipelines_service';
|
import PipelinesService from '../../vue_pipelines_index/services/pipelines_service';
|
||||||
import PipelineStore from '../../vue_pipelines_index/stores/pipelines_store';
|
import PipelineStore from '../../vue_pipelines_index/stores/pipelines_store';
|
||||||
|
@ -7,6 +8,7 @@ import EmptyState from '../../vue_pipelines_index/components/empty_state';
|
||||||
import ErrorState from '../../vue_pipelines_index/components/error_state';
|
import ErrorState from '../../vue_pipelines_index/components/error_state';
|
||||||
import '../../lib/utils/common_utils';
|
import '../../lib/utils/common_utils';
|
||||||
import '../../vue_shared/vue_resource_interceptor';
|
import '../../vue_shared/vue_resource_interceptor';
|
||||||
|
import Poll from '../../lib/utils/poll';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -42,6 +44,7 @@ export default Vue.component('pipelines-table', {
|
||||||
state: store.state,
|
state: store.state,
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
hasError: false,
|
hasError: false,
|
||||||
|
setIsMakingRequest: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -70,11 +73,32 @@ export default Vue.component('pipelines-table', {
|
||||||
|
|
||||||
this.fetchPipelines();
|
this.fetchPipelines();
|
||||||
|
|
||||||
|
const poll = new Poll({
|
||||||
|
resource: this.service,
|
||||||
|
method: 'getPipelines',
|
||||||
|
successCallback: this.successCallback,
|
||||||
|
errorCallback: this.errorCallback,
|
||||||
|
notificationCallback: this.setIsMakingRequest,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!Visibility.hidden()) {
|
||||||
|
this.isLoading = true;
|
||||||
|
poll.makeRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
Visibility.change(() => {
|
||||||
|
if (!Visibility.hidden()) {
|
||||||
|
poll.restart();
|
||||||
|
} else {
|
||||||
|
poll.stop();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
eventHub.$on('refreshPipelines', this.fetchPipelines);
|
eventHub.$on('refreshPipelines', this.fetchPipelines);
|
||||||
},
|
},
|
||||||
|
|
||||||
beforeUpdate() {
|
beforeUpdate() {
|
||||||
if (this.state.pipelines.length && this.$children) {
|
if (this.state.pipelines.length && this.$children && !this.isMakingRequest) {
|
||||||
this.store.startTimeAgoLoops.call(this, Vue);
|
this.store.startTimeAgoLoops.call(this, Vue);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -86,18 +110,28 @@ export default Vue.component('pipelines-table', {
|
||||||
methods: {
|
methods: {
|
||||||
fetchPipelines() {
|
fetchPipelines() {
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
|
||||||
return this.service.getPipelines()
|
return this.service.getPipelines()
|
||||||
.then(response => response.json())
|
.then(response => this.successCallback(response))
|
||||||
.then((json) => {
|
.catch(() => this.errorCallback());
|
||||||
|
},
|
||||||
|
|
||||||
|
successCallback(resp) {
|
||||||
|
const response = resp.json();
|
||||||
|
|
||||||
// depending of the endpoint the response can either bring a `pipelines` key or not.
|
// depending of the endpoint the response can either bring a `pipelines` key or not.
|
||||||
const pipelines = json.pipelines || json;
|
const pipelines = response.pipelines || response;
|
||||||
this.store.storePipelines(pipelines);
|
this.store.storePipelines(pipelines);
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
})
|
},
|
||||||
.catch(() => {
|
|
||||||
|
errorCallback() {
|
||||||
this.hasError = true;
|
this.hasError = true;
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
});
|
},
|
||||||
|
|
||||||
|
setIsMakingRequest(isMakingRequest) {
|
||||||
|
this.isMakingRequest = isMakingRequest;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ export default class PipelinesService {
|
||||||
this.pipelines = Vue.resource(endpoint);
|
this.pipelines = Vue.resource(endpoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
getPipelines(data) {
|
getPipelines(data = {}) {
|
||||||
const { scope, page } = data;
|
const { scope, page } = data;
|
||||||
return this.pipelines.get({ scope, page });
|
return this.pipelines.get({ scope, page });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue