-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cbbc99
commit ea2e30b
Showing
1 changed file
with
120 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,128 @@ | ||
import type { Meta, StoryObj } from "@storybook/react"; | ||
import { | ||
Pagination, | ||
PaginationContent, | ||
PaginationItem, | ||
PaginationPrevious, | ||
PaginationLink, | ||
PaginationEllipsis, | ||
PaginationNext, | ||
} from "@signozhq/pagination"; | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
import { Pagination } from '@signozhq/pagination'; | ||
|
||
const PaginationComponent = () => ( | ||
<Pagination> | ||
<PaginationContent> | ||
<PaginationItem> | ||
<PaginationPrevious href="#" onClick={(e) => e.preventDefault()} /> | ||
</PaginationItem> | ||
<PaginationItem> | ||
<PaginationLink href="#" onClick={(e) => e.preventDefault()}> | ||
1 | ||
</PaginationLink> | ||
</PaginationItem> | ||
<PaginationItem> | ||
<PaginationLink href="#" onClick={(e) => e.preventDefault()} isActive> | ||
2 | ||
</PaginationLink> | ||
</PaginationItem> | ||
<PaginationItem> | ||
<PaginationLink href="#" onClick={(e) => e.preventDefault()}> | ||
3 | ||
</PaginationLink> | ||
</PaginationItem> | ||
<PaginationItem> | ||
<PaginationEllipsis /> | ||
</PaginationItem> | ||
<PaginationItem> | ||
<PaginationNext href="#" onClick={(e) => e.preventDefault()} /> | ||
</PaginationItem> | ||
</PaginationContent> | ||
</Pagination> | ||
); | ||
|
||
const meta: Meta<typeof PaginationComponent> = { | ||
title: "Components/Pagination", | ||
component: PaginationComponent, | ||
argTypes: {}, | ||
parameters: { | ||
backgrounds: { | ||
default: "dark", | ||
}, | ||
design: [ | ||
{ | ||
name: "Figma", | ||
type: "figma", | ||
url: "https://www.figma.com/design/egMidgk6VJDXTumxcCYUl1/Periscope---Primitives?node-id=40-1657&node-type=frame&t=RGQXgBfSXKWsYAz9-0", | ||
}, | ||
], | ||
}, | ||
const meta: Meta<typeof Pagination> = { | ||
title: 'Components/Pagination', | ||
component: Pagination, | ||
argTypes: { | ||
current: { | ||
control: 'number', | ||
description: 'Current selected page (optional)', | ||
}, | ||
total: { | ||
control: 'number', | ||
description: 'Total number of items', | ||
required: true, | ||
}, | ||
pageSize: { | ||
control: 'number', | ||
description: 'Number of items per page', | ||
defaultValue: 10, | ||
}, | ||
defaultCurrent: { | ||
control: 'number', | ||
description: 'Initial page number when uncontrolled', | ||
defaultValue: 1, | ||
}, | ||
align: { | ||
control: 'select', | ||
options: ['start', 'center', 'end'], | ||
description: 'Alignment of pagination component', | ||
defaultValue: 'start', | ||
}, | ||
onPageChange: { | ||
action: 'page changed', | ||
description: 'Callback when page changes', | ||
}, | ||
}, | ||
parameters: { | ||
backgrounds: { | ||
default: 'dark', | ||
}, | ||
design: [ | ||
{ | ||
name: 'Figma', | ||
type: 'figma', | ||
url: 'https://www.figma.com/design/egMidgk6VJDXTumxcCYUl1/Periscope---Primitives?node-id=40-1657&node-type=frame&t=RGQXgBfSXKWsYAz9-0', | ||
}, | ||
], | ||
}, | ||
}; | ||
|
||
export default meta; | ||
|
||
type Story = StoryObj<typeof PaginationComponent>; | ||
type Story = StoryObj<typeof Pagination>; | ||
|
||
export const Default: Story = { | ||
render: () => <PaginationComponent />, | ||
args: {}, | ||
args: { | ||
total: 50, | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const CustomPageSize: Story = { | ||
args: { | ||
total: 100, | ||
pageSize: 5, | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const CenterAligned: Story = { | ||
args: { | ||
total: 50, | ||
align: 'center', | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const EndAligned: Story = { | ||
args: { | ||
total: 50, | ||
align: 'end', | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const UncontrolledWithDefaultCurrent: Story = { | ||
args: { | ||
total: 50, | ||
defaultCurrent: 3, | ||
}, | ||
}; | ||
|
||
export const WithPageChangeHandler: Story = { | ||
args: { | ||
total: 50, | ||
current: 1, | ||
onPageChange: (page: number) => console.log(`Page changed to ${page}`), | ||
}, | ||
}; | ||
|
||
export const ThreePages_FirstSelected: Story = { | ||
args: { | ||
total: 30, | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const ThreePages_SecondSelected: Story = { | ||
args: { | ||
total: 30, | ||
current: 2, | ||
}, | ||
}; | ||
|
||
export const TenPages_FirstSelected: Story = { | ||
args: { | ||
total: 100, | ||
current: 1, | ||
}, | ||
}; | ||
|
||
export const TenPages_LastSelected: Story = { | ||
args: { | ||
total: 100, | ||
current: 10, | ||
}, | ||
}; |