import type { Meta, StoryObj } from '@storybook/react'; import { Toast, ToastAction, type ToastActionElement, type ToastProps, } from '@konobangu/design-system/components/ui/toast'; import { Toaster } from '@konobangu/design-system/components/ui/toaster'; import { useToast } from '@konobangu/design-system/hooks/use-toast'; /** * A succinct message that is displayed temporarily. */ const meta = { title: 'ui/Toast', component: Toast, tags: ['autodocs'], argTypes: {}, parameters: { layout: 'centered', }, render: (args) => { const { toast } = useToast(); return (
); }, } satisfies Meta; export default meta; type Story = Omit, 'args'> & { args: Omit; }; type ToasterToast = ToastProps & { id: string; title?: string; description?: string; action?: ToastActionElement; }; /** * The default form of the toast. */ export const Default: Story = { args: { description: 'Your message has been sent.', }, }; /** * Use the `title` prop to provide a title for the toast. */ export const WithTitle: Story = { args: { title: 'Uh oh! Something went wrong.', description: 'There was a problem with your request.', }, }; /** * Use the `action` prop to provide an action for the toast. */ export const WithAction: Story = { args: { title: 'Uh oh! Something went wrong.', description: 'There was a problem with your request.', action: Try again, }, }; /** * Use the `destructive` variant to indicate a destructive action. */ export const Destructive: Story = { args: { variant: 'destructive', title: 'Uh oh! Something went wrong.', description: 'There was a problem with your request.', action: Try again, }, };