debian-mirror-gitlab/app/assets/javascripts/environments/components/container.vue

70 lines
1.4 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
import tablePagination from '../../vue_shared/components/table_pagination.vue';
import environmentTable from '../components/environments_table.vue';
export default {
components: {
environmentTable,
tablePagination,
},
props: {
isLoading: {
type: Boolean,
required: true,
},
environments: {
type: Array,
required: true,
},
pagination: {
type: Object,
required: true,
},
canCreateDeployment: {
type: Boolean,
required: true,
},
canReadEnvironment: {
type: Boolean,
required: true,
},
},
methods: {
onChangePage(page) {
this.$emit('onChangePage', page);
},
},
};
</script>
<template>
<div class="environments-container">
2018-12-05 23:21:45 +05:30
<gl-loading-icon
2018-11-08 19:23:39 +05:30
v-if="isLoading"
2018-12-05 23:21:45 +05:30
:size="3"
2018-10-15 14:42:47 +05:30
class="prepend-top-default"
2018-03-17 18:26:18 +05:30
label="Loading environments"
/>
<slot name="emptyState"></slot>
<div
2018-11-08 19:23:39 +05:30
v-if="!isLoading && environments.length > 0"
class="table-holder">
2018-03-17 18:26:18 +05:30
<environment-table
:environments="environments"
:can-create-deployment="canCreateDeployment"
:can-read-environment="canReadEnvironment"
/>
<table-pagination
v-if="pagination && pagination.totalPages > 1"
:change="onChangePage"
:page-info="pagination"
/>
</div>
</div>
</template>