mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 10:54:44 +00:00
43 lines
1008 B
Vue
43 lines
1008 B
Vue
<script lang="ts">
|
|
import type { PrimitiveProps } from '@/primitive';
|
|
|
|
export interface PaginationPrevProps extends PrimitiveProps {}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { useForwardExpose } from '@robonen/vue';
|
|
import { Primitive } from '@/primitive';
|
|
import { injectPaginationContext } from './context';
|
|
|
|
const { as = 'button' as const } = defineProps<PaginationPrevProps>();
|
|
|
|
const { forwardRef } = useForwardExpose();
|
|
const ctx = injectPaginationContext();
|
|
|
|
const disabled = computed(() => ctx.isFirstPage.value || ctx.disabled.value);
|
|
|
|
const attrs = computed(() => ({
|
|
'aria-label': 'Previous Page',
|
|
type: as === 'button' ? 'button' as const : undefined,
|
|
disabled: disabled.value,
|
|
}));
|
|
|
|
function handleClick() {
|
|
if (!disabled.value) {
|
|
ctx.onPageChange(ctx.currentPage.value - 1);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
:ref="forwardRef"
|
|
:as
|
|
v-bind="attrs"
|
|
@click="handleClick"
|
|
>
|
|
<slot>Prev page</slot>
|
|
</Primitive>
|
|
</template>
|