2023-01-11 18:42:18 +01:00
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
import { BannerBase } from './banner-base';
### This is a base component. It should not be used in your feature code directly but as a "base" for other UI components
# BannerBase
2023-02-03 09:12:53 +01:00
`BannerBase` serves as a base for all banner variants. It contains standard props such as information and related actions.
2023-01-11 18:42:18 +01:00
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--default-story" />
2023-01-11 18:42:18 +01:00
</Canvas>
## Props
2023-01-20 20:27:46 +01:00
The `BannerBase` accepts all props below as well as all [Box](/docs/components-ui-box--default-story#props) component props
2023-01-11 18:42:18 +01:00
<ArgsTable of={BannerBase} />
### Title
Use the `title` prop to pass a string that is sentence case no period. Use the `titleProps` prop to pass additional props to the `Text` component.
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--title" />
2023-01-11 18:42:18 +01:00
</Canvas>
```jsx
import { BannerBase } from '../../component-library';
<BannerBase title="Title is sentence case no period">
Pass only a string through the title prop
</BannerBase>;
```
2023-02-03 09:12:53 +01:00
### Description
The `description` is the content area of the `BannerBase` that must be a string. Description shouldn't repeat title and only 1-3 lines.
If content requires more than a string, see `children` prop below.
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
<Story id="components-componentlibrary-bannerbase--description" />
</Canvas>
```jsx
import { BannerBase } from '../../component-library';
<BannerBase
title="Description vs children"
description="Pass only a string through the description prop or you can use children if the contents require more"
/>;
```
2023-01-11 18:42:18 +01:00
### Children
2023-02-03 09:12:53 +01:00
The `children` prop is an alternative to `description` for `BannerBase` when more than a string is needed. Children content shouldn't repeat title and only 1-3 lines.
2023-01-11 18:42:18 +01:00
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--children" />
2023-01-11 18:42:18 +01:00
</Canvas>
```jsx
2023-02-02 21:15:26 +01:00
import { Size } from '../../../helpers/constants/design-system';
2023-01-11 18:42:18 +01:00
import { BannerBase } from '../../component-library';
<BannerBase>
{`Description shouldn't repeat title. 1-3 lines. Can contain a `}
2023-02-03 09:12:53 +01:00
<ButtonLink size={Size.inherit} href="https://metamask.io/" target="_blank">
2023-01-11 18:42:18 +01:00
hyperlink.
</ButtonLink>
</BannerBase>;
```
### Action Button Label, onClick, & Props
2023-01-20 20:27:46 +01:00
Use the `actionButtonLabel` prop to pass text, `actionButtonOnClick` prop to pass an onClick handler, and `actionButtonProps` prop to pass an object of [ButtonLink props](/docs/components-componentlibrary-buttonlink--default-story) for the action
2023-01-11 18:42:18 +01:00
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--action-button" />
2023-01-11 18:42:18 +01:00
</Canvas>
```jsx
import { BannerBase, ICON_NAMES } from '../../component-library';
<BannerBase
title="Action prop demo"
actionButtonLabel="Action"
actionButtonProps={{
2023-02-22 18:42:06 +01:00
endIconName: ICON_NAMES.ARROW_2_RIGHT,
2023-01-11 18:42:18 +01:00
}}
actionButtonOnClick={() => console.log('ButtonLink actionButtonOnClick demo')}
>
Use actionButtonLabel for action text, actionButtonOnClick for the onClick
handler, and actionButtonProps to pass any ButtonLink prop types such as
iconName
</BannerBase>;
```
### On Close
Use the `onClose` prop to pass a function to the close button. The close button will appear when this prop is used.
Additional props can be passed to the close button with `closeButtonProps`
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--on-close" />
2023-01-11 18:42:18 +01:00
</Canvas>
```jsx
import { BannerBase } from '../../component-library';
<BannerBase
title="onClose demo"
onClose={() => console.log('close button clicked')}
>
Click the close button icon to hide this notifcation
</BannerBase>;
```
### Start Accessory
Use the `startAccessory` prop to add components such as icons or fox image to the start (default: left) of the `BannerBase` content
<Canvas style={{ background: 'var(--color-background-alternative)' }}>
2023-01-20 20:27:46 +01:00
<Story id="components-componentlibrary-bannerbase--start-accessory" />
2023-01-11 18:42:18 +01:00
</Canvas>
```jsx
2023-02-14 18:33:04 +01:00
import { Size } from '../../../helpers/constants/design-system';
2023-04-04 18:48:04 +02:00
import { BannerBase } from '../../component-library';
import { Icon, ICON_NAMES } from '../../component-library/icon/deprecated';
2023-01-11 18:42:18 +01:00
<BannerBase
title="Start accessory demo"
2023-02-14 18:33:04 +01:00
startAccessory={<Icon name={ICON_NAMES.INFO} size={Size.LG} />}
2023-01-11 18:42:18 +01:00
>
The info icon on the left is passed through the startAccessory prop
</BannerBase>;
```