mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
106 lines
1.9 KiB
Plaintext
106 lines
1.9 KiB
Plaintext
---
|
|
title: Pagination
|
|
description: Pagination with page navigation, next and previous links.
|
|
component: true
|
|
---
|
|
|
|
<ComponentPreview
|
|
name="pagination-demo"
|
|
description="A pagination with previous and next links."
|
|
/>
|
|
|
|
## Installation
|
|
|
|
<CodeTabs>
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn@latest add pagination
|
|
```
|
|
|
|
</TabsContent>
|
|
|
|
<TabsContent value="manual">
|
|
|
|
<Steps>
|
|
|
|
<Step>Copy and paste the following code into your project.</Step>
|
|
|
|
<ComponentSource name="pagination" />
|
|
|
|
<Step>Update the import paths to match your project setup.</Step>
|
|
|
|
</Steps>
|
|
|
|
</TabsContent>
|
|
|
|
</CodeTabs>
|
|
|
|
## Usage
|
|
|
|
```tsx
|
|
import {
|
|
Pagination,
|
|
PaginationContent,
|
|
PaginationEllipsis,
|
|
PaginationItem,
|
|
PaginationLink,
|
|
PaginationNext,
|
|
PaginationPrevious,
|
|
} from "@/components/ui/pagination"
|
|
```
|
|
|
|
```tsx
|
|
<Pagination>
|
|
<PaginationContent>
|
|
<PaginationItem>
|
|
<PaginationPrevious href="#" />
|
|
</PaginationItem>
|
|
<PaginationItem>
|
|
<PaginationLink href="#">1</PaginationLink>
|
|
</PaginationItem>
|
|
<PaginationItem>
|
|
<PaginationEllipsis />
|
|
</PaginationItem>
|
|
<PaginationItem>
|
|
<PaginationNext href="#" />
|
|
</PaginationItem>
|
|
</PaginationContent>
|
|
</Pagination>
|
|
```
|
|
|
|
### Next.js
|
|
|
|
By default the `<PaginationLink />` component will render an `<a />` tag.
|
|
|
|
To use the Next.js `<Link />` component, make the following updates to `pagination.tsx`.
|
|
|
|
```diff showLineNumbers /typeof Link/ {1}
|
|
+ import Link from "next/link"
|
|
|
|
- type PaginationLinkProps = ... & React.ComponentProps<"a">
|
|
+ type PaginationLinkProps = ... & React.ComponentProps<typeof Link>
|
|
|
|
const PaginationLink = ({...props }: ) => (
|
|
<PaginationItem>
|
|
- <a>
|
|
+ <Link>
|
|
// ...
|
|
- </a>
|
|
+ </Link>
|
|
</PaginationItem>
|
|
)
|
|
|
|
```
|
|
|
|
<Callout className="mt-6">
|
|
|
|
**Note:** We are making updates to the cli to automatically do this for you.
|
|
|
|
</Callout>
|