import React from 'react';
import { useState } from '@storybook/addons';
import {
Display,
FlexDirection,
Size,
Severity,
} from '../../../helpers/constants/design-system';
import { ButtonLink, ButtonPrimary, IconName, Box } from '..';
import README from './README.mdx';
import { BannerAlert } from './banner-alert';
export default {
title: 'Components/ComponentLibrary/BannerAlert',
component: BannerAlert,
parameters: {
docs: {
page: README,
},
},
argTypes: {
severity: {
control: 'select',
options: Object.values(Severity),
},
className: {
control: 'text',
},
title: {
control: 'text',
},
description: {
control: 'text',
},
children: {
control: 'text',
},
actionButtonLabel: {
control: 'text',
},
actionButtonOnClick: {
action: 'actionButtonOnClick',
},
actionButtonProps: {
control: 'object',
},
onClose: {
action: 'onClose',
},
},
};
const Template = (args) => ;
export const DefaultStory = Template.bind({});
DefaultStory.storyName = 'Default';
DefaultStory.args = {
title: 'Title is sentence case no period',
children: "Description shouldn't repeat title. 1-3 lines.",
actionButtonLabel: 'Action',
};
export const SeverityStory = (args) => {
return (
This is a demo of severity Info.
This is a demo of severity Warning.
This is a demo of severity Danger.
This is a demo of severity Success.
);
};
SeverityStory.storyName = 'Severity';
export const Title = Template.bind({});
Title.args = {
title: 'Title is sentence case no period',
children: 'Pass only a string through the title prop',
};
export const Description = Template.bind({});
Description.args = {
title: 'Description vs children',
description:
'Pass only a string through the description prop or you can use children if the contents require more',
};
export const Children = Template.bind({});
Children.args = {
children: (
<>
{`Description shouldn't repeat title. 1-3 lines. Can contain a `}
hyperlink.
>
),
};
export const ActionButton = Template.bind({});
ActionButton.args = {
title: 'Action prop demo',
actionButtonLabel: 'Action',
actionButtonOnClick: () => console.log('ButtonLink actionButtonOnClick demo'),
actionButtonProps: {
endIconName: IconName.Arrow2Right,
},
children:
'Use actionButtonLabel for action text, actionButtonOnClick for the onClick handler, and actionButtonProps to pass any ButtonLink prop types such as iconName',
};
export const OnClose = (args) => {
const [isShown, setShown] = useState(true);
const bannerAlertToggle = () => {
if (isShown) {
console.log('close button clicked');
}
setShown(!isShown);
};
return (
<>
{isShown ? (
) : (
View BannerAlert
)}
>
);
};
OnClose.args = {
title: 'onClose demo',
children: 'Click the close button icon to hide this notifcation',
};