feat: add basic webui
This commit is contained in:
72
apps/storybook/stories/sheet.stories.tsx
Normal file
72
apps/storybook/stories/sheet.stories.tsx
Normal file
@@ -0,0 +1,72 @@
|
||||
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 = {};
|
||||
Reference in New Issue
Block a user