2017-09-10 17:25:29 +05:30
|
|
|
import Visibility from 'visibilityjs';
|
2018-03-27 19:54:05 +05:30
|
|
|
import { __ } from '../../locale';
|
2018-03-17 18:26:18 +05:30
|
|
|
import Flash from '../../flash';
|
2017-09-10 17:25:29 +05:30
|
|
|
import Poll from '../../lib/utils/poll';
|
2018-03-27 19:54:05 +05:30
|
|
|
import EmptyState from '../components/empty_state.vue';
|
|
|
|
import SvgBlankState from '../components/blank_state.vue';
|
|
|
|
import LoadingIcon from '../../vue_shared/components/loading_icon.vue';
|
|
|
|
import PipelinesTableComponent from '../components/pipelines_table.vue';
|
2017-09-10 17:25:29 +05:30
|
|
|
import eventHub from '../event_hub';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-03-27 19:54:05 +05:30
|
|
|
PipelinesTableComponent,
|
|
|
|
SvgBlankState,
|
|
|
|
EmptyState,
|
|
|
|
LoadingIcon,
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isLoading: false,
|
|
|
|
hasError: false,
|
|
|
|
isMakingRequest: false,
|
|
|
|
updateGraphDropdown: false,
|
|
|
|
hasMadeRequest: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
beforeMount() {
|
|
|
|
this.poll = new Poll({
|
|
|
|
resource: this.service,
|
|
|
|
method: 'getPipelines',
|
|
|
|
data: this.requestData ? this.requestData : undefined,
|
|
|
|
successCallback: this.successCallback,
|
|
|
|
errorCallback: this.errorCallback,
|
|
|
|
notificationCallback: this.setIsMakingRequest,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!Visibility.hidden()) {
|
|
|
|
this.isLoading = true;
|
|
|
|
this.poll.makeRequest();
|
|
|
|
} else {
|
|
|
|
// If tab is not visible we need to make the first request so we don't show the empty
|
|
|
|
// state without knowing if there are any pipelines
|
|
|
|
this.fetchPipelines();
|
|
|
|
}
|
|
|
|
|
|
|
|
Visibility.change(() => {
|
|
|
|
if (!Visibility.hidden()) {
|
|
|
|
this.poll.restart();
|
|
|
|
} else {
|
|
|
|
this.poll.stop();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
eventHub.$on('postAction', this.postAction);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
2018-05-09 12:01:36 +05:30
|
|
|
eventHub.$off('postAction', this.postAction);
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
|
|
|
destroyed() {
|
|
|
|
this.poll.stop();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetchPipelines() {
|
|
|
|
if (!this.isMakingRequest) {
|
|
|
|
this.isLoading = true;
|
|
|
|
|
|
|
|
this.service.getPipelines(this.requestData)
|
|
|
|
.then(response => this.successCallback(response))
|
|
|
|
.catch(() => this.errorCallback());
|
|
|
|
}
|
|
|
|
},
|
|
|
|
setCommonData(pipelines) {
|
|
|
|
this.store.storePipelines(pipelines);
|
|
|
|
this.isLoading = false;
|
|
|
|
this.updateGraphDropdown = true;
|
|
|
|
this.hasMadeRequest = true;
|
|
|
|
},
|
|
|
|
errorCallback() {
|
|
|
|
this.hasError = true;
|
|
|
|
this.isLoading = false;
|
|
|
|
this.updateGraphDropdown = false;
|
2018-03-27 19:54:05 +05:30
|
|
|
this.hasMadeRequest = true;
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
|
|
|
setIsMakingRequest(isMakingRequest) {
|
|
|
|
this.isMakingRequest = isMakingRequest;
|
|
|
|
|
|
|
|
if (isMakingRequest) {
|
|
|
|
this.updateGraphDropdown = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
postAction(endpoint) {
|
|
|
|
this.service.postAction(endpoint)
|
2018-05-09 12:01:36 +05:30
|
|
|
.then(() => this.fetchPipelines())
|
2018-03-27 19:54:05 +05:30
|
|
|
.catch(() => Flash(__('An error occurred while making the request.')));
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|