Port 87024b9e1cf7f0945eae457501899216d79c9073 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
103 lines
1.7 KiB
TypeScript
103 lines
1.7 KiB
TypeScript
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
import { action } from 'storybook/actions';
|
|
|
|
import { Callout } from '.';
|
|
|
|
const meta = {
|
|
title: 'Components/Callout',
|
|
args: {
|
|
children: 'Contents here',
|
|
title: 'Title',
|
|
onPrimary: action('Primary action clicked'),
|
|
primaryLabel: 'Primary',
|
|
onSecondary: action('Secondary action clicked'),
|
|
secondaryLabel: 'Secondary',
|
|
onClose: action('Close clicked'),
|
|
},
|
|
component: Callout,
|
|
render(args) {
|
|
return (
|
|
<div style={{ minWidth: 'min(400px, calc(100vw - 2rem))' }}>
|
|
<Callout {...args} />
|
|
</div>
|
|
);
|
|
},
|
|
} satisfies Meta<typeof Callout>;
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
variant: 'default',
|
|
},
|
|
};
|
|
|
|
export const NoTitle: Story = {
|
|
args: {
|
|
title: '',
|
|
primaryLabel: '',
|
|
secondaryLabel: '',
|
|
onClose: undefined,
|
|
},
|
|
};
|
|
|
|
export const NoIcon: Story = {
|
|
args: {
|
|
icon: false,
|
|
},
|
|
};
|
|
|
|
export const NoActions: Story = {
|
|
args: {
|
|
onPrimary: undefined,
|
|
onSecondary: undefined,
|
|
},
|
|
};
|
|
|
|
export const OnlyText: Story = {
|
|
args: {
|
|
onClose: undefined,
|
|
onPrimary: undefined,
|
|
onSecondary: undefined,
|
|
icon: false,
|
|
},
|
|
};
|
|
|
|
export const Subtle: Story = {
|
|
args: {
|
|
variant: 'subtle',
|
|
},
|
|
};
|
|
|
|
export const Feature: Story = {
|
|
args: {
|
|
variant: 'feature',
|
|
},
|
|
};
|
|
|
|
export const Inverted: Story = {
|
|
args: {
|
|
variant: 'inverted',
|
|
},
|
|
};
|
|
|
|
export const Success: Story = {
|
|
args: {
|
|
variant: 'success',
|
|
},
|
|
};
|
|
|
|
export const Warning: Story = {
|
|
args: {
|
|
variant: 'warning',
|
|
},
|
|
};
|
|
|
|
export const Error: Story = {
|
|
args: {
|
|
variant: 'error',
|
|
},
|
|
};
|