73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import {
|
|
Sheet,
|
|
SheetClose,
|
|
SheetContent,
|
|
SheetDescription,
|
|
SheetFooter,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
SheetTrigger,
|
|
} from '@konobangu/design-system/components/ui/sheet';
|
|
|
|
/**
|
|
* Extends the Dialog component to display content that complements the main
|
|
* content of the screen.
|
|
*/
|
|
const meta: Meta<typeof SheetContent> = {
|
|
title: 'ui/Sheet',
|
|
component: Sheet,
|
|
tags: ['autodocs'],
|
|
argTypes: {
|
|
side: {
|
|
options: ['top', 'bottom', 'left', 'right'],
|
|
control: {
|
|
type: 'radio',
|
|
},
|
|
},
|
|
},
|
|
args: {
|
|
side: 'right',
|
|
},
|
|
render: (args) => (
|
|
<Sheet>
|
|
<SheetTrigger>Open</SheetTrigger>
|
|
<SheetContent {...args}>
|
|
<SheetHeader>
|
|
<SheetTitle>Are you absolutely sure?</SheetTitle>
|
|
<SheetDescription>
|
|
This action cannot be undone. This will permanently delete your
|
|
account and remove your data from our servers.
|
|
</SheetDescription>
|
|
</SheetHeader>
|
|
<SheetFooter>
|
|
<SheetClose>
|
|
<button type="button" className="hover:underline">
|
|
Cancel
|
|
</button>
|
|
</SheetClose>
|
|
<button
|
|
type="button"
|
|
className="rounded bg-primary px-4 py-2 text-primary-foreground"
|
|
>
|
|
Submit
|
|
</button>
|
|
</SheetFooter>
|
|
</SheetContent>
|
|
</Sheet>
|
|
),
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
} satisfies Meta<typeof SheetContent>;
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
/**
|
|
* The default form of the sheet.
|
|
*/
|
|
export const Default: Story = {};
|