mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
d879f08763
* Update ModalOverlay to use TS Box version * fix jest error * lint error fix * Fix lint errors and improve ModalOverlay's TypeScript typings * Some small updates to story and docs --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
41 lines
1004 B
Plaintext
41 lines
1004 B
Plaintext
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
|
|
|
|
import { ModalOverlay } from './modal-overlay';
|
|
|
|
# ModalOverlay
|
|
|
|
`ModalOverlay` is a transparent overlay that covers the entire screen. It is used to dim the background when a modal is open.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-modaloverlay--default-story" />
|
|
</Canvas>
|
|
|
|
## Props
|
|
|
|
The `ModalOverlay` accepts all props below as well as all [Box](/docs/components-componentlibrary-box--docs#props) component props
|
|
|
|
<ArgsTable of={ModalOverlay} />
|
|
|
|
### On Click
|
|
|
|
Use the `onClick` prop to handle clicks on the overlay
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-modaloverlay--on-click" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import React, { useState } from 'react';
|
|
import { ModalOverlay } from '../../component-library';
|
|
|
|
const [open, setOpen] = useState(false);
|
|
const handleOnClick = () => {
|
|
setOpen(!open);
|
|
};
|
|
|
|
<button onClick={handleOnClick}>Show modal overlay</button>;
|
|
{
|
|
open && <ModalOverlay onClick={handleOnClick} />;
|
|
}
|
|
```
|