summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/components/pagination_bar.vue
blob: 33bd3e08bb189abbba327e507e2a6ec3ebac910c (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<script>
import { GlDropdown, GlDropdownItem, GlIcon, GlSprintf } from '@gitlab/ui';
import { __ } from '~/locale';
import PaginationLinks from '~/vue_shared/components/pagination_links.vue';

const DEFAULT_PAGE_SIZES = [20, 50, 100];

export default {
  components: {
    PaginationLinks,
    GlDropdown,
    GlDropdownItem,
    GlIcon,
    GlSprintf,
  },
  props: {
    pageInfo: {
      required: true,
      type: Object,
    },
    pageSizes: {
      required: false,
      type: Array,
      default: () => DEFAULT_PAGE_SIZES,
    },
    itemsCount: {
      required: true,
      type: Number,
    },
  },

  computed: {
    humanizedTotal() {
      return this.pageInfo.total >= 1000 ? __('1000+') : this.pageInfo.total;
    },

    paginationInfo() {
      const { page, perPage } = this.pageInfo;
      const start = (page - 1) * perPage + 1;
      const end = start + this.itemsCount - 1;

      return { start, end };
    },
  },

  methods: {
    setPage(page) {
      this.$emit('set-page', page);
    },
  },
};
</script>

<template>
  <div class="gl-display-flex gl-align-items-center">
    <pagination-links :change="setPage" :page-info="pageInfo" class="gl-m-0" />
    <gl-dropdown category="tertiary" class="gl-ml-auto">
      <template #button-content>
        <span class="gl-font-weight-bold">
          <gl-sprintf :message="__('%{count} items per page')">
            <template #count>
              {{ pageInfo.perPage }}
            </template>
          </gl-sprintf>
        </span>
        <gl-icon class="gl-button-icon dropdown-chevron" name="chevron-down" />
      </template>
      <gl-dropdown-item v-for="size in pageSizes" :key="size" @click="$emit('set-page-size', size)">
        <gl-sprintf :message="__('%{count} items per page')">
          <template #count>
            {{ size }}
          </template>
        </gl-sprintf>
      </gl-dropdown-item>
    </gl-dropdown>
    <div class="gl-ml-2" data-testid="information">
      <gl-sprintf :message="s__('BulkImport|Showing %{start}-%{end} of %{total}')">
        <template #start>
          {{ paginationInfo.start }}
        </template>
        <template #end>
          {{ paginationInfo.end }}
        </template>
        <template #total>
          {{ humanizedTotal }}
        </template>
      </gl-sprintf>
    </div>
  </div>
</template>