summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/dependency_proxy/components/manifests_list.vue
blob: 005c8feea3afcaa7c143b0c3f0a6402c1b5cbd21 (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
<script>
import { GlKeysetPagination } from '@gitlab/ui';
import { s__ } from '~/locale';
import ManifestRow from '~/packages_and_registries/dependency_proxy/components/manifest_row.vue';

export default {
  name: 'ManifestsLists',
  components: {
    ManifestRow,
    GlKeysetPagination,
  },
  props: {
    manifests: {
      type: Array,
      required: false,
      default: () => [],
    },
    pagination: {
      type: Object,
      required: true,
    },
  },
  i18n: {
    listTitle: s__('DependencyProxy|Image list'),
  },
  computed: {
    showPagination() {
      return this.pagination.hasNextPage || this.pagination.hasPreviousPage;
    },
  },
};
</script>

<template>
  <div class="gl-mt-6">
    <h3 class="gl-font-base">{{ $options.i18n.listTitle }}</h3>
    <div
      class="gl-border-t-1 gl-border-gray-100 gl-border-t-solid gl-display-flex gl-flex-direction-column"
    >
      <manifest-row v-for="(manifest, index) in manifests" :key="index" :manifest="manifest" />
    </div>
    <div class="gl-display-flex gl-justify-content-center">
      <gl-keyset-pagination
        v-if="showPagination"
        v-bind="pagination"
        class="gl-mt-3"
        @prev="$emit('prev-page')"
        @next="$emit('next-page')"
      />
    </div>
  </div>
</template>