summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/container.vue
blob: 9de851c9409c0ca4bd5ba2f31331fdecf8e44803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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">

    <gl-loading-icon
      v-if="isLoading"
      :size="3"
      class="prepend-top-default"
      label="Loading environments"
    />

    <slot name="emptyState"></slot>

    <div
      v-if="!isLoading && environments.length > 0"
      class="table-holder">

      <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>