kontenhumas-fe/components/ui/pagination.tsx

118 lines
2.7 KiB
TypeScript
Raw Normal View History

2025-09-16 08:29:07 +00:00
import * as React from "react"
2025-09-23 13:07:34 +00:00
import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react"
2025-09-16 08:29:07 +00:00
import { cn } from "@/lib/utils"
2025-09-23 13:07:34 +00:00
import { ButtonProps, buttonVariants } from "@/components/ui/button"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
<nav
role="navigation"
aria-label="pagination"
className={cn("mx-auto flex w-full justify-center", className)}
{...props}
/>
)
Pagination.displayName = "Pagination"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const PaginationContent = React.forwardRef<
HTMLUListElement,
React.ComponentProps<"ul">
>(({ className, ...props }, ref) => (
<ul
ref={ref}
className={cn("flex flex-row items-center gap-1", className)}
{...props}
/>
))
PaginationContent.displayName = "PaginationContent"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const PaginationItem = React.forwardRef<
HTMLLIElement,
React.ComponentProps<"li">
>(({ className, ...props }, ref) => (
<li ref={ref} className={cn("", className)} {...props} />
))
PaginationItem.displayName = "PaginationItem"
2025-09-16 08:29:07 +00:00
type PaginationLinkProps = {
isActive?: boolean
2025-09-23 13:07:34 +00:00
} & Pick<ButtonProps, "size"> &
2025-09-16 08:29:07 +00:00
React.ComponentProps<"a">
2025-09-23 13:07:34 +00:00
const PaginationLink = ({
2025-09-16 08:29:07 +00:00
className,
isActive,
size = "icon",
...props
2025-09-23 13:07:34 +00:00
}: PaginationLinkProps) => (
<a
aria-current={isActive ? "page" : undefined}
className={cn(
buttonVariants({
variant: isActive ? "shadow" : "outline",
size,
}),
className
)}
{...props}
/>
)
PaginationLink.displayName = "PaginationLink"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const PaginationPrevious = ({
2025-09-16 08:29:07 +00:00
className,
...props
2025-09-23 13:07:34 +00:00
}: React.ComponentProps<typeof PaginationLink>) => (
<PaginationLink
aria-label="Go to previous page"
size="default"
className={cn("gap-1 ps-2.5", className)}
{...props}
>
<ChevronLeft className="h-4 w-4" />
<span>Previous</span>
</PaginationLink>
)
PaginationPrevious.displayName = "PaginationPrevious"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const PaginationNext = ({
2025-09-16 08:29:07 +00:00
className,
...props
2025-09-23 13:07:34 +00:00
}: React.ComponentProps<typeof PaginationLink>) => (
<PaginationLink
aria-label="Go to next page"
size="default"
className={cn("gap-1 pr-2.5", className)}
{...props}
>
<span>Next</span>
<ChevronRight className="h-4 w-4" />
</PaginationLink>
)
PaginationNext.displayName = "PaginationNext"
2025-09-16 08:29:07 +00:00
2025-09-23 13:07:34 +00:00
const PaginationEllipsis = ({
2025-09-16 08:29:07 +00:00
className,
...props
2025-09-23 13:07:34 +00:00
}: React.ComponentProps<"span">) => (
<span
aria-hidden
className={cn("flex h-9 w-9 items-center justify-center", className)}
{...props}
>
<MoreHorizontal className="h-4 w-4" />
<span className="sr-only">More pages</span>
</span>
)
PaginationEllipsis.displayName = "PaginationEllipsis"
2025-09-16 08:29:07 +00:00
export {
Pagination,
PaginationContent,
2025-09-23 13:07:34 +00:00
PaginationEllipsis,
2025-09-16 08:29:07 +00:00
PaginationItem,
2025-09-23 13:07:34 +00:00
PaginationLink,
2025-09-16 08:29:07 +00:00
PaginationNext,
2025-09-23 13:07:34 +00:00
PaginationPrevious,
2025-09-16 08:29:07 +00:00
}