import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import Button from '../../ui/button';
/**
* @deprecated The `` component has been deprecated in favor of the new `` component from the component-library.
* Please update your code to use the new `` 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 (