mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 15:31:46 +01:00
121
src/runtime/components/Pagination.vue
Normal file
121
src/runtime/components/Pagination.vue
Normal file
@@ -0,0 +1,121 @@
|
||||
<script lang="ts">
|
||||
import { tv } from 'tailwind-variants'
|
||||
import type { PaginationRootProps, PaginationRootEmits } from 'radix-vue'
|
||||
import type { AppConfig } from '@nuxt/schema'
|
||||
import _appConfig from '#build/app.config'
|
||||
import theme from '#build/ui/pagination'
|
||||
import type { ButtonProps, IconProps } from '#ui/types'
|
||||
|
||||
const appConfig = _appConfig as AppConfig & { ui: { pagination: Partial<typeof theme> } }
|
||||
|
||||
const pagination = tv({ extend: tv(theme), ...(appConfig.ui?.pagination || {}) })
|
||||
|
||||
export interface PaginationProps extends Omit<PaginationRootProps, 'asChild'> {
|
||||
firstIcon?: IconProps['name']
|
||||
prevIcon?: IconProps['name']
|
||||
nextIcon?: IconProps['name']
|
||||
lastIcon?: IconProps['name']
|
||||
ellipsisIcon?: IconProps['name']
|
||||
color?: ButtonProps['color']
|
||||
variant?: ButtonProps['variant']
|
||||
activeColor?: ButtonProps['color']
|
||||
activeVariant?: ButtonProps['variant']
|
||||
showControls?: boolean
|
||||
size?: ButtonProps['size']
|
||||
class?: any
|
||||
ui?: Partial<typeof pagination.slots>
|
||||
}
|
||||
|
||||
export interface PaginationEmits extends PaginationRootEmits {}
|
||||
|
||||
export interface PaginationSlots {
|
||||
first(): any
|
||||
prev(): any
|
||||
next(): any
|
||||
last(): any
|
||||
ellipsis(): any
|
||||
item(props: {
|
||||
page: number
|
||||
pageCount: number
|
||||
item: {
|
||||
type: 'ellipsis'
|
||||
} | {
|
||||
type: 'page'
|
||||
value: number
|
||||
}
|
||||
index: number
|
||||
}): any
|
||||
}
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed } from 'vue'
|
||||
import { PaginationRoot, PaginationList, PaginationListItem, PaginationFirst, PaginationPrev, PaginationEllipsis, PaginationNext, PaginationLast, useForwardPropsEmits } from 'radix-vue'
|
||||
import { reactivePick } from '@vueuse/core'
|
||||
import { useAppConfig } from '#imports'
|
||||
|
||||
const props = withDefaults(defineProps<PaginationProps>(), {
|
||||
color: 'white',
|
||||
activeColor: 'black',
|
||||
variant: 'solid',
|
||||
activeVariant: 'solid',
|
||||
showControls: true
|
||||
})
|
||||
const emits = defineEmits<PaginationEmits>()
|
||||
defineSlots<PaginationSlots>()
|
||||
|
||||
const appConfig = useAppConfig()
|
||||
|
||||
const rootProps = useForwardPropsEmits(reactivePick(props, 'as', 'defaultPage', 'disabled', 'itemsPerPage', 'page', 'showEdges', 'siblingCount', 'total'), emits)
|
||||
|
||||
const ui = computed(() => tv({ extend: pagination, slots: props.ui })())
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PaginationRoot v-slot="{ page, pageCount }" v-bind="rootProps" :class="ui.root({ class: props.class })">
|
||||
<PaginationList v-slot="{ items }" :class="ui.list()">
|
||||
<PaginationFirst v-if="showControls || $slots.first" as-child>
|
||||
<slot name="first">
|
||||
<UButton :color="color" :variant="variant" :size="size" :icon="firstIcon || appConfig.ui.icons.chevronDoubleLeft" />
|
||||
</slot>
|
||||
</PaginationFirst>
|
||||
<PaginationPrev v-if="showControls || $slots.prev" as-child>
|
||||
<slot name="prev">
|
||||
<UButton :color="color" :variant="variant" :size="size" :icon="prevIcon || appConfig.ui.icons.chevronLeft" />
|
||||
</slot>
|
||||
</PaginationPrev>
|
||||
|
||||
<template v-for="(item, index) in items">
|
||||
<PaginationListItem v-if="item.type === 'page'" :key="index" as-child :value="item.value">
|
||||
<slot name="item" v-bind="{ item, index, page, pageCount }">
|
||||
<UButton
|
||||
:color="page === item.value ? activeColor : color"
|
||||
:variant="page === item.value ? activeVariant : variant"
|
||||
:size="size"
|
||||
:label="String(item.value)"
|
||||
:ui="{ label: ui.label() }"
|
||||
square
|
||||
/>
|
||||
</slot>
|
||||
</PaginationListItem>
|
||||
|
||||
<PaginationEllipsis v-else :key="item.type" :index="index" as-child>
|
||||
<slot name="ellipsis">
|
||||
<UButton :color="color" :variant="variant" :size="size" :icon="ellipsisIcon || appConfig.ui.icons.ellipsis" :class="ui.ellipsis()" />
|
||||
</slot>
|
||||
</PaginationEllipsis>
|
||||
</template>
|
||||
|
||||
<PaginationNext v-if="showControls || $slots.next" as-child>
|
||||
<slot name="next">
|
||||
<UButton :color="color" :variant="variant" :size="size" :icon="nextIcon || appConfig.ui.icons.chevronRight" />
|
||||
</slot>
|
||||
</PaginationNext>
|
||||
<PaginationLast v-if="showControls || $slots.last" as-child>
|
||||
<slot name="last">
|
||||
<UButton :color="color" :variant="variant" :size="size" :icon="lastIcon || appConfig.ui.icons.chevronDoubleRight" />
|
||||
</slot>
|
||||
</PaginationLast>
|
||||
</PaginationList>
|
||||
</PaginationRoot>
|
||||
</template>
|
||||
1
src/runtime/types/index.d.ts
vendored
1
src/runtime/types/index.d.ts
vendored
@@ -20,6 +20,7 @@ export * from '../components/Kbd.vue'
|
||||
export * from '../components/Link.vue'
|
||||
export * from '../components/Modal.vue'
|
||||
export * from '../components/NavigationMenu.vue'
|
||||
export * from '../components/Pagination.vue'
|
||||
export * from '../components/Popover.vue'
|
||||
export * from '../components/RadioGroup.vue'
|
||||
export * from '../components/Separator.vue'
|
||||
|
||||
Reference in New Issue
Block a user