2017-02-12 09:55:18 -05:00
|
|
|
/* eslint-disable no-param-reassign, no-new */
|
|
|
|
/* global Flash */
|
|
|
|
|
2017-02-17 10:54:54 -05:00
|
|
|
const Vue = window.Vue = require('vue');
|
|
|
|
window.Vue.use(require('vue-resource'));
|
2017-02-12 09:55:18 -05:00
|
|
|
const EnvironmentsService = require('../services/environments_service');
|
2017-02-12 11:58:53 -05:00
|
|
|
const EnvironmentTable = require('../components/environments_table');
|
2017-02-16 06:29:45 -05:00
|
|
|
const EnvironmentsStore = require('../stores/environments_store');
|
2017-02-13 11:11:11 -05:00
|
|
|
require('../../vue_shared/components/table_pagination');
|
2017-02-13 09:49:19 -05:00
|
|
|
require('../../lib/utils/common_utils');
|
2017-02-17 10:54:54 -05:00
|
|
|
require('../../vue_shared/vue_resource_interceptor');
|
2017-02-12 09:55:18 -05:00
|
|
|
|
|
|
|
module.exports = Vue.component('environment-folder-view', {
|
|
|
|
|
|
|
|
components: {
|
|
|
|
'environment-table': EnvironmentTable,
|
|
|
|
'table-pagination': gl.VueGlPagination,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
2017-02-12 11:58:53 -05:00
|
|
|
const environmentsData = document.querySelector('#environments-folder-list-view').dataset;
|
2017-02-16 06:29:45 -05:00
|
|
|
const store = new EnvironmentsStore();
|
|
|
|
const pathname = window.location.pathname;
|
|
|
|
const endpoint = `${pathname}.json`;
|
|
|
|
const folderName = pathname.substr(pathname.lastIndexOf('/') + 1);
|
2017-02-12 09:55:18 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
store,
|
2017-02-13 11:11:11 -05:00
|
|
|
folderName,
|
2017-02-12 11:58:53 -05:00
|
|
|
endpoint,
|
2017-02-12 09:55:18 -05:00
|
|
|
state: store.state,
|
2017-02-12 11:58:53 -05:00
|
|
|
visibility: 'available',
|
2017-02-12 09:55:18 -05:00
|
|
|
isLoading: false,
|
2017-02-12 11:58:53 -05:00
|
|
|
cssContainerClass: environmentsData.cssClass,
|
|
|
|
canCreateDeployment: environmentsData.canCreateDeployment,
|
|
|
|
canReadEnvironment: environmentsData.canReadEnvironment,
|
|
|
|
|
|
|
|
// svgs
|
|
|
|
commitIconSvg: environmentsData.commitIconSvg,
|
|
|
|
playIconSvg: environmentsData.playIconSvg,
|
|
|
|
terminalIconSvg: environmentsData.terminalIconSvg,
|
2017-02-12 09:55:18 -05:00
|
|
|
|
|
|
|
// Pagination Properties,
|
|
|
|
paginationInformation: {},
|
|
|
|
pageNumber: 1,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-02-12 11:58:53 -05:00
|
|
|
computed: {
|
|
|
|
scope() {
|
2017-02-13 09:49:19 -05:00
|
|
|
return gl.utils.getParameterByName('scope');
|
2017-02-12 11:58:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
canReadEnvironmentParsed() {
|
2017-02-13 11:11:11 -05:00
|
|
|
return gl.utils.convertPermissionToBoolean(this.canReadEnvironment);
|
2017-02-12 11:58:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
canCreateDeploymentParsed() {
|
2017-02-13 11:11:11 -05:00
|
|
|
return gl.utils.convertPermissionToBoolean(this.canCreateDeployment);
|
2017-02-12 11:58:53 -05:00
|
|
|
},
|
|
|
|
|
2017-02-13 11:11:11 -05:00
|
|
|
/**
|
|
|
|
* URL to link in the stopped tab.
|
|
|
|
*
|
|
|
|
* @return {String}
|
|
|
|
*/
|
2017-02-12 11:58:53 -05:00
|
|
|
stoppedPath() {
|
|
|
|
return `${window.location.pathname}?scope=stopped`;
|
|
|
|
},
|
|
|
|
|
2017-02-13 11:11:11 -05:00
|
|
|
/**
|
|
|
|
* URL to link in the available tab.
|
|
|
|
*
|
|
|
|
* @return {String}
|
|
|
|
*/
|
2017-02-12 11:58:53 -05:00
|
|
|
availablePath() {
|
|
|
|
return window.location.pathname;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2017-02-12 09:55:18 -05:00
|
|
|
/**
|
|
|
|
* Fetches all the environments and stores them.
|
|
|
|
* Toggles loading property.
|
|
|
|
*/
|
|
|
|
created() {
|
2017-02-13 09:49:19 -05:00
|
|
|
const scope = gl.utils.getParameterByName('scope') || this.visibility;
|
|
|
|
const pageNumber = gl.utils.getParameterByName('page') || this.pageNumber;
|
2017-02-12 09:55:18 -05:00
|
|
|
|
|
|
|
const endpoint = `${this.endpoint}?scope=${scope}&page=${pageNumber}`;
|
|
|
|
|
|
|
|
const service = new EnvironmentsService(endpoint);
|
|
|
|
|
|
|
|
this.isLoading = true;
|
|
|
|
|
|
|
|
return service.all()
|
|
|
|
.then(resp => ({
|
|
|
|
headers: resp.headers,
|
|
|
|
body: resp.json(),
|
|
|
|
}))
|
|
|
|
.then((response) => {
|
2017-02-13 11:11:11 -05:00
|
|
|
this.store.storeAvailableCount(response.body.available_count);
|
|
|
|
this.store.storeStoppedCount(response.body.stopped_count);
|
2017-02-12 09:55:18 -05:00
|
|
|
this.store.storeEnvironments(response.body.environments);
|
2017-02-16 06:29:45 -05:00
|
|
|
this.store.setPagination(response.headers);
|
2017-02-12 09:55:18 -05:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
this.isLoading = false;
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.isLoading = false;
|
|
|
|
new Flash('An error occurred while fetching the environments.', 'alert');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
/**
|
|
|
|
* Will change the page number and update the URL.
|
|
|
|
*
|
|
|
|
* @param {Number} pageNumber desired page to go to.
|
|
|
|
*/
|
|
|
|
changePage(pageNumber) {
|
2017-02-13 11:11:11 -05:00
|
|
|
const param = gl.utils.setParamInURL('page', pageNumber);
|
2017-02-12 09:55:18 -05:00
|
|
|
|
|
|
|
gl.utils.visitUrl(param);
|
|
|
|
return param;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
template: `
|
|
|
|
<div :class="cssContainerClass">
|
2017-02-13 11:11:11 -05:00
|
|
|
<div class="top-area" v-if="!isLoading">
|
2017-02-12 11:58:53 -05:00
|
|
|
|
2017-02-13 11:11:11 -05:00
|
|
|
<h4 class="js-folder-name environments-folder-name">
|
|
|
|
Environments / <b>{{folderName}}</b>
|
|
|
|
</h4>
|
2017-02-12 11:58:53 -05:00
|
|
|
|
2017-02-13 11:11:11 -05:00
|
|
|
<ul class="nav-links">
|
|
|
|
<li v-bind:class="{ 'active': scope === null || scope === 'available' }">
|
|
|
|
<a :href="availablePath" class="js-available-environments-folder-tab">
|
2017-02-12 09:55:18 -05:00
|
|
|
Available
|
|
|
|
<span class="badge js-available-environments-count">
|
|
|
|
{{state.availableCounter}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li v-bind:class="{ 'active' : scope === 'stopped' }">
|
2017-02-13 11:11:11 -05:00
|
|
|
<a :href="stoppedPath" class="js-stopped-environments-folder-tab">
|
2017-02-12 09:55:18 -05:00
|
|
|
Stopped
|
|
|
|
<span class="badge js-stopped-environments-count">
|
|
|
|
{{state.stoppedCounter}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="environments-container">
|
|
|
|
<div class="environments-list-loading text-center" v-if="isLoading">
|
|
|
|
<i class="fa fa-spinner fa-spin"></i>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="table-holder"
|
|
|
|
v-if="!isLoading && state.environments.length > 0">
|
|
|
|
|
|
|
|
<environment-table
|
|
|
|
:environments="state.environments"
|
|
|
|
:can-create-deployment="canCreateDeploymentParsed"
|
|
|
|
:can-read-environment="canReadEnvironmentParsed"
|
|
|
|
:play-icon-svg="playIconSvg"
|
|
|
|
:terminal-icon-svg="terminalIconSvg"
|
|
|
|
:commit-icon-svg="commitIconSvg">
|
|
|
|
</environment-table>
|
|
|
|
|
|
|
|
<table-pagination v-if="state.paginationInformation && state.paginationInformation.totalPages > 1"
|
|
|
|
:change="changePage"
|
|
|
|
:pageInfo="state.paginationInformation">
|
|
|
|
</table-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
});
|