gitlab-org--gitlab-foss/app/assets/javascripts/environments/folder/environments_folder_view.vue

182 lines
5 KiB
Vue
Raw Normal View History

2017-04-27 10:06:17 -04:00
<script>
/* eslint-disable no-new */
2017-02-12 09:55:18 -05:00
/* global Flash */
import EnvironmentsService from '../services/environments_service';
import EnvironmentTable from '../components/environments_table.vue';
import EnvironmentsStore from '../stores/environments_store';
import TablePaginationComponent from '../../vue_shared/components/table_pagination';
import '../../lib/utils/common_utils';
import '../../vue_shared/vue_resource_interceptor';
2017-02-12 09:55:18 -05:00
2017-04-27 10:06:17 -04:00
export default {
2017-02-12 09:55:18 -05:00
components: {
'environment-table': EnvironmentTable,
'table-pagination': TablePaginationComponent,
2017-02-12 09:55:18 -05:00
},
data() {
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,
folderName,
endpoint,
2017-02-12 09:55:18 -05:00
state: store.state,
visibility: 'available',
2017-02-12 09:55:18 -05:00
isLoading: false,
cssContainerClass: environmentsData.cssClass,
canCreateDeployment: environmentsData.canCreateDeployment,
canReadEnvironment: environmentsData.canReadEnvironment,
2017-02-12 09:55:18 -05:00
// Pagination Properties,
paginationInformation: {},
pageNumber: 1,
};
},
computed: {
scope() {
2017-02-13 09:49:19 -05:00
return gl.utils.getParameterByName('scope');
},
canReadEnvironmentParsed() {
return gl.utils.convertPermissionToBoolean(this.canReadEnvironment);
},
canCreateDeploymentParsed() {
return gl.utils.convertPermissionToBoolean(this.canCreateDeployment);
},
/**
* URL to link in the stopped tab.
*
* @return {String}
*/
stoppedPath() {
return `${window.location.pathname}?scope=stopped`;
},
/**
* URL to link in the available tab.
*
* @return {String}
*/
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}`;
this.service = new EnvironmentsService(endpoint);
2017-02-12 09:55:18 -05:00
this.isLoading = true;
return this.service.get()
2017-02-12 09:55:18 -05:00
.then(resp => ({
headers: resp.headers,
body: resp.json(),
}))
.then((response) => {
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) {
const param = gl.utils.setParamInURL('page', pageNumber);
2017-02-12 09:55:18 -05:00
gl.utils.visitUrl(param);
return param;
},
},
2017-04-27 10:06:17 -04:00
};
</script>
<template>
<div :class="cssContainerClass">
<div
class="top-area"
v-if="!isLoading">
<h4 class="js-folder-name environments-folder-name">
Environments / <b>{{folderName}}</b>
</h4>
<ul class="nav-links">
<li :class="{ active: scope === null || scope === 'available' }">
<a
:href="availablePath"
class="js-available-environments-folder-tab">
Available
<span class="badge js-available-environments-count">
{{state.availableCounter}}
</span>
</a>
</li>
<li :class="{ active : scope === 'stopped' }">
<a
:href="stoppedPath"
class="js-stopped-environments-folder-tab">
Stopped
<span class="badge js-stopped-environments-count">
{{state.stoppedCounter}}
</span>
</a>
</li>
</ul>
</div>
2017-02-12 09:55:18 -05:00
2017-04-27 10:06:17 -04:00
<div class="environments-container">
<div
class="environments-list-loading text-center"
v-if="isLoading">
<i
class="fa fa-spinner fa-spin"
aria-hidden="true"/>
2017-02-12 09:55:18 -05:00
</div>
2017-04-27 10:06:17 -04:00
<div
class="table-holder"
v-if="!isLoading && state.environments.length > 0">
2017-02-12 09:55:18 -05:00
2017-04-27 10:06:17 -04:00
<environment-table
:environments="state.environments"
:can-create-deployment="canCreateDeploymentParsed"
:can-read-environment="canReadEnvironmentParsed"
:service="service"/>
2017-02-12 09:55:18 -05:00
2017-04-27 10:06:17 -04:00
<table-pagination
v-if="state.paginationInformation && state.paginationInformation.totalPages > 1"
:change="changePage"
:pageInfo="state.paginationInformation"/>
2017-02-12 09:55:18 -05:00
</div>
</div>
2017-04-27 10:06:17 -04:00
</div>
</template>