2018-03-17 18:26:18 +05:30
|
|
|
/**
|
|
|
|
* Common code between environmets app and folder view
|
|
|
|
*/
|
|
|
|
import _ from 'underscore';
|
|
|
|
import Visibility from 'visibilityjs';
|
|
|
|
import Poll from '../../lib/utils/poll';
|
|
|
|
import {
|
|
|
|
getParameterByName,
|
|
|
|
parseQueryStringIntoObject,
|
|
|
|
} from '../../lib/utils/common_utils';
|
|
|
|
import { s__ } from '../../locale';
|
|
|
|
import Flash from '../../flash';
|
|
|
|
import eventHub from '../event_hub';
|
|
|
|
|
|
|
|
import EnvironmentsStore from '../stores/environments_store';
|
|
|
|
import EnvironmentsService from '../services/environments_service';
|
|
|
|
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
|
|
|
|
import tablePagination from '../../vue_shared/components/table_pagination.vue';
|
|
|
|
import environmentTable from '../components/environments_table.vue';
|
|
|
|
import tabs from '../../vue_shared/components/navigation_tabs.vue';
|
|
|
|
import container from '../components/container.vue';
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
export default {
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
components: {
|
|
|
|
environmentTable,
|
|
|
|
container,
|
|
|
|
loadingIcon,
|
|
|
|
tabs,
|
|
|
|
tablePagination,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
const store = new EnvironmentsStore();
|
|
|
|
|
|
|
|
return {
|
|
|
|
store,
|
|
|
|
state: store.state,
|
|
|
|
isLoading: false,
|
|
|
|
isMakingRequest: false,
|
|
|
|
scope: getParameterByName('scope') || 'available',
|
|
|
|
page: getParameterByName('page') || '1',
|
|
|
|
requestData: {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
methods: {
|
|
|
|
saveData(resp) {
|
|
|
|
const headers = resp.headers;
|
|
|
|
return resp.json().then((response) => {
|
|
|
|
this.isLoading = false;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
if (_.isEqual(parseQueryStringIntoObject(resp.url.split('?')[1]), this.requestData)) {
|
|
|
|
this.store.storeAvailableCount(response.available_count);
|
|
|
|
this.store.storeStoppedCount(response.stopped_count);
|
|
|
|
this.store.storeEnvironments(response.environments);
|
|
|
|
this.store.setPagination(headers);
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
},
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles URL and query parameter changes.
|
|
|
|
* When the user uses the pagination or the tabs,
|
|
|
|
* - update URL
|
|
|
|
* - Make API request to the server with new parameters
|
|
|
|
* - Update the polling function
|
|
|
|
* - Update the internal state
|
|
|
|
*/
|
|
|
|
updateContent(parameters) {
|
|
|
|
this.updateInternalState(parameters);
|
|
|
|
// fetch new data
|
|
|
|
return this.service.get(this.requestData)
|
|
|
|
.then(response => this.successCallback(response))
|
|
|
|
.then(() => {
|
|
|
|
// restart polling
|
|
|
|
this.poll.restart({ data: this.requestData });
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.errorCallback();
|
|
|
|
|
|
|
|
// restart polling
|
|
|
|
this.poll.restart();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
errorCallback() {
|
|
|
|
this.isLoading = false;
|
|
|
|
Flash(s__('Environments|An error occurred while fetching the environments.'));
|
|
|
|
},
|
|
|
|
|
|
|
|
postAction(endpoint) {
|
|
|
|
if (!this.isMakingRequest) {
|
|
|
|
this.isLoading = true;
|
|
|
|
|
|
|
|
this.service.postAction(endpoint)
|
|
|
|
.then(() => this.fetchEnvironments())
|
|
|
|
.catch(() => {
|
|
|
|
this.isLoading = false;
|
|
|
|
Flash(s__('Environments|An error occurred while making the request.'));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchEnvironments() {
|
|
|
|
this.isLoading = true;
|
|
|
|
|
|
|
|
return this.service.get(this.requestData)
|
|
|
|
.then(this.successCallback)
|
|
|
|
.catch(this.errorCallback);
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
tabs() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
name: s__('Available'),
|
|
|
|
scope: 'available',
|
|
|
|
count: this.state.availableCounter,
|
|
|
|
isActive: this.scope === 'available',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: s__('Stopped'),
|
|
|
|
scope: 'stopped',
|
|
|
|
count: this.state.stoppedCounter,
|
|
|
|
isActive: this.scope === 'stopped',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches all the environments and stores them.
|
|
|
|
* Toggles loading property.
|
|
|
|
*/
|
|
|
|
created() {
|
|
|
|
this.service = new EnvironmentsService(this.endpoint);
|
|
|
|
this.requestData = { page: this.page, scope: this.scope };
|
|
|
|
|
|
|
|
this.poll = new Poll({
|
|
|
|
resource: this.service,
|
|
|
|
method: 'get',
|
|
|
|
data: this.requestData,
|
|
|
|
successCallback: this.successCallback,
|
|
|
|
errorCallback: this.errorCallback,
|
|
|
|
notificationCallback: (isMakingRequest) => {
|
|
|
|
this.isMakingRequest = isMakingRequest;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!Visibility.hidden()) {
|
|
|
|
this.isLoading = true;
|
|
|
|
this.poll.makeRequest();
|
|
|
|
} else {
|
|
|
|
this.fetchEnvironments();
|
|
|
|
}
|
|
|
|
|
|
|
|
Visibility.change(() => {
|
|
|
|
if (!Visibility.hidden()) {
|
|
|
|
this.poll.restart();
|
|
|
|
} else {
|
|
|
|
this.poll.stop();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
eventHub.$on('postAction', this.postAction);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroyed() {
|
|
|
|
eventHub.$off('postAction');
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
|
|
|
};
|