mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
153 lines
3.3 KiB
TypeScript
153 lines
3.3 KiB
TypeScript
import * as React from "react"
|
|
|
|
import { cn } from "@/examples/base/lib/utils"
|
|
import { Button } from "@/examples/base/ui/button"
|
|
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"
|
|
|
|
function Pagination({ className, ...props }: React.ComponentProps<"nav">) {
|
|
return (
|
|
<nav
|
|
role="navigation"
|
|
aria-label="pagination"
|
|
data-slot="pagination"
|
|
className={cn(
|
|
"mx-auto flex w-full justify-center",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function PaginationContent({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"ul">) {
|
|
return (
|
|
<ul
|
|
data-slot="pagination-content"
|
|
className={cn("gap-0.5 flex items-center", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function PaginationItem({ ...props }: React.ComponentProps<"li">) {
|
|
return <li data-slot="pagination-item" {...props} />
|
|
}
|
|
|
|
type PaginationLinkProps = {
|
|
isActive?: boolean
|
|
} & Pick<React.ComponentProps<typeof Button>, "size"> &
|
|
React.ComponentProps<"a">
|
|
|
|
function PaginationLink({
|
|
className,
|
|
isActive,
|
|
size = "icon",
|
|
...props
|
|
}: PaginationLinkProps) {
|
|
return (
|
|
<Button
|
|
variant={isActive ? "outline" : "ghost"}
|
|
size={size}
|
|
className={cn(className)}
|
|
nativeButton={false}
|
|
render={
|
|
<a
|
|
aria-current={isActive ? "page" : undefined}
|
|
data-slot="pagination-link"
|
|
data-active={isActive}
|
|
{...props}
|
|
/>
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function PaginationPrevious({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof PaginationLink>) {
|
|
return (
|
|
<PaginationLink
|
|
aria-label="Go to previous page"
|
|
size="default"
|
|
className={cn("pl-1.5!", className)}
|
|
{...props}
|
|
>
|
|
<IconPlaceholder
|
|
lucide="ChevronLeftIcon"
|
|
tabler="IconChevronLeft"
|
|
hugeicons="ArrowLeft01Icon"
|
|
phosphor="CaretLeftIcon"
|
|
remixicon="RiArrowLeftSLine"
|
|
data-icon="inline-start"
|
|
/>
|
|
<span className="hidden sm:block">
|
|
Previous
|
|
</span>
|
|
</PaginationLink>
|
|
)
|
|
}
|
|
|
|
function PaginationNext({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof PaginationLink>) {
|
|
return (
|
|
<PaginationLink
|
|
aria-label="Go to next page"
|
|
size="default"
|
|
className={cn("pr-1.5!", className)}
|
|
{...props}
|
|
>
|
|
<span className="hidden sm:block">Next</span>
|
|
<IconPlaceholder
|
|
lucide="ChevronRightIcon"
|
|
tabler="IconChevronRight"
|
|
hugeicons="ArrowRight01Icon"
|
|
phosphor="CaretRightIcon"
|
|
remixicon="RiArrowRightSLine"
|
|
data-icon="inline-end"
|
|
/>
|
|
</PaginationLink>
|
|
)
|
|
}
|
|
|
|
function PaginationEllipsis({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"span">) {
|
|
return (
|
|
<span
|
|
aria-hidden
|
|
data-slot="pagination-ellipsis"
|
|
className={cn(
|
|
"size-8 items-center justify-center [&_svg:not([class*='size-'])]:size-4 flex items-center justify-center",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<IconPlaceholder
|
|
lucide="MoreHorizontalIcon"
|
|
tabler="IconDots"
|
|
hugeicons="MoreHorizontalCircle01Icon"
|
|
phosphor="DotsThreeIcon"
|
|
remixicon="RiMoreLine"
|
|
/>
|
|
<span className="sr-only">More pages</span>
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export {
|
|
Pagination,
|
|
PaginationContent,
|
|
PaginationEllipsis,
|
|
PaginationItem,
|
|
PaginationLink,
|
|
PaginationNext,
|
|
PaginationPrevious,
|
|
}
|