1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/components/app/modal/modal.component.js
George Marshall f4f80c223e
Adding deprecation tags to popover and old modals (#19556)
Co-authored-by: Garrett Bear <gwhisten@gmail.com>
2023-06-14 09:47:16 -07:00

96 lines
2.8 KiB
JavaScript

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import Button from '../../ui/button';
/**
* @deprecated The `<Modal />` component has been deprecated in favor of the new `<Modal>` component from the component-library.
* Please update your code to use the new `<Modal>` component instead, which can be found at ui/components/component-library/modal/modal.tsx.
* You can find documentation for the new Modal component in the MetaMask Storybook:
* {@link https://metamask.github.io/metamask-storybook/?path=/docs/components-componentlibrary-modal--docs}
* If you would like to help with the replacement of the old Modal component, please submit a pull request
*/
export default class Modal extends PureComponent {
static propTypes = {
children: PropTypes.node,
contentClass: PropTypes.string,
containerClass: PropTypes.string,
// Header text
headerText: PropTypes.string,
onClose: PropTypes.func,
// Submit button (right button)
onSubmit: PropTypes.func,
submitType: PropTypes.string,
submitText: PropTypes.string,
submitDisabled: PropTypes.bool,
hideFooter: PropTypes.bool,
// Cancel button (left button)
onCancel: PropTypes.func,
cancelType: PropTypes.string,
cancelText: PropTypes.string,
};
static defaultProps = {
submitType: 'primary',
cancelType: 'secondary',
};
render() {
const {
children,
headerText,
onClose,
onSubmit,
submitType,
submitText,
submitDisabled,
onCancel,
cancelType,
cancelText,
contentClass,
containerClass,
hideFooter,
} = this.props;
return (
<div className={classnames('modal-container', containerClass)}>
{headerText && (
<div className="modal-container__header">
<div className="modal-container__header-text">{headerText}</div>
<div
className="modal-container__header-close"
data-testid="modal-header-close"
onClick={onClose}
/>
</div>
)}
<div className={classnames('modal-container__content', contentClass)}>
{children}
</div>
{hideFooter ? null : (
<div className="modal-container__footer">
{onCancel && (
<Button
type={cancelType}
onClick={onCancel}
className="modal-container__footer-button"
>
{cancelText}
</Button>
)}
<Button
type={submitType}
onClick={onSubmit}
disabled={submitDisabled}
className="modal-container__footer-button"
>
{submitText}
</Button>
</div>
)}
</div>
);
}
}