debian-mirror-gitlab/app/assets/javascripts/runner/components/runner_pagination.vue
2022-08-27 11:52:29 +05:30

50 lines
995 B
Vue

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