Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner_pagination.vue « components « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5bf3074dd1d9031afcd7f1ddf6fde155a104fe0 (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
<script>
import { GlKeysetPagination } from '@gitlab/ui';

export default {
  components: {
    GlKeysetPagination,
  },
  inheritAttrs: false,
  props: {
    pageInfo: {
      required: false,
      type: Object,
      default: () => ({}),
    },
  },
  computed: {
    paginationProps() {
      return { ...this.pageInfo, ...this.$attrs };
    },
    isShown() {
      const { hasPreviousPage, hasNextPage } = this.pageInfo;
      return hasPreviousPage || hasNextPage;
    },
  },
  methods: {
    prevPage() {
      this.$emit('input', {
        before: this.pageInfo.startCursor,
      });
    },
    nextPage() {
      this.$emit('input', {
        after: this.pageInfo.endCursor,
      });
    },
  },
};
</script>

<template>
  <div v-if="isShown" class="gl-text-center">
    <gl-keyset-pagination
      v-bind="paginationProps"
      :prev-text="s__('Pagination|Prev')"
      :next-text="s__('Pagination|Next')"
      @prev="prevPage"
      @next="nextPage"
    />
  </div>
</template>