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

51 lines
1.1 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2019-02-15 15:39:39 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2020-01-01 13:55:28 +05:30
import TablePagination from '~/vue_shared/components/pagination/table_pagination.vue';
2020-05-24 23:13:21 +05:30
import EnvironmentTable from './environments_table.vue';
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
2019-07-07 11:18:12 +05:30
EnvironmentTable,
TablePagination,
2018-12-13 13:39:08 +05:30
GlLoadingIcon,
},
props: {
isLoading: {
type: Boolean,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
environments: {
type: Array,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
pagination: {
type: Object,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
},
methods: {
onChangePage(page) {
this.$emit('onChangePage', page);
},
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
<div class="environments-container">
2020-07-28 23:09:34 +05:30
<gl-loading-icon v-if="isLoading" size="md" class="gl-mt-3" label="Loading environments" />
2018-03-17 18:26:18 +05:30
2021-01-29 00:20:46 +05:30
<slot name="empty-state"></slot>
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
<div v-if="!isLoading && environments.length > 0" class="table-holder">
2021-11-11 11:23:49 +05:30
<environment-table :environments="environments" />
2018-03-17 18:26:18 +05:30
<table-pagination
v-if="pagination && pagination.totalPages > 1"
:change="onChangePage"
:page-info="pagination"
/>
</div>
</div>
</template>