Fixes #10325. Since React 19, refs can now be passed directly through props without the need for `React.forwardRef`. This greatly simplifies components types and overall syntax.
93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
import type { ButtonProps } from '@/components/ui/button'
|
|
|
|
import { buttonVariants } from '@/components/ui/button'
|
|
import { cn } from 'src/utilities/cn'
|
|
import { ChevronLeft, ChevronRight, MoreHorizontal } from 'lucide-react'
|
|
import * as React from 'react'
|
|
|
|
const Pagination = ({ className, ...props }: React.ComponentProps<'nav'>) => (
|
|
<nav
|
|
aria-label="pagination"
|
|
className={cn('mx-auto flex w-full justify-center', className)}
|
|
role="navigation"
|
|
{...props}
|
|
/>
|
|
)
|
|
|
|
const PaginationContent: React.FC<
|
|
{ ref?: React.Ref<HTMLUListElement> } & React.HTMLAttributes<HTMLUListElement>
|
|
> = ({ className, ref, ...props }) => (
|
|
<ul className={cn('flex flex-row items-center gap-1', className)} ref={ref} {...props} />
|
|
)
|
|
|
|
const PaginationItem: React.FC<
|
|
{ ref?: React.Ref<HTMLLIElement> } & React.HTMLAttributes<HTMLLIElement>
|
|
> = ({ className, ref, ...props }) => <li className={cn('', className)} ref={ref} {...props} />
|
|
|
|
type PaginationLinkProps = {
|
|
isActive?: boolean
|
|
} & Pick<ButtonProps, 'size'> &
|
|
React.ComponentProps<'button'>
|
|
|
|
const PaginationLink = ({ className, isActive, size = 'icon', ...props }: PaginationLinkProps) => (
|
|
<button
|
|
aria-current={isActive ? 'page' : undefined}
|
|
className={cn(
|
|
buttonVariants({
|
|
size,
|
|
variant: isActive ? 'outline' : 'ghost',
|
|
}),
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
|
|
const PaginationPrevious = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof PaginationLink>) => (
|
|
<PaginationLink
|
|
aria-label="Go to previous page"
|
|
className={cn('gap-1 pl-2.5', className)}
|
|
size="default"
|
|
{...props}
|
|
>
|
|
<ChevronLeft className="h-4 w-4" />
|
|
<span>Previous</span>
|
|
</PaginationLink>
|
|
)
|
|
|
|
const PaginationNext = ({ className, ...props }: React.ComponentProps<typeof PaginationLink>) => (
|
|
<PaginationLink
|
|
aria-label="Go to next page"
|
|
className={cn('gap-1 pr-2.5', className)}
|
|
size="default"
|
|
{...props}
|
|
>
|
|
<span>Next</span>
|
|
<ChevronRight className="h-4 w-4" />
|
|
</PaginationLink>
|
|
)
|
|
|
|
const PaginationEllipsis = ({ className, ...props }: 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>
|
|
)
|
|
|
|
export {
|
|
Pagination,
|
|
PaginationContent,
|
|
PaginationEllipsis,
|
|
PaginationItem,
|
|
PaginationLink,
|
|
PaginationNext,
|
|
PaginationPrevious,
|
|
}
|