37 lines
963 B
Vue
37 lines
963 B
Vue
<script>
|
|
import { GlKeysetPagination } from '@gitlab/ui';
|
|
import { isBoolean } from 'lodash';
|
|
import { historyPushState, buildUrlWithCurrentLocation } from '~/lib/utils/common_utils';
|
|
|
|
export default {
|
|
name: 'ReleasesPagination',
|
|
components: { GlKeysetPagination },
|
|
props: {
|
|
pageInfo: {
|
|
type: Object,
|
|
required: true,
|
|
validator: (info) => isBoolean(info.hasPreviousPage) && isBoolean(info.hasNextPage),
|
|
},
|
|
},
|
|
methods: {
|
|
onPrev(before) {
|
|
historyPushState(buildUrlWithCurrentLocation(`?before=${before}`));
|
|
},
|
|
onNext(after) {
|
|
historyPushState(buildUrlWithCurrentLocation(`?after=${after}`));
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div class="gl-display-flex gl-justify-content-center">
|
|
<gl-keyset-pagination
|
|
v-bind="pageInfo"
|
|
:prev-text="__('Prev')"
|
|
:next-text="__('Next')"
|
|
v-on="$listeners"
|
|
@prev="onPrev($event)"
|
|
@next="onNext($event)"
|
|
/>
|
|
</div>
|
|
</template>
|