1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00
metamask-extension/ui/components/component-library/banner-alert
Dhruv 07abc53cce
fix/BannerBase to TS (#20421)
* BannerBase to TS

* snapshot updates

* more snapshot updates

* addressing type definition error

* updating eth-sign-modal snapshot

* Updates to stories, types and adding data-testid

* Updating snapshots

* updating snapshot of blockaid-banner-alert and adding unit test for childrenWrapperProps

* BannerBase updates to stories, adding locale for close button, removing static data-testid in favor of using it at the instance, updating snapshots associated with those changes

* Removing incorrect arg from storybook file

* Updating html element in security provider e2e test to match BannerBase. Also updating snapshot of ConfirmTransaction page

* Fixing e2e tests

---------

Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
2023-08-18 14:52:40 -07:00
..
__snapshots__ fix/BannerBase to TS (#20421) 2023-08-18 14:52:40 -07:00
banner-alert.constants.js Replaces SEVERITIES const with Severity enum in BannerAlert (#20200) 2023-08-01 14:41:30 -07:00
banner-alert.js Update BannerAlert icon to match Figma Issue#20355 (#20407) 2023-08-15 08:20:02 -07:00
banner-alert.scss Update BannerAlert component (#17586) 2023-02-07 09:32:35 -08:00
banner-alert.stories.js Replaces SEVERITIES const with Severity enum in BannerAlert (#20200) 2023-08-01 14:41:30 -07:00
banner-alert.test.js fix/BannerBase to TS (#20421) 2023-08-18 14:52:40 -07:00
index.js Update BannerAlert component (#17586) 2023-02-07 09:32:35 -08:00
README.mdx Replaces SEVERITIES const with Severity enum in BannerAlert (#20200) 2023-08-01 14:41:30 -07:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
import { BannerAlert } from './banner-alert';
import { BannerBase } from '..';

# BannerAlert

`BannerAlert` is an inline notification that notifies users of important information & sometimes time-sensitive changes.

<Canvas>
  <Story id="components-componentlibrary-banneralert--default-story" />
</Canvas>

## Props

The `BannerAlert` accepts all props below as well as all [Box](/docs/components-ui-box--default-story#props) component props

<ArgsTable of={BannerAlert} />

The `BannerAlert` accepts all `BannerBase` component props below

<ArgsTable of={BannerBase} />

### Severity

Use the `severity` prop and the `Severity` enum from `./ui/helpers/constants/design-system.js` to change the context of `BannerAlert`.

Optional: `BANNER_ALERT_SEVERITIES` from `./banner` object can be used instead of `Severity`.

Possible options:

- `Severity.Info` Default
- `Severity.Warning`
- `Severity.Danger`
- `Severity.Success`

<Canvas>
  <Story id="components-componentlibrary-banneralert--severity-story" />
</Canvas>

```jsx
import { BannerAlert } from '../../component-library';
import { Severity } from '../../../helpers/constants/design-system';

<BannerAlert title="Info">
  This is a demo of severity Info.
</BannerAlert>
<BannerAlert severity={Severity.Warning} title="Warning">
  This is a demo of severity Warning.
</BannerAlert>
<BannerAlert severity={Severity.Danger} title="Danger">
  This is a demo of severity Danger.
</BannerAlert>
<BannerAlert severity={Severity.Success} title="Success">
  This is a demo of severity Success.
</BannerAlert>
```

### 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>
  <Story id="components-componentlibrary-banneralert--title" />
</Canvas>

```jsx
import { BannerAlert } from '../../component-library';

<BannerAlert title="Title is sentence case no period">
  Pass only a string through the title prop
</BannerAlert>;
```

### Description

The `description` is the content area of the `BannerAlert` 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>
  <Story id="components-componentlibrary-banneralert--description" />
</Canvas>

```jsx
import { BannerAlert } from '../../component-library';
<BannerAlert
  title="Description vs children"
  description="Pass only a string through the description prop or you can use children if the contents require more"
/>;
```

### Children

The `children` prop is an alternative to `description` for `BannerAlert` when more than a string is needed. Children content shouldn't repeat title and only 1-3 lines.

<Canvas>
  <Story id="components-componentlibrary-banneralert--children" />
</Canvas>

```jsx
import { Size } from '../../../helpers/constants/design-system';
import { BannerAlert } from '../../component-library';

<BannerAlert>
  {`Description shouldn't repeat title. 1-3 lines. Can contain a `}
  <ButtonLink size={Size.auto} href="https://metamask.io/" target="_blank">
    hyperlink.
  </ButtonLink>
</BannerAlert>;
```

### Action Button Label, onClick, & Props

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

<Canvas>
  <Story id="components-componentlibrary-banneralert--action-button" />
</Canvas>

```jsx
import { BannerAlert, IconName } from '../../component-library';

<BannerAlert
  title="Action prop demo"
  actionButtonLabel="Action"
  actionButtonProps={{
    endIconName: IconName.Arrow2Right,
  }}
  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
</BannerAlert>;
```

### 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>
  <Story id="components-componentlibrary-banneralert--on-close" />
</Canvas>

```jsx
import { BannerAlert } from '../../component-library';

<BannerAlert
  title="onClose demo"
  onClose={() => console.log('close button clicked')}
>
  Click the close button icon to hide this notifcation
</BannerAlert>;
```