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

persisted_pagination.vue « components « shared « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01c2c751cacac6ea07fc027b9c3aa7a1b4063d7e (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
<script>
import { GlKeysetPagination } from '@gitlab/ui';
import UrlSync from '~/vue_shared/components/url_sync.vue';

export default {
  name: 'PersistedPagination',
  components: {
    GlKeysetPagination,
    UrlSync,
  },
  inheritAttrs: false,
  props: {
    pagination: {
      type: Object,
      default: () => ({}),
      required: false,
    },
  },
  computed: {
    attrs() {
      return {
        ...this.pagination,
        ...this.$attrs,
      };
    },
  },
  methods: {
    onPrev(updateQuery) {
      updateQuery({
        before: this.pagination?.startCursor,
        after: null,
      });
      this.$emit('prev');
    },
    onNext(updateQuery) {
      updateQuery({
        after: this.pagination?.endCursor,
        before: null,
      });
      this.$emit('next');
    },
  },
};
</script>

<template>
  <url-sync>
    <template #default="{ updateQuery }">
      <gl-keyset-pagination
        v-bind="attrs"
        @prev="onPrev(updateQuery)"
        @next="onNext(updateQuery)"
      />
    </template>
  </url-sync>
</template>